You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to run the main.py file on my terminal in order to test your video synchronization repository but I was first facing a MemoryError
I have then tried to change the video and audio file size in the main.py, but still, I get a RuntimeError because the soundfile package failed to load the audio synchronized file.
The text was updated successfully, but these errors were encountered:
Looks like this code isn't optimized for an audio track that can't fit into memory - it seems like it ran out of memory while trying to loop the audio so that it was long enough to combine with the video. You could try optimizing this code, or as a hack you could split the video into pieces, sync the audio, and combine them.
As a sanity check, you might try to create a 1-minute clip of the video using another tool, and see if that works in place of war.mp4.
The RuntimeError may indicate that the code generated an invalid file - there could be some issue with how you adjusted the video and audio size.
Finally, Abe Davis has since posted code for this paper. It seems to be available via docker. If you can get that working, it will produce much better results than my code will.
I have been trying to run the
main.py
file on my terminal in order to test your video synchronization repository but I was first facing aMemoryError
I have then tried to change the video and audio file size in the
main.py
, but still, I get aRuntimeError
because thesoundfile
package failed to load the audio synchronized file.The text was updated successfully, but these errors were encountered: