PLEASE NOTE : These are the Community Forums (user-to-user), the Hauppauge team try to assist as time allows. Please use the email or telephone support if necessary as their tickets have priority!


+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 15
  1. #1
    Join Date
    Oct 2009
    Posts
    6

    Default Is it possible to auto convert DVB-T recording to MPEG ?

    I have only recently changed from analog to digital, as the national broadcaster has just started broadcasting in digital.. Everything works fine, except I can no longer auto convert to MPEG.. All of my recordings are huge .ts (Transport Stream) files..

    I used to be able to use the "Auto Convert MPEG2 Recordings to .MPG" when I recorded in analog. Is there any way of getting Win TV to autoconvert .ts files to MPG.

  2. #2
    Join Date
    Jul 2008
    Posts
    1,177

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    It depends what broadcast standards your broadcaster is using. MPEG2 can be stored in a .mpg file. A lot of countries are starting to use the newer H.264 instead (aka MPEG4), which cant be stored in a .mpg file.

  3. #3
    Join Date
    Oct 2009
    Posts
    6

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    The channels are broadcast in MPEG4, I use the DivX H264 decoder.. So I just have to work with the .ts files then, or use a separate program for converting .ts to another format?

  4. #4
    Join Date
    Jul 2008
    Posts
    1,177

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    Yep.

  5. #5
    Join Date
    Feb 2012
    Posts
    3

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    I am very interested in your answers to this case. I have WinTv-HVR-930C in use in Norway DVB-T and cannot convert to mpeg. Why does not WinTV v 7.029304 do the job or do you have a free converting program to do this?

  6. #6
    Join Date
    Jun 2004
    Location
    UK
    Posts
    756

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    Quote Originally Posted by toresak View Post
    I am very interested in your answers to this case. I have WinTv-HVR-930C in use in Norway DVB-T and cannot convert to mpeg. Why does not WinTV v 7.029304 do the job or do you have a free converting program to do this?
    A lot of countries are starting to use the newer H.264 instead (aka MPEG4), which cant be stored in a .mpg file
    Click here to see how to capture the right logs files for your problem for WinTV v7. You MUST attach logs files for us to effectively help you.

    http://www.hauppauge.co.uk/forum/showthread.php?22310

    This forum is User -> User support only. It is a supplement to Phone/E-mail Support. This forum is not monitored by Hauppauge Technical Support. If you require official Technical Support / Customer Service / Pre-Sales please CALL on 020 3405 1717 (UK) or if you are not located in the UK contact numbers are here:

    http://www.hauppauge.co.uk/site/contact/contact_us.html or e-mail: http://www.hauppauge.co.uk/site/supp...upcontact.html

  7. #7
    Join Date
    Feb 2012
    Posts
    3

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    Can anybody give me a name of converting program that can convert Hauppauge MPEG-2 TS ( Norway H.264 video and A3+ audio) to MPEG4 file.

  8. #8
    Join Date
    Aug 2007
    Posts
    3,497

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    ffmpeg should do it. The program needs to be in C:\program files\wintv\wintv7

    Edit Settings.xml file

    change

    to

    <!--<AutoConvertExe>ffmpeg.exe</AutoConvertExe> -->
    <!--<AutoConvertExeAudioOnly>ffmpeg.exe</AutoConvertExeAudioOnly> -->
    <!--<AutoConvertArgsWithVideo>-i [SOURCE_FILE] -f dvd -acodec copy -vcodec copy [DEST_FILE]</AutoConvertArgsWithVideo> -->
    <!--<AutoConvertArgsAudioOnly>-ab 128k -i [SOURCE_FILE] [DEST_FILE]</AutoConvertArgsAudioOnly> -->


    <AutoConvertExe>ffmpeg.exe</AutoConvertExe>
    <AutoConvertExeAudioOnly>ffmpeg.exe</AutoConvertExeAudioOnly>
    <AutoConvertArgsWithVideo>-i [SOURCE_FILE] -f dvd -acodec copy -vcodec copy [DEST_FILE]</AutoConvertArgsWithVideo>
    <AutoConvertArgsAudioOnly>-ab 128k -i [SOURCE_FILE] [DEST_FILE]</AutoConvertArgsAudioOnly>

    This example would convert MPEG-2 TS -> MPEG-2 PS (.MPG) and MPEG-2 Audio TS -> MP3

    but you can then put your own command line in to convert to whatever format you like

    I will put a full in depth post up in the how to, but I've been busy on other projects.
    Click here to see how to capture the right logs files for your problem for WinTV v7. You MUST attach logs files for us to effectively help you.

    http://www.hauppauge.co.uk/forum/showthread.php?22310

    This forum is User -> User support only. It is a supplement to Phone/E-mail Support. This forum is not monitored by Hauppauge Technical Support. If you require official Technical Support / Customer Service / Pre-Sales please CALL on 020 3405 1717 (UK) or if you are not located in the UK contact numbers are here:

    http://www.hauppauge.co.uk/site/contact/contact_us.html or e-mail: http://www.hauppauge.co.uk/site/supp...upcontact.html

    Keep up to date with Hauppauge news online

  9. #9
    Join Date
    Apr 2009
    Location
    South Cambridgeshire
    Posts
    7

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    Hi,

    I’ve made the edits suggested, and the TS file is indeed converted to an MP3.

    However, I’m experiencing a drop-off in quality following the conversion. I’ve used MediaInfo to look at the two files and it reports the following:

    The original TS file (1 audio stream, MPEG audio, English)
    160 Kbps
    48.0 KHz
    2 channels
    MPEG Audio (Version 1) (Layer 2) (Joint stereo)

    The MP3 file created by the conversion
    64.0 Kbps
    48.0 KHz
    2 channels
    MPEG Audio (Version 1) (Layer 3) (Joint stereo / MS stereo)

    I’d like the MP3 file to be 160 Kbps. I’ve tried changing the “-ab” value to 160k, but that had no effect, and I’ve also tried completely removing that argument (“-ab 128k”) completely, but again, that had no effect – the resulting MP3 was still 64 Kbps.

    Can anybody make any suggestions?

    Regards,

    Mark

  10. #10
    Join Date
    Aug 2007
    Posts
    3,497

    Default Re: Is it possible to auto convert DVB-T recording to MPEG ?

    it may be down to the build of ffmpeg you have. let me dig out the one I tried and attach it.
    Click here to see how to capture the right logs files for your problem for WinTV v7. You MUST attach logs files for us to effectively help you.

    http://www.hauppauge.co.uk/forum/showthread.php?22310

    This forum is User -> User support only. It is a supplement to Phone/E-mail Support. This forum is not monitored by Hauppauge Technical Support. If you require official Technical Support / Customer Service / Pre-Sales please CALL on 020 3405 1717 (UK) or if you are not located in the UK contact numbers are here:

    http://www.hauppauge.co.uk/site/contact/contact_us.html or e-mail: http://www.hauppauge.co.uk/site/supp...upcontact.html

    Keep up to date with Hauppauge news online

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts