FFmpeg 4.4
71–80 of 135 posts
Re: FFmpeg 4.4
#72I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?
fd -t f -e flac . "$@" -x ffmpeg -loglevel 16 -i "{}" -qscale:a 0 "{.}.mp3"Re: FFmpeg 4.4
#73Re: FFmpeg 4.4
#74Shameless plug: While working with ffmpeg over the years, i always thought that FFmpeg should have a simple to use UI. I have recently started working on a desktop(electron) tool that wraps ffmpeg script in easy to use interface Here is a video showing the tool in action https://www.youtube.com/watch?v=qqqiK6YnJu8 https://auvinox.com
Re: FFmpeg 4.4
#75does this needs specific hardware or any VDPAU capable GPU can decode now HECV??
Re: FFmpeg 4.4
#76I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?
I have one glorious: ffmpeg -hwaccel cuvid -c:v h264_cuvid -i input.mp4 -vf "hwdownload,format=nv12,scale=(iw*sar)*max(1280/(iw*sar)\,720/ih):ih*max(1280/(iw*sar)\,720/ih), crop=1280:720, subtitles=input.srt:force_style='FontName='TiresiasScreenfont',Fontsize=32,Outline=2,MarginL=50,MarginV=30,Alignment=1',minterpolate=fps=60:mi_mode=blend" -c:v h264_nvenc -preset slow -b:v 8M -f matroska - | vlc - What it does: Allo…
Re: FFmpeg 4.4
#77Video Hub App - https://videohubapp.com/
MIT open source too: https://github.com/whyboris/Video-Hub-App
Re: FFmpeg 4.4
#78I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?
Re: FFmpeg 4.4
#79Re: FFmpeg 4.4
#80I think everyone was a txt file on their computer filled with FFmpeg commands. Care to share yours?
$cat ~/bin/ffmpeg_grab_desktop.sh
#!/bin/bash
size=${1:-"1920x1080"}
offset=${2:-"0,0"}
name=${3:-"video"}
ffmpeg -video_size $size -framerate 25 -f x11grab -i :0.0+$offset -c:v libx264 -crf 0 -preset ultrafast "$name.mkv"
ffmpeg -i "$name.mkv" -movflags faststart -pix_fmt yuv420p "$name.mp4"