Batbold Dashzeveg

Results 5 comments of Batbold Dashzeveg

ITag parser appears to be working correctly: ```python import urllib2 import urlparse id = 'NTHz9ephYTw' url = "http://www.youtube.com/get_video_info?&video_id="+ id body = urllib2.urlopen(url).read() query = urlparse.parse_qs(body) stream_map = query['url_encoded_fmt_stream_map'][0] stream_map_query =...

Looks like ITag numbers are hard coded in https://github.com/rylio/ytdl/blob/master/format.go#L81 file. The returned `['22', '43', '18', '36', '17']` tags are available formats that YouTube currently has for the specific video. The...

Sorry for the trouble. I'll look into porting the project to macOS when I have time. Thanks!

Hi, what is your ```$ go env``` output?

```GOOS=darwin``` is not supported yet. I started a branch ```libsoundio-port``` for porting ```beep``` to MacOS but it didn't go well. I need use the native audio support instead of using...