Re: [FFmpeg-user] How to embed subtitles into video using Python

2022-07-13 Thread Moritz Barsnick
On Wed, Jul 06, 2022 at 13:36:30 -0700, Jim DeLaHunt wrote: > On 2022-07-06 02:46, Pavel Yermolenko via ffmpeg-user wrote: > > In Python there is ffmeg support package: *ffmpeg-python*. ffmpeg-python > > 0.2.0 > > Unfortunately in the documentation [there]

Re: [FFmpeg-user] How to embed subtitles into video using Python

2022-07-06 Thread Jim DeLaHunt
On 2022-07-06 02:46, Pavel Yermolenko via ffmpeg-user wrote: Hello, I'm looking for a command format to embed subtitles into video (not to burn them). This command, that I found somewhere on the web works fine - the subtitles are just embedded into video, quite rapid process. ffmpeg -i vi

Re: [FFmpeg-user] How to embed subtitles into video using Python

2022-07-06 Thread Carl Zwanzig
On 7/6/2022 2:46 AM, Pavel Yermolenko via ffmpeg-user wrote: In Python there is ffmeg support package: *ffmpeg-python*. Sure, but you don't -need- that. Just assemble the complete command line and pass that to a subprocess. Or use bash instead of python. z! _

[FFmpeg-user] How to embed subtitles into video using Python

2022-07-06 Thread Pavel Yermolenko via ffmpeg-user
Hello, I'm looking for a command format to embed subtitles into video (not to burn them). This command, that I found somewhere on the web works fine - the subtitles are just embedded into video, quite rapid process. ffmpeg -i video.mp4 -i video.srt -map 0:v -map 0:a -c copy -map 1 -c:s:0 m