2017-01-23 4 views
0

https urlに基づいたビデオストリームの統計情報を収集したいとします。私は次の出力ffprobeを使用してhttpsビデオの統計情報を取得できません

[email protected]:/vagrant/kaybus$ ffprobe https://www.youtube.com/watch?v=YbYjtSFa5Fs 
ffprobe version N-80901-gfebc862 Copyright (c) 2007-2016 the FFmpeg developers 
    built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3) 
    configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libfreetype --enable-gnutls --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvidstab 
    libavutil  55. 28.100/55. 28.100 
    libavcodec  57. 48.101/57. 48.101 
    libavformat 57. 41.100/57. 41.100 
    libavdevice 57. 0.102/57. 0.102 
    libavfilter  6. 47.100/6. 47.100 
    libavresample 3. 0. 0/3. 0. 0 
    libswscale  4. 1.100/4. 1.100 
    libswresample 2. 1.100/2. 1.100 
    libpostproc 54. 0.100/54. 0.100 
[tls @ 0x3547140] A TLS packet with unexpected length was received. 
https://www.youtube.com/watch?v=YbYjtSFa5Fs: Input/output error 

は[TLS @ 0x3547140]予想外の長さとのTLSパケットを受信し得る ffprobe https://www.youtube.com/watch?v=YbYjtSFa5Fs

を実行する上で

。 上記のエラーを修正するにはどうすればよいですか?

httpsは、ffprobeでサポートされている入力および出力プロトコルにリストされています。

ffprobe -version

[email protected]:/vagrant/kaybus$ ffprobe -version 
ffprobe version N-80901-gfebc862 Copyright (c) 2007-2016 the FFmpeg developers 
built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3) 

おかげ

答えて

0

はあなたのURLは、一般的なウェブサイトである:それは、ビデオへの直接リンクはありません。 ffprobeはHTTP(S)をサポートしていますが、HTMLパーサーではありません。

関連する問題