如何使用ffmpeg將破折號段的視訊和音訊檔案名稱分開?

如何使用ffmpeg將破折號段的視訊和音訊檔案名稱分開?

我想在破折號段中為音訊定義 m4a,為視訊定義 m4v。

我已經嘗試過這個但它不起作用:

ffmpeg -i out_dash.mp4 -c copy -f dash -window_size 5 \
  -min_seg_duration 500 -single_file 1 \
  -init_seg_name initavatar-stream\$RepresentationID\$.\$ext\$ \
  -media_seg_name chunk-stream\$RepresentationID\$-\$Number%05d\$.\$ext\$ \
  -use_timeline 1 -use_template 1  index.mpd

請給我一些建議。

相關內容