USE_AUDIO_IN_VIDEO Error
When I turn on 'USE_AUDIO_IN_VIDEO' option, error is occured.
Error message is as follows:
LibsndfileError Traceback (most recent call last)
File /opt/conda/lib/python3.11/site-packages/librosa/core/audio.py:176, in load(path, sr, mono, offset, duration, dtype, res_type)
175 try:
--> 176 y, sr_native = __soundfile_load(path, offset, duration, dtype)
178 except sf.SoundFileRuntimeError as exc:
179 # If soundfile failed, try audioread instead
File /opt/conda/lib/python3.11/site-packages/librosa/core/audio.py:209, in __soundfile_load(path, offset, duration, dtype)
207 else:
208 # Otherwise, create the soundfile object
--> 209 context = sf.SoundFile(path)
211 with context as sf_desc:
File /opt/conda/lib/python3.11/site-packages/soundfile.py:690, in SoundFile.init(self, file, mode, samplerate, channels, subtype, endian, format, closefd, compression_level, bitrate_mode)
688 self._info = _create_info_struct(file, mode, samplerate, channels,
689 format, subtype, endian)
--> 690 self._file = self._open(file, mode_int, closefd)
691 if set(mode).issuperset('r+') and self.seekable():
692 # Move write position to 0 (like in Python file objects)
File /opt/conda/lib/python3.11/site-packages/soundfile.py:1265, in SoundFile._open(self, file, mode_int, closefd)
1264 err = _snd.sf_error(file_ptr)
-> 1265 raise LibsndfileError(err, prefix="Error opening {0!r}: ".format(self.name))
1266 if mode_int == _snd.SFM_WRITE:
1267 # Due to a bug in libsndfile version <= 1.0.25, frames != 0
1268 # when opening a named pipe in SFM_WRITE mode.
1269 # See http://github.com/erikd/libsndfile/issues/77.
LibsndfileError: Error opening 'sample.mp4': Format not recognised.
same problem