![]() |
Release [Module] youtube-dl - multi-site playable URL resolver - Printable Version Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Video Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=154) ---- Thread: Release [Module] youtube-dl - multi-site playable URL resolver (/showthread.php?tid=200877) |
RE: [Module] youtube-dl - multi-site playable URL resolver - SSalvatella - 2017-05-23 First, thank you very much @ruuk for the update. I'm working with the current version of youtube dl and I have a problem streaming a youtube video. The video is showing very well but there is no sound. I have checked the settings and it's seem to be all fine. The code that I'm running search a video in Youtube and show the list items with the results. When you select a item you call back the plugin to run the YDStreamExtractor to get the stream URL and run setResolvedUrl() function to play the content. The main code is: Code: # With this code the video is show perfect but without sound. What could be the issue? Thanks RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-05-23 (2017-04-23, 00:42)ruuk Wrote: Until recently it was not possible to play MPEG-DASH streams on Kodi. The addon does not yet support this and YouTube videos over 720p are MPEG-DASH only. If you limit to 720p you shouldn't have this issue. RE: [Module] youtube-dl - multi-site playable URL resolver - SSalvatella - 2017-05-23 (2017-05-23, 17:24)ruuk Wrote:(2017-04-23, 00:42)ruuk Wrote: Until recently it was not possible to play MPEG-DASH streams on Kodi. The addon does not yet support this and YouTube videos over 720p are MPEG-DASH only. If you limit to 720p you shouldn't have this issue. Setting quality to 1 (720p) result in the same issue. ![]() RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-05-23 (2017-05-23, 18:49)SSalvatella Wrote:It could be that for this video 720p is also DASH only. Try putting this in your code.(2017-05-23, 17:24)ruuk Wrote:(2017-04-23, 00:42)ruuk Wrote: Until recently it was not possible to play MPEG-DASH streams on Kodi. The addon does not yet support this and YouTube videos over 720p are MPEG-DASH only. If you limit to 720p you shouldn't have this issue. YDStreamExtractor.disableDASHVideo(True) RE: [Module] youtube-dl - multi-site playable URL resolver - SSalvatella - 2017-05-24 (2017-05-23, 19:30)ruuk Wrote:(2017-05-23, 18:49)SSalvatella Wrote:It could be that for this video 720p is also DASH only. Try putting this in your code.(2017-05-23, 17:24)ruuk Wrote: Thanks for the sugestions but it still not working... Maybe is something from Kodi? ![]() RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-05-24 Well, ultimately it's Kodi that is failing to play the sound assuming the stream URL we're pointing it to has sound ![]() RE: [Module] youtube-dl - multi-site playable URL resolver - SSalvatella - 2017-05-24 The video ID that i'm trying to see is SGyOaCXr8Lw (https://www.youtube.com/watch?v=SGyOaCXr8Lw). I put the complete code in case it could help : https://gist.github.com/ssalvatella/796079c90907dc91c6d9e0cd496e6566 v17.518.1 - ruuk - 2017-05-25 Version 17.518.1 Changes:
On Kodi repo, pending mirror updates. RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-05-25 @SSalvatella: The latest version should fix your issue. It appears some streams now have no audio and also don't mention DASH in their info so I added the setting to skip these which defaults to True. RE: [Module] youtube-dl - multi-site playable URL resolver - SSalvatella - 2017-05-25 (2017-05-25, 04:02)ruuk Wrote: @SSalvatella: The latest version should fix your issue. It appears some streams now have no audio and also don't mention DASH in their info so I added the setting to skip these which defaults to True. Thanks! Now it works. You are awesome! RE: [Module] youtube-dl - multi-site playable URL resolver - PiMONSTER - 2017-07-03 I use this addon a lot, but sometimes my internet connection drops and it stays stuck indicates downloading. Can you add an option to remove stuck downloads due to internet connection loss ? Auto resume or timeout setting. Re-adding doesn't restart downloading, only working option I found was reboot. RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-07-03 (2017-07-03, 12:06)PiMONSTER Wrote: I use this addon a lot, but sometimes my internet connection drops and it stays stuck indicates downloading.There's probably an error when this happens. A log when this happens would be helpful. RE: [Module] youtube-dl - multi-site playable URL resolver - L0RE - 2017-07-09 @ruuk Mayby you can update the youtube-dl again. I use youtube-dl for my new dailymtion addon. Since some changes it stoped working. I tried to replace script.module.youtube.dl\lib\youtube_dl witth the new Version from "youtube-dl version 2017.07.09" it has worked for Dailymtion. I if helps i could make an PR, buit i havnt tested all Funtkions RE: [Module] youtube-dl - multi-site playable URL resolver - ruuk - 2017-07-09 (2017-07-09, 23:37)L0RE Wrote: @ruuk Mayby you can update the youtube-dl again.I'll update today or tomorrow ![]() v17.709.0 - ruuk - 2017-07-11 Version 17.709.0 Changes:
On Kodi repo, pending mirror updates. |