Re: [FFmpeg-user] attempting to extract srt from mpg

2021-10-19 Thread John Finlay via ffmpeg-user
I use CCExtractor at https://ccextractor.org/ for this purpose. John On 10/19/21 12:36 PM, Shupert, Jim via ffmpeg-user wrote: Friends I have a mpg that I wish to extract the captions as a file.srt. I have tried a few things I found on the web. There does not seem to be a decreet stream for

Re: [FFmpeg-user] Naming chapters in Matroska video

2021-02-19 Thread John Finlay via ffmpeg-user
On 2/19/2021 8:08 AM, Paul B Mahol wrote: On Fri, Feb 19, 2021 at 4:53 PM John Finlay wrote: On 2/19/2021 2:26 AM, Paul B Mahol wrote: On Fri, Feb 19, 2021 at 11:23 AM Ulf Zibis wrote: Am 19.02.21 um 10:36 schrieb Paul B Mahol: On Fri, Feb 19, 2021 at 7:58 AM John Finlay via ffmpeg-user

Re: [FFmpeg-user] Naming chapters in Matroska video

2021-02-19 Thread John Finlay via ffmpeg-user
On 2/19/2021 2:26 AM, Paul B Mahol wrote: On Fri, Feb 19, 2021 at 11:23 AM Ulf Zibis wrote: Am 19.02.21 um 10:36 schrieb Paul B Mahol: On Fri, Feb 19, 2021 at 7:58 AM John Finlay via ffmpeg-user < ffmpeg-user@ffmpeg.org> wrote: If the documentation for Metadata is correct then ther

Re: [FFmpeg-user] Naming chapters in Matroska video

2021-02-18 Thread John Finlay via ffmpeg-user
On 2/18/2021 5:48 PM, Jim DeLaHunt wrote: On 2021-02-18 15:05, Paul B Mahol wrote: Everything  is explained in documentation. My time is very limited. No, not everything about FFmpeg's handling of metadata is explained in FFmpeg's documentation. For example, the -map_metdata section[1] does

Re: [FFmpeg-user] Add subtitles and chapter metadata in one pass?

2020-10-12 Thread John Finlay via ffmpeg-user
I have used a command like the below with success in the past: $ ffmpeg -i avfile.mkv -i srtfile.srt -i metadata.txt \     -map 0:0 -map 0:1 -map 1 -map_metadata 2 \         -c:v libx264 [ various options ] \         -c:a copy \         -c:s srt \          -c:d copy \     out.mkv May