-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MKV audio extract fail with Segfault #4
Comments
The problem here seems to be that the input file is long enough to produce a wav file that will be larger than 4 gigabytes (4726645260 bytes), which is not supported by the wav format (see https://superuser.com/a/1523649). Unless you are willing to implement support for the RF64 header that would allow to support such larges files, the solution would be to split your input file in shorter clips and index each clip individually. |
Very interesting. I tried Olaf in advanced maneer (only the C binary usage) but the performance not match my search. I look for audio fingerprint permit the detection of a duplicate sound track in a collection of 24198+ videos. |
I need complete audio (about 2 hour duration average) fingerprint to get similarity factor or percentage for N*N. |
Hello, I need to deduplicate video file with many codec like AC3 5.1 / EAC3 5.1 and more than one audio track.
I think I need to write the ffmpeg part myself to downscale and extract all audio stream as a pcm_s16le ?
Else it always end with segfault :
The text was updated successfully, but these errors were encountered: