how to use ffprobe from docker ?
sunjianan9900 opened this issue · 0 comments
sunjianan9900 commented
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