I was trying to analyse a video with ffmpeg and it gives this error. I have referred to other sources but those solutions do not seem to work.
[NULL @ 0x24eb600] Unable to find a suitable output format for 'protocols'
protocols: Invalid argument
I have a video currently hosting on Google Cloud Storage and I want to use ffprobe
to study its orientation. This is the command I use.
ffprobe -v error -show_streams -show_format https://storage.googleapis.com/bucket/filename.mp4 | grep rotation
I am currently running on Debian Jessie and I installed ffmpeg
from source.
Here's my installation script
cd ffmpeg-3.4.1
./configure --enable-shared
make
make install
ldconfig
Can anyone tell me how to solve this?