Earlier quoted context omitted.
Wow never realized ffmpeg could be used like this! Unfortunately both these commands create a somewhat jerky video on my rx 550 on linux mint and drives CPU crazy (ryzen 3500). I guess it's my underpowered graphics card, but any way to tweak your grab-screen-lossless for a smoother capture?
I'm surprised those specific commands work at all on your machine, since they use the Nvidia-specific nvenc.
FFmpeg 4.4
131–135 of 135 posts
Re: FFmpeg 4.4
#132Re: FFmpeg 4.4
#133Re: FFmpeg 4.4
#134I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?
Video to GIF SET filters="fps=%4,scale=%3:-1:flags=lanczos" ffmpeg -v warning -i %1 -vf "%filters%,palettegen" -y palette.png ffmpeg -v warning -i %1 -i palette.png -lavfi "%filters% \[x\]; \[x\]\[1:v\] paletteuse" -y %2 DEL palette.png togif.bat Extract audio from a video ffmpeg -i "path\to\my_input_video_file.mp4" "path\to\my_output_audio_only.wav" Extract specific video and audio stream ffmpeg -i "path\to\my_input…
In my opinion, `ffmpeg -i filename.mp4 filename.wav` is one of the greatest known examples of powerful functionality with a simple interface.
Re: FFmpeg 4.4
#135I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?