2025-02-27, 02:05 AM
(2025-02-26, 01:56 PM)TheDreadPirate Wrote: I'm wondering if it's because the audio you want to play is the second audio track. Some clients, when playing MKVs, will need a remux if you select an audio track other than the first audio track. Which is the usual behavior for browsers. And WebOS is a glorified browser, including our app.
In the "problem" video, the FLAC track you are playing is the second track.
For testing, can you try remuxing the problem video so that the FLAC track is the first track? The command below should remux (no encoding) so that the second audio track becomes the first track, and copies the rest of the streams.
Code:/usr/lib/jellyfin-ffmpeg/ffmpeg -fflags +genpts+igndts -i "/data/Media/Video#1.mkv" -map_metadata 0 -map_chapters 0 -map 0:v -map 0:a:1 -map 0:a:0 -map 0:a:2 -map 0:s -map 0:t -codec copy -max_muxing_queue_size 2048 -max_interleave_delta 0 -avoid_negative_ts disabled newFile.mkv
Thanks for the reply. Unfortunately, I just tested this remux, and it seems like the issue persists. FLAC was defaulted and subtitles were off at the beginning of playback. This issue seems quite sinister... Do you have any insight into the meaning of "Unknown Profile" vs "Anonymous Profile" as reported in the debug logs? The only simple solution I can think of is that there just isn't a profile for this video/audio/subs combination, or is that just for Direct Play?