transitive-bullshit / ffmpeg-concat

Concats a list of videos together using ffmpeg with sexy OpenGL transitions.
865 stars 113 forks source link

how to use ffprobe from docker ? #89

Closed sunjianan9900 closed 3 years ago

sunjianan9900 commented 3 years ago

I add this to my path:

alias ffmpeg='docker run -v $(pwd):$(pwd) -v $(pwd)/fonts:/usr/share/fonts -w $(pwd) --rm sub/ffmpeg -stats'
alias ffprobe='docker run -v $(pwd):$(pwd) -v $(pwd)/fonts:/usr/share/fonts -w $(pwd) --rm --entrypoint ffprobe sub/ffmpeg -stats'

and i can call "ffmpeg" and "ffprobe" in my shell but ffmpeg-concat can not read ffprobe at all how can i tell ffmpeg-concat my 'ffprobe' = 'docker run -v $(pwd):$(pwd) -v $(pwd)/fonts:/usr/share/fonts -w $(pwd) --rm --entrypoint ffprobe sub/ffmpeg -stats' ?