Hi Nico - I almost succee, but in the end I get the FileNotFoundError Traceback (most recent call last) in () 17 print("Final Video Preview") 18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4') ---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4') in showVideo(file_path) 11 def showVideo(file_path): 12 """Function to display video in Colab""" ---> 13 mp4 = open(file_path,'rb').read() 14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode() 15 display(HTML(""" FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'
Awesome dude!!! thank you so much!!!!! You are the only one who has explained everything in an easy to understand and simple way. just a terrific discovery for me!!! thank you thank you thank you thank you thank you !!!!!
Works as of today. I used a .m4a audio file, and it dealt with it fine. It was an OK sync with the video but around the mouth portion, it distorted that part of the video.
Hey Nico, thanks you so much for the video. I have tried on my end buts I keep getting errors I don't understand. Ex: for my audio file: NameError: name 'clear_output' is not defined. Is there a special format fo the movie file and audio file? My video is 180M, less than 30 sec. AVI format. Audio is 5M, wav format Do you offer some kind of support?
#@title STEP3: Select Audio (Record, Upload from local drive or Gdrive) import os from IPython.display import Audio, clear_output # Import clear_output from IPython.core.display import display
Hey Nico, thank you for your content, love your videos bro! This program seams not to work anymore, I always get the same error in the end on the 4th step (I've tried different video and audio samples) FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4' Maybe there's a solution to it?
You can try a few things. Upload your files manually in a folder in the google collab and copy the path into the code. You can also take a look at the file extensions and make sure that you're using wav for audio and mp4 for video. Also, what kind of video are you using? Sometimes the program has difficulties because it cant find a face.
Hey! Amazing video. I just have a couple of question, why does the model downgrades the video resolution to 720p, is there a way to increase the resolution? also why there is a limit of 60 sec for the input video?
i uploaded multiple videos and audio i wanted synced and it worked fine but now i change the video and audio but it keeps syncing the previous video i had. idk how to fix it.
Hello Viral What if the video is very short and the audio file is very long? Will it be lengthened or do I need to select the video with the same length as the audio. Thanks.
@@youngfbnl5355 hey bro can you help me solve this FileNotFoundError Traceback (most recent call last) in () 17 print("Final Video Preview") 18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4') ---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4') in showVideo(file_path) 11 def showVideo(file_path): 12 """Function to display video in Colab""" ---> 13 mp4 = open(file_path,'rb').read() 14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode() 15 display(HTML(""" FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4' it was working fine all day and now its not working at all for me. please help
I could upload the video, but the audio browsing tab did never shown up, so i couldn t achieve step 3, it made me angry as the video upload took me 20 minutes. Bg thumb 👇👇👇👎👎👎 sks
Everything goes well until step 4, because it does not finish and gives me the following error: "Final Video Preview Download this video from /content/Wav2Lip/results/result_voice.mp4 --------------------------------------------------------------------------- FileNotFoundError Traceback (most recent call last) in () 17 print("Final Video Preview") 18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4') ---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4') in showVideo(file_path) 11 def showVideo(file_path): 12 """Function to display video in Colab""" ---> 13 mp4 = open(file_path,'rb').read() 14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode() 15 display(HTML(""" FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'" I tried with a static image and it didn't happen, but when trying to do it with a moving video (as in the video) it gives me that error, any solution?
@@TheRedTape it’s kind of a weak program tbh it requires the face to be fully present at every millisecond of the video and when it does work the results are not even worth it. Just my opinion
Let me know if you have any further questions
does this mean i don't have to wear pants tomorrow? score
QUALITY gets too much worst !!
Where did you get the audio? is it also AI generated?
Hi Nico - I almost succee, but in the end I get the FileNotFoundError Traceback (most recent call last)
in ()
17 print("Final Video Preview")
18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4')
---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4')
in showVideo(file_path)
11 def showVideo(file_path):
12 """Function to display video in Colab"""
---> 13 mp4 = open(file_path,'rb').read()
14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode()
15 display(HTML("""
FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'
I can see the video and hear the audio - but it fails on the merge
thanks buddy, finally got it to work appreciate your video cheers from canada
Awesome dude!!! thank you so much!!!!! You are the only one who has explained everything in an easy to understand and simple way. just a terrific discovery for me!!! thank you thank you thank you thank you thank you !!!!!
Happy to hear it man, enjoy 😃
Works as of today. I used a .m4a audio file, and it dealt with it fine. It was an OK sync with the video but around the mouth portion, it distorted that part of the video.
I had same issue, is there any solution to that??
Ist says file not found error can you help me?
eazy and also works with mp3 audio files THANKS FOR THIS VIDEO
hardware specifications please , can I run it localllly on m3 pro 14 core gpu
Hey Nico, thanks you so much for the video. I have tried on my end buts I keep getting errors I don't understand. Ex: for my audio file: NameError: name 'clear_output' is not defined. Is there a special format fo the movie file and audio file? My video is 180M, less than 30 sec. AVI format. Audio is 5M, wav format Do you offer some kind of support?
#@title STEP3: Select Audio (Record, Upload from local drive or Gdrive)
import os
from IPython.display import Audio, clear_output # Import clear_output
from IPython.core.display import display
Replace this code with the one at where you will upload your audio
Unfortunately the first step ends in error messages for me:(. it is probably outdated. Any new links or help?
Hey Nico, thank you for your content, love your videos bro!
This program seams not to work anymore, I always get the same error in the end on the 4th step (I've tried different video and audio samples)
FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'
Maybe there's a solution to it?
You can try a few things. Upload your files manually in a folder in the google collab and copy the path into the code. You can also take a look at the file extensions and make sure that you're using wav for audio and mp4 for video. Also, what kind of video are you using? Sometimes the program has difficulties because it cant find a face.
@@ViralNico can i use png image instead of video?
all you need just have video full face which have long track same with the voice lenght you upload
Hey! Amazing video. I just have a couple of question, why does the model downgrades the video resolution to 720p, is there a way to increase the resolution? also why there is a limit of 60 sec for the input video?
i uploaded multiple videos and audio i wanted synced and it worked fine but now i change the video and audio but it keeps syncing the previous video i had. idk how to fix it.
Not working. Getting errors after converting to wav file.
Thanks, It's working so well ! combined with upscale solutions you can get a good face quality
How exactly did you get this tow work?
Improving the face quality with upscale
@@donaldwogu9356 I use stable diffusion automatic webui1111 for the upscale (4k ultrasharp upscale methode)
Hi, can you tell me how can I render video in better quality, because the video in bad quality and have small resolution.
Hello Viral
What if the video is very short and the audio file is very long? Will it be lengthened or do I need to select the video with the same length as the audio. Thanks.
After trying it out myself i found out that it will just loop the video, so it will play it over and over again
it says file not found error
same here. any luck did u find a solution? please let me know.
Hi, this can make in like real time video generation with more gpu? for conversation, regards
Mine worked well the first time I used it but now it’s showing errors after I switched off my laptop
So you can't run local ...... Only on Google colab?
you are the best teacher bro
Thanks man 😄
where download the partable version of Wav2Lip?
Final video isn’t showing up what do I do?
hey nico.. can you tell from where i can get deepfake audio?
*Says Processing failed. Output video not found*
what if i want to lipsync a video that is not from youtube
does it works if i want to dub a video from english to spanish
Sure man, it works with any audio
How can we generate Ai jokes? Not one lines as Chatgpt generate
My video is not uploading, it’s showing messageError
Please what is the name of the file
Does it work on Android phones?
You forgot to put the link in the description.....
does it work with animals?
That's a good question. No idea. Worth trying out 😃
What if it’s not running??
OOM means out of memory. I wonder how it gets around that when it is encountered though
Can this be done on a mobile phone?
Maybe, you can always try it 😃
you can but slow
thanks
MessageError: RangeError: Maximum call stack size exceeded.
How long is your video?
I got it solved thanks man
@@youngfbnl5355 hey bro can you help me solve this
FileNotFoundError Traceback (most recent call last)
in ()
17 print("Final Video Preview")
18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4')
---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4')
in showVideo(file_path)
11 def showVideo(file_path):
12 """Function to display video in Colab"""
---> 13 mp4 = open(file_path,'rb').read()
14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode()
15 display(HTML("""
FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'
it was working fine all day and now its not working at all for me. please help
It’s called wave files, not wav……although it’s written that way…..
ÉS O REI
I hope it s still free at this time
Is not accepting my video
takes super long to connect :C
Is this working yet ?
I could upload the video, but the audio browsing tab did never shown up, so i couldn t achieve step 3, it made me angry as the video upload took me 20 minutes. Bg thumb 👇👇👇👎👎👎 sks
Wav2Lip slow
Very low quality of video
Everything goes well until step 4, because it does not finish and gives me the following error:
"Final Video Preview
Download this video from /content/Wav2Lip/results/result_voice.mp4
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
in ()
17 print("Final Video Preview")
18 print("Download this video from", '/content/Wav2Lip/results/result_voice.mp4')
---> 19 showVideo('/content/Wav2Lip/results/result_voice.mp4')
in showVideo(file_path)
11 def showVideo(file_path):
12 """Function to display video in Colab"""
---> 13 mp4 = open(file_path,'rb').read()
14 data_url = "data:video/mp4;base64," + b64encode(mp4).decode()
15 display(HTML("""
FileNotFoundError: [Errno 2] No such file or directory: '/content/Wav2Lip/results/result_voice.mp4'"
I tried with a static image and it didn't happen, but when trying to do it with a moving video (as in the video) it gives me that error, any solution?
same here. im not a coder so i dont know how to fix it but have you had any luck fixing it? please let me know. thank you.
@@icecoldyellowredbull same here..tried several things, diff formats everything.. simply not working
@@TheRedTape it’s kind of a weak program tbh it requires the face to be fully present at every millisecond of the video and when it does work the results are not even worth it. Just my opinion