View Single Post
Old 16th July 2020, 20:18   #13  |  Link
Richard1485
Guest
 
Posts: n/a
Okay. I found the error. There should have been a backslash immediately after the colon. This works:

Code:
ffmpeg -analyzeduration 200M -probesize 200M -i bluray:/mnt/xdev/my_directory/
However, when I select a playlist, I receive an error message:

Quote:
Trailing options were found on the commandline.
Here's the command line:

Code:
ffmpeg -i bluray:/mnt/xdev/my_directory/  -playlist 00132.mpls
Obviously, something needs to be escaped. I've tried -playlist 00132 (without the extension) as well.

EDIT: I've figured it out. The example given earlier in the thread was wrong. The -playlist parameter has to go before the input. The .mpls extension is not needed. This works:

Code:
ffmpeg -playlist 00132 -i bluray:/mnt/xdev/my_directory/

Last edited by Richard1485; 17th July 2020 at 15:51.
  Reply With Quote