Skip to content
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

Open
Tuizi opened this issue May 14, 2017 · 10 comments
Open

No matching audio stream! #22

Tuizi opened this issue May 14, 2017 · 10 comments

Comments

@Tuizi
Copy link

Tuizi commented May 14, 2017

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?

@jimbuck
Copy link
Owner

jimbuck commented May 15, 2017

Hmmm, can you try it with other videos and see if that preset works for you?

@Tuizi
Copy link
Author

Tuizi commented May 15, 2017

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

@jimbuck
Copy link
Owner

jimbuck commented May 15, 2017

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 ytdl-core, which does the actual parsing of various media types and downloading. I will try to take a look at this sometime this week.

(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)

@Tuizi
Copy link
Author

Tuizi commented May 15, 2017

Ok keep me updated and I will try the full video + ffmpeg process

@tkissing
Copy link

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 :(

@jimbuck
Copy link
Owner

jimbuck commented Oct 24, 2017

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.

@dolanmiu
Copy link

dolanmiu commented Nov 10, 2017

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?

@jimbuck
Copy link
Owner

jimbuck commented Nov 13, 2017

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. Pully wraps node-ytdl-core and merges the best audio and video tracks based on your preset choice. As for the details of why some videos work and others don't, I'll need everyone's help!

@nakleiderer
Copy link

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 type to mimeType. This was addressed in jimbuck/pully-core@1b2d427 when https://github.com/jimbuck/pully-core/blame/master/src/index.ts#L42 was changed. Updating to the latest pully-core resolved the issue for me. I had to do it the dirty way by reaching into node_modules/pully and installing the latest version manually. It looks like pully-core will be upgraded in the next release due to this commit c491a50

@jimbuck
Copy link
Owner

jimbuck commented Dec 29, 2019

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

5 participants