-
Notifications
You must be signed in to change notification settings - Fork 19
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
No matching audio stream! #22
Comments
Hmmm, can you try it with other videos and see if that preset works for you? |
Yes it works, it just few video where I get this issue. Maybe 10% of all video I try to process, I can give you other example if you want |
I think I need to add some more debugging functionality to really see what the issue might be. I would think that there is something going on with those videos, not necessarily this library. But I could be wrong! Under the covers I use (In the meantime if mp3 versions are critical try downloading the whole video and then use another program to extract just the audio (ffmpeg would be perfect) |
Ok keep me updated and I will try the full video + ffmpeg process |
Same problem here. I tried about a dozen videos from https://www.youtube.com/channel/UCEGJQkfFh4wk2HYtPLInnPA/videos and had that error with each of them :( |
Hmm, there should be a common ground when it comes to the raw data coming back. We can try adding more logging when it fails and see if we can determine anything. |
Failed for this video too: https://www.youtube.com/watch?v=VfnYmGSE1aY My Code: pully.download({
url: "https://www.youtube.com/watch?v=VfnYmGSE1aY",
preset: Presets.MP3,
}).then((results) => {
res.status(200).download(results.path, "song.mp3");
}, (err) => console.error(err)); Why does this happen? |
I've been super busy with day job stuff, but I'm really missing working on my pet projects. I think it's time I create a little "dump" command that will grab the data for the video/audio tracks so we can compare them. |
I was having a similar issue, but with video streams. All video formats were being filtered out because the format.type was undefined. This issue was related to the raw field changing from |
@nakleiderer You are absolutely correct. A few things changed in the underlying APIs so I am working through those now. Hopefully I'll get pully updated and released soon. |
I get the error: "No matching audio stream!" when trying to save with the preset "mp3" this video https://www.youtube.com/watch?v=RKpjqddcuy0
Any idea why?
The text was updated successfully, but these errors were encountered: