DXV encoding to ffmpeg (resolution codec)

I have it listed in ffmpeg -codecs

, but it returns Unknown encoder 'dxv'

.

Do I need to reinstall ffmpeg with DXV dependencies? If so, how? Why is it listed in -codecs if unknown?

I found this on the internet:

https://www.ffmpeg.org/doxygen/3.2/dxv_8c_source.html

Presumably the source for dxv encondig. Should I use it anyway?

+3


source to share


2 answers


According to the output ffmpeg -codecs

,

D.VIL. dxv Resolume DXV



FFmpeg can only decode DXV, not encode it. The second character would be E

instead .

if an encoder was available. You can also check ffmpeg -encoders

to see a list of encoders only.

+1


source


Unfortunately, it looks like the Resolume team is not interested in the open-sourcing of the DXV codec so that programs like ffmpeg

can encode video to this format.

My preferred alternative at the moment is MPEG Streamclip .



There are other options that they recommend in their guide .

0


source







All Articles