html5 video tag codecs attribute

后端 未结 3 1789
时光说笑
时光说笑 2020-11-29 16:57

I am trying to specify a specific video/audio codec in the video tag using

3条回答
  •  旧巷少年郎
    2020-11-29 17:38

    You can use MP4Box tool to find out codec strings in RFC6381 format. Still you have to join them with commas.

    You can use this command:

    MP4Box -info big.mp4 2>&1 | grep RFC6381 | awk '{print $4}' | paste -sd , -

提交回复
热议问题