Streaming split files

Hello all

I just purchased Zack Snyders Justic League and imediately ripped it and put it on my server. I named the files Zack Snyders Justice League-dvd1.m4v and Zack Snyders Justice League-dvd2.m4v.

When I go to stream the movies shows it as 4h 2m which is correct. During the first disk I can fast forward and reverse, but when the second disk is playing I cannot.

Also when the second disk is playing the progress bar shows the incorrect information (see attached picture).

TV=Plex for LG — LG 65NANO91VNA
Server= Version 1.26.2.5797 (RPi4)

Just wondering what I have missed as this is the first time I have attempted split movies. My only other option is to join the 2 volumes to make one contiguous file.

Regards

Fred

Join them. Not all Plex clients handle split file well.

From Naming and organizing your Movie files:
However, to get a better overall experience, we encourage you to instead use a tool to join/merge the individual files into a single video

Joining is easy with MKVToolNix. The output will be a MKV file.

If you need mp4/m4v, you can remux the combined file with XMedia Recode, Subler (Mac), or similar tools.

You can also use ffmpeg if you’re OK with command line tools:
ffmpeg -i input.mkv -map 0 -c copy output.mp4

Remuxing is fast, as the tracks are copied, not re-transcoded.

https://support.plex.tv/articles/naming-and-organizing-your-movie-media-files/

2 Likes

OK, I’ve elected to join the 2 files using ffmpeg.

Not to others using this method.
Use this method when you want to avoid a re-encode and your format does not support file-level concatenation (most files used by general users do not support file-level concatenation).

$ cat mylist.txt
file ‘/path/to/file1’
file ‘/path/to/file2’
file ‘/path/to/file3’

$ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4

Information here.

This proved to be very quick even when preformed on the RPi4, and I ended up with the result I required.

Regards

Fred

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.