

- #Bluray remux how to#
- #Bluray remux movie#
- #Bluray remux android#
- #Bluray remux iso#
- #Bluray remux free#
tsMuxer will AUTOMATICALLY select the “Use base video stream for right eye” setting on the very rare situations when it is needed.īDInfo (Free) – Free tool that helps in finding the best. TsMuxer (Free) – To convert Blu-ray/ISO to a Remuxed ISO.Ĭonfiguration: Use the default settings. SlySoft AnyDVD HD (Paid, but can use 30 day trial) – Removes the latest copy protections and region codes.Ĭonfiguration: I just use the default settings. Also, apparently it is possible to now remove Cinavia, however you will have to research that elsewhere. There are some 3D movies that do not have Cinavia protection and those will burn fine.

#Bluray remux iso#
Theoretically, you can burn the ISO to a BD-R but you will need a Cinavia free Blu-ray player. The file size is roughly 1GB larger using an ISO compared to a MKV which is not much for the sake of better future compatibility. I use ISO instead of MKV due to better subtitle support as they have a better “3D” effect and better overall compatibility.
#Bluray remux android#
Newer Android based players should also be supported. The Remux ISO is intended to be played on a 3D capable hardware device such as a Mede8er.
#Bluray remux movie#
Depending on the movie I have saved anywhere from 5-28GB. This will reduces the total file size greatly. A Remux strips the menu and bonus content while keeping the wanted video/audio/subtitles at ZERO quality loss AKA lossless.
#Bluray remux how to#
That's it! If you have any comments or corrections please feel free to email them to me.This is a step-by-step guide on how to convert a physical 3D ISO Blu-ray disc into a Remux ISO file format. This results in a remux of the movie with the following tracks as shown by mpv: $ mpv Star-Wars-The-Phantom-Menace-1999-Bluray-DTS-AVC-REMUX.mkv subtitle codec option, which simply copies the English subtitle into the new mkv container. the English subtitle, which is then mapped to the -scodec option, i.e. audio codec option, which simply copies the English audio track into the new mkv container. the English audio, which is then mapped to the -acodec option, i.e. video codec option, which simply copies the video track into the new mkv container. the video, which is then mapped to the -vcodec option, i.e. -map is used to map each track to a specific command option.So I do the following: $ ffmpeg -i tmp.m2ts -map 0:0 -vcodec copy -map 0:1 -acodec copy -map 0:9 -scodec copy Star-Wars-The-Phantom-Menace-1999-Bluray-DTS-AVC-REMUX.mkv I want to get the video track, the English DTS audio, and the English subtitle. ffmpeg maps the tracks starting by the number 0 for the first track (the main video track). You can then use ffmpeg to remux the relevant tracks. If you're in doubt about which tracks you need, you can use mpv to quickly browse through them. You can also use mediainfo: $ mpv tmp.m2ts This will copy everything without doing any encoding.īut in my case I don't want all the foreign languages or subtitles, so I use mpv to get a list of the relevant parts. $ ffmpeg -i tmp.m2ts -c copy Star-Wars-The-Phantom-Menace-1999-Bluray-DTS-AVC-REMUX.mkv Now, if you want to copy everything, all audio tracks, subtitles, etc., you can then just do the following using ffmpeg: $ cd /home/foo/ It's a good idea to remember to synchronize cached writes to persistent storage with the sync command before you continue. In this case I am remuxing my old "Star Wars The Phantom Menace" movie and file "00882.m2ts" is the beginning of the movie with the famous Star Wars scrolling text while "00800.m2ts" is the movie itself.Ĭoncatenate the parts you need into a temporary file using the cat command: $ cat 00882.m2ts 00800.m2ts > /home/foo/tmp.m2ts Then use your favorite media player to locate the media files relevant to you. It will look something like this: $ cd /mnt/BDMV/STREAM Then go to the "BDMV/STREAM" directory and list the files. Mount the DVD, Bluray, or ISO somewhere on your filesystem: $ sudo mount foo.iso /mnt Whether you're dealing with a physical DVD or Bluray disc or you have ripped your original source into an ISO file, it's the same procedure. | about | faq | resources | contact | rss Remuxing ISO, DVD, or Bluray using cat and ffmpeg on Linux Remuxing ISO, DVD, or Bluray using cat and ffmpeg on Linux
