(2024-02-20, 03:02 PM)ballfam Wrote: @Prsa01. So, what I'm seeing with recordings are that issues are specific to the channel. I suspect Pluto just collects rag-tag set of streams from all over the place and re-streams them on their platform, and throws in a few channels of their own, so everyone has a different take on what the stream looks like. Some channels are completely flawless, they stream perfectly and are searchable, while others are really messed up, and there doesn't appear to be any sane timecode in them.I've tried quite a few different recoding scenarios but, also freely admit, I don't know what I'm doing. I'm using mcebuddy so don't necessarily see tbe parms being passed to ffmpeg.
I'm recording a bunch of stuff from a number of the live news channels such as "CBS News", "ABC New Live", and "NBC News NOW", and they all work perfectly. Since these channels are available on several platforms, I assume they are just a re-stream of a professionally generated live stream with correct indexing and searching.
PBR Ride Pass, on the other hand, is something exclusive to Pluto, and it is totally messed up. Even watching it from the start without jumping doesn't always work properly; occasionally, the video freezes, but the audio keeps on going. I'm experimenting with some ffmpeg remuxing in PostProcessing.sh to see if it helps. This is my first attempt:
Code:ffmpeg -fflags +genpts -i "$1" -vcodec copy -acodec copy -c:s copy -movflags faststart "${1%.*}.mp4"
But I have a feeling I'll have to end up doing a full recode.
If anyone has any suggestions for ffmpeg syntax that might produce a good result, please post.
Martin, Sub,
Is there any way of having PostProcessing do something based on the channel? I would want to leave some channels alone, while others may need a complete recode. Currently, I'm just running ffmpeg on every channel, while it's just copying it's not a big deal, but if it has to do a full recode, I want to limit the scope if I can.
Mostly recording cooking shows for my wife and from ~ 4 channels have tried combos of each of the following -
Just remux
re-encode staying with mp4 but dropping quality slightly
re-encode to mp2
mkv
wtv
leave as ts but tweak
with each of those I try viewing with mpv, vlc, wmc...
As you mentioned, even within a channel I'll see something that works (fairly) consistently on one show/viewer combo and not at all on another show. Had hopes that fully converting to mkv or mp2 might consistently work but it was just as hit/miss as anything else I tried.