mp4 をストリーミングしたいので、ffserver について読みました。
そのため、ffserver のドキュメントを検索して読みましたが、単純なファイルをストリーミングすることはできません。
このために私はこれらを行いました:
1-A win 8および最後にインストールされたVLC。
2-最後の ffmpeg パッケージを含む Ubuntu 13。
3-/etc/ に保存され、http://ffmpeg.org/sample.html からコピーされた ffserver.conf ファイル(新しいファイルにテキストをコピーするだけです)。
4-このコマンドを実行します:ffserver -f /etc/ffconfig.conf
これが結果です:
avserver version 0.8.13-6:0.8.13-0ubuntu0.13.10.1, Copyright (c) 2000-2014 the Libav developers
built on Jul 15 2014 13:53:49 with gcc 4.8.1
Tue Feb 10 07:29:07 2015 AVserver started.
5- http://localhost:8090/stat.htmlを確認すると、サーバーのステータスは OK です。4 つのストリーム (test1.mpg、test.asf、stat.html、index.html) が表示されます。
6-このコマンドを実行します:ffmpeg -i test.mp4 http://localhost:8090/feed1.ffm
これが結果です:
ffmpeg version 0.8.13-6:0.8.13-0ubuntu0.13.10.1, Copyright (c) 2000-2014 the Libav developers
built on Jul 15 2014 13:53:49 with gcc 4.8.1
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'big.mp4':
Metadata:
major_brand : isom
minor_version : 1
compatible_brands: isom
creation_time : 2015-02-05 20:35:09
Duration: 00:21:36.12, start: 0.000000, bitrate: 788 kb/s
Stream #0.0(und): Video: h264 (High), yuv420p, 720x404, 677 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
Metadata:
creation_time : 2015-02-05 17:05:45
Stream #0.1(und): Audio: aac, 48000 Hz, stereo, s16, 106 kb/s
Metadata:
creation_time : 2015-02-05 20:35:12
Incompatible sample format '(null)' for codec 'mp2', auto-selecting format 's16'
Last message repeated 1 times
Incompatible sample format '(null)' for codec 'libmp3lame', auto-selecting format 's16'
[buffer @ 0x900f0c0] w:720 h:404 pixfmt:yuv420p
[scale @ 0x8ea5080] w:720 h:404 fmt:yuv420p -> w:160 h:128 fmt:yuv420p flags:0x4
[buffer @ 0x8ea34a0] Invalid pixel format string '-1'
Error opening filters!
7-エラーを見て、なぜこれが起こるのか、どこが間違っているのかわかりません!
これまで、ffserver に関する多くのサンプルとチュートリアルを読みましたが、それらのほとんどはライブ ストリーミングに関するものでしたが、いくつかの mp4 ファイルをストリーミングしたいだけです。
編集:
このリンクのように実際の ffmpeg をインストールしました: https://askubuntu.com/questions/373322/how-to-replace-avconv-with-the-real-ffmpeg-and-have-it-work-rightしかし、同じエラー (ちょうどppa をppa:mc3man/trusty-media
最後のリリースに変更します):
pp@ubuntu:~$ ffmpeg -i big.mp4 http://localhost:8090/feed1.ffm
ffmpeg version 0.8.13-6:0.8.13-0ubuntu0.13.10.1, Copyright (c) 2000-2014 the Libav developers
built on Jul 15 2014 13:53:49 with gcc 4.8.1
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'big.mp4':
Metadata:
major_brand : isom
minor_version : 1
compatible_brands: isom
creation_time : 2015-02-05 20:35:09
Duration: 00:21:36.12, start: 0.000000, bitrate: 788 kb/s
Stream #0.0(und): Video: h264 (High), yuv420p, 720x404, 677 kb/s, 23.98 fps, 23.98 tbr, 24k tbn, 47.95 tbc
Metadata:
creation_time : 2015-02-05 17:05:45
Stream #0.1(und): Audio: aac, 48000 Hz, stereo, s16, 106 kb/s
Metadata:
creation_time : 2015-02-05 20:35:12
Incompatible sample format '(null)' for codec 'mp2', auto-selecting format 's16'
Last message repeated 1 times
Incompatible sample format '(null)' for codec 'libmp3lame', auto-selecting format 's16'
[buffer @ 0xa04e0c0] w:720 h:404 pixfmt:yuv420p
[scale @ 0x9ee4080] w:720 h:404 fmt:yuv420p -> w:160 h:128 fmt:yuv420p flags:0x4
[buffer @ 0x9ee24a0] Invalid pixel format string '-1'
Error opening filters!
テストのために実行する必要がある正確なコマンドを誰かに教えてもらえますか?
(これは初心者の問題のようなものですが、ドキュメントを読んでできる限りすべてをテストしますが、それでもうまくいきません)