Results 1 to 2 of 2

Thread: convert tivo to mpeg 2 for burning onto DVD

  1. #1
    Join Date
    Jul 2012
    Beans
    322
    Distro
    Xubuntu 18.04 Bionic Beaver

    Re: convert tivo to mpeg 2 for burning onto DVD

    How are you converting?
    The best things in life are free, so what are we paying for?

  2. #2
    Join Date
    Oct 2010
    Location
    London
    Beans
    482
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: convert tivo to mpeg 2 for burning onto DVD

    Are you open to using the command-line? I would use ffmpeg:

    Code:
    ffmpeg -i input.mp4 -target pal-dvd output.mpg
    Use 'ntsc-dvd' if you're in an NTSC area. The -target option will:


    • Scale the image down to the correct height (576 for PAL, 480 for NTSC)
    • Use the correct frame-rate (25 for PAL, 29.97 for NTSC)
    • Convert the video to mpeg2 with good quality settings
    • Convert the audio to AC3 with good quality settings

    If you want to set things manually, you can select a quality level using -qscale:v or -q:v - unfortunately, AC3 audio only has a constant bit rate mode, but 192kb/s should be adequate for stereo audio:


    Code:
     
    ffmpeg -i input.file -filter:v 'scale=-1:576' -c:v mpeg2video -q:v 3 -c:a ac3 -b:a 192k output.mpg
    For -q:v you can use any value from 1-31, where 1 is best quality and 3-6 can generally be considered a useful range. Use the highest number that looks OK to you.


    -filter:v 'scale=-1:576' tells ffmpeg to scale the video down to a height of 576 pixels, while scaling the width to keep the same aspect ratio. It may not work in the version of ffmpeg in the repositories, but you can upgrade to a more recent version using this PPA.
    Last edited by evilsoup; January 25th, 2013 at 03:13 PM.

Bookmarks

Posting Permissions

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