Kimmax / Flash-dl

Flash(Youtube) Downloader using SYMM
GNU General Public License v2.0
0 stars 0 forks source link

Audio Extract #11

Closed ghost closed 8 years ago

ghost commented 8 years ago

public bool CanExtractAudio { get { return this.VideoType == VideoType.Flash; } }

So only flash is extractable... Guess this might be a problem if or when youtube decides to completely drop their flashsupport.

Does it support to extraction sound from .mp4?

Kimmax commented 8 years ago

Where did you find this? My code looks like this:

public bool CanExtractAudio
{
    get { return this.VideoType != VideoType.Unknown; }
}

We can download any format, except Video dash, because they don't have audio lol. Even audio dash works which gives us the ability to download audio only which speeds things up dramatically. Best audio I downloaded with my app is 256kbits AAC, although the video didn't offered more :sunglasses:

ghost commented 8 years ago

@Kimmax Haha sorry was looking at wrong respro haha