理論的には、両方のIOSとAndroidはh.264ファイルを再生しますが、実際にクロスプラットフォームで動作するようにそれらをエンコードする設定を理解できません。 1つのファイルを使用してAndroidとIOSの両方をエンコードする方法を知っている人はいますか?
p.s.私はhtml5ビデオとフォールバックソースについてすべて知っていますが、パイクから来るすべてのデバイス用に新しいビデオをエンコードしてホストしたくありません。
これは、本番環境でMPEG-4 h.264にトランスコードするために使用するffmpegコマンドラインです。いくつかのAndroidデバイスで、出力をテストしました。 iOSだけでなく、フレームサイズ/フレームレートやqfactorなどを微調整するだけで、これを出発点として使用できます。
ffmpeg -y
-i #{input_file}
-s 432x320
-b 384k
-vcodec libx264
-flags +loop+mv4
-cmp 256
-partitions +parti4x4+parti8x8+partp4x4+partp8x8
-subq 6
-trellis 0
-refs 5
-bf 0
-flags2 +mixed_refs
-coder 0
-me_range 16
-g 250
-keyint_min 25
-sc_threshold 40
-i_qfactor 0.71
-qmin 10 -qmax 51
-qdiff 4
-acodec libfaac
-ac 1
-ar 16000
-r 13
-ab 32000
-aspect 3:2
#{output_file}
Androidの互換性に影響を与える重要なオプションのいくつかは次のとおりです。
-coder 0 Uses CAVLAC rather than CABAC entropy encoding (CABAC not supported on Android)
-trellis 0 Should be shut off, requires CABAC
-bf 0 Turns off B-frames, not supported on Android or other h.264 Baseline Profile devices
-subq 6 Determines what algorithms are used for subpixel motion searching. 7 applies to B-frames, not supported on Android.
-refs 5 Determines how many frames are referenced prior to the current frame. Increasing this number could affect compatibility
このffmpegレシピでビデオをエンコードした後、ビデオを qt-faststart にも渡します。この手順では、ストリーミング用にビデオを再チャンクします。 HTTP経由でAndroidアプリ内の埋め込みVideoViewにストリーミングします。認識しているAndroidデバイスへのストリーミングに問題はありません。
更新2013-06-17:互換性を最大にするために、H.264エンコーディングの「ベースライン」プロファイルに固執するのが最善であるというメモを追加したかっただけですすべてのAndroidデバイス間。上記のコマンドラインはH.264プロファイルを明示的に指定していませんが、ffmpegには-profile
コマンドラインフラグがあります。プリセットを使用しています 。おそらく-profile
をいじってはいけません。ASUSTransformer300タブレット(Android 4.2)のビデオを、「ベースライン」プロファイルではなく「メイン」プロファイルを使用してエンコードしました(ハンドブレーキ経由) 。「メイン」プロファイルでは、再生時にオーディオがビデオと同期しなくなるという問題が発生しました。
これを使用してAndroidおよびビデオが埋め込まれたiOSアプリを作成しました。ビデオは両方のバージョンで再生されました。( Androidの例 ) ( iOSの例 )
この回答は、いくつかのパラメーターを説明する受け入れられた回答の補足です。
ffmpeg
-y # Overwrite output files without asking.
-i input_filename # input file name
-s 432x320 # size of output file
-b:v 384k # bitrate for video
-vcodec libx264 # use H.264 video codec
-flags +loop+mv4 # use loop filter and four motion vector by macroblock
-cmp 256 # ??? Full pel motion estimation compare function
-partitions +parti4x4+parti8x8+partp4x4+partp8x8 #???
-subq 6 # determines algorythms for subpixel motion searching and partition decision
-trellis 0 # optimal rounding choices
-refs 5 # number of frames referenced prior to current frame
-bf 0 # turn of B-frames, something to do with H.264 and Baseline Profile
-flags2 +mixed_refs # ??? gave me an error so I just deleted it
-coder 0 # turn of the CABAC entropy encoder
-me_range 16 # max range of the motion search
-g 250 # GOP length (250 is the recommended default)
-keyint_min 25 # Minimum GOP length (25 is the recommended default)
-sc_threshold 40 # adjusts sensitivity of x264's scenecut detection (default is 40)
-i_qfactor 0.71 # Qscale difference between I-frames and P-frames (0.71 is the recommended default)
-qmin 10 -qmax 51 # min and max quantizer (10 and 51 are the recommended defaults)
-qdiff 4 # max QP step (4 is recommended default)
-c:a aac # Set the audio codec to use AAC
-ac 1 # number of audio channels
-ar 16000 # audio sampling frequency
-r 13 # frames per second
-ab 32000 # audio bitrate
-aspect 3:2 # sample aspect ratio
output_filename # name of the output file
私が確信が持てなかった詳細のいくつかを記入することができれば、これを自由に編集してください。
ここでも、カットアンドペースト形式です。 (コンピューターでaac
を機能させるには、-strict -2
パラメーターも追加する必要がありました。)
ffmpeg -y -i input_file.avi -s 432x320 -b:v 384k -vcodec libx264 -flags +loop+mv4 -cmp 256 -partitions +parti4x4+parti8x8+partp4x4+partp8x8 -subq 6 -trellis 0 -refs 5 -bf 0 -coder 0 -me_range 16 -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 10 -qmax 51 -qdiff 4 -c:a aac -ac 1 -ar 16000 -r 13 -ab 32000 -aspect 3:2 -strict -2 output_file.mp4
私が次のリンクで見つけたこの情報のほとんど: