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] Information needed

2022-07-06 Thread Cecil Westerhof via ffmpeg-user
Okolie Raymond writes: > I have an old installation of ffmpeg installed over two years ago on an > ubuntu server and would like to know if and how I can update / upgrade the > installation and keep the settings that exist already . here are some of Become root and run: apt update apt upg

[FFmpeg-user] Information needed

2022-07-06 Thread Okolie Raymond
Hello, I have an old installation of ffmpeg installed over two years ago on an ubuntu server and would like to know if and how I can update / upgrade the installation and keep the settings that exist already . here are some of the last commands typed in the history : 129 sudo su 130 ls -la

[FFmpeg-user] Linux PC Locks Up When Encoding Video

2022-07-06 Thread James Board via ffmpeg-user
I'm trying to encode video that I captured from a BlackMagic capture card. The input format is MJPEG.  The ffmpeg encode command is     ffmpeg -i IN.avi -c:a copy -c:v libx264 -vf eq=brightness=0.05 -preset medium -crf 20 OUT.avi This command intermittently locks up the PC: if i repeatedly try to

Re: [FFmpeg-user] Hardware encoding with AV1 and FFmpeg

2022-07-06 Thread Benjamin Parham
Thank you Dennis and Wang for your answers! I am excited to see its performance in live transcoding. Regards, Ben. On Tue, Jul 5, 2022 at 4:46 PM Dennis Mungai wrote: > On Tue, 5 Jul 2022, 11:37 Wang, Fei W, > > wrote: > > > On Tue, 2022-07-05 at 11:15 +0300, Dennis Mungai wrote: > > > On Tue,

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