Op 9/17/24 om 14:44 schreef Andrew Randrianasulu:
can you post example for the curious? :)
I read "Can you post 5GB of content"; I sure can.
hm, look for avformat_open_input in ffmpeg.C
according to docs you can set 3rd argument there for specific demuxer:
"@param fmt If non-NULL, this parameter forces a specific input format.
int avformat_open_input(AVFormatContext **ps, const char *url, const AVInputFormat *fmt, AVDictionary **options);
libavformat/avformat.h lines 2240-2274
but I am not sure if cingg can copy concat'd list of files from file picker? For testing you probably can just hardcode input format there and manually enter string of filenames? If this works we probably can think about how to GUI it
I'll give it a shot. As written, I think that this demuxer would have multiple use cases including MPEG-TS streams.
there seems to be bluray demuxer in ffmpeg, not sure about timecode but apparently it can use mpls playlists?
libavformat/bluray.c in ffmpeg source tree.
you might need to enable it in ffmpeg with libbluray headers present.
I'll check it out on Gentoo. -- Stefan