Results 1 to 3 of 3

Thread: Can an MKV file be remuxed to play on PS3 using ubuntu?

  1. #1
    Join Date
    Oct 2010
    Location
    Dublin, Ireland
    Beans
    288
    Distro
    Ubuntu 20.04 Focal Fossa

    Question Can an MKV file be remuxed to play on PS3 using ubuntu?

    Hello

    I have 10 .mkv videos I would like to *'remux' to a format that will work on the PS3 like MPEG-2, XviD , x264 etc - preferably whatever is the smallest and easiest to accomplish.

    I was able to remux a single different .mkv file to 'vob' successfully (many of these terms are new to me) using the Windows program mkv2vob under Wine in Xubuntu - but it's giving out errors on the said 10 videos, and also causes them under Windows.

    I have found some Windows software that will re-encode the files but it will take hours and hours - where as when mkv2vob actually works for me it does a 60 minute video in 2/3 minutes.

    *I understand this to be because remuxing changes something about the video to make it work on PS3 without having to go through a full re-encode.

    What's the best way to do this on linux? If there is one...

  2. #2
    Join Date
    Jul 2009
    Location
    Hippiesoldierstan Norwich
    Beans
    2,326
    Distro
    Lubuntu 22.04 Jammy Jellyfish

    Re: Can an MKV file be remuxed to play on PS3 using ubuntu?

    you can use ffmpeg for that task


    Code:
    for f in *.mkv ; do ffmpeg -i "$f" -acodec copy -vcodec copy "${f%.mkv}.mpg"; done

    and if command line is not your thing there is easier software


    like winff which is in your synaptic and uses ffmpeg [ easy to choose settings]


    Code:
    sudo apt-get install winff
    Last edited by shantiq; November 19th, 2011 at 05:51 PM.
    Linux is Latin for off-the-beaten-track
    what I like MOST about our Ubuntu ... The Community ie 50 brains are better than one
    Playing with Slackware too now ...
    ShanArt

  3. #3
    Join Date
    Oct 2010
    Location
    Dublin, Ireland
    Beans
    288
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Can an MKV file be remuxed to play on PS3 using ubuntu?

    Thanks!

Tags for this Thread

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
  •