script.module.youtube.dl
script.module.youtube.dl copied to clipboard
⛔️ DEPRECATED: Access to youtube-dl stream extraction in an XBMC module
(This repository is marked deprecated, but it seems to be the only place to open issues) The addon https://github.com/firsttris/plugin.video.sendtokodi added support for both youtube-dl and yt-dlp due to the problems...
Hi, Since I upgraded to Kodi 19 & the newest version of Youtube-dl I have been unable to use it to download videos as I did in the past. Clicking...
Using your module as a module within other addons results sometimes in a datetime attribute error. 2020-08-12 20:50:49.142 T:3709 INFO : script.module.youtube.dl: _getYoutubeDLVideo() failed::getVideoInfo (383) - type object 'datetime' has...
lib/yd_private_libs.util.py uses the constant xbmc.LOGNOTICE which has been removed.
In file **script-module-youtube-dl-options_dialog.xml** this statment: **IntegerGreaterThan(Window(10000).property(XBMCJsonRAFifoQueue_download.queue.size),0)** seems not to work
Using your module as a module within other addons results sometimes in a datetime attribute error. `2020-08-12 20:50:49.142 T:3709 INFO : script.module.youtube.dl: _getYoutubeDLVideo() failed::getVideoInfo (383) - type object 'datetime' has...
I'm trying to use `script.module.youtube.dl` in my own plugin like this: `addon.xml` ``` ``` And then in my python file: ``` from YDStreamExtractor import getVideoInfo info = getVideoInfo(id, 1) ```...
The following python script works fine, but in the Kodi 18.3 got `AttributeError: xbmcout instance has no attribute 'isatty'` ``` ydl = youtube_dl.YoutubeDL({'outtmpl': '%(id)s%(ext)s'}) with ydl: result = ydl.extract_info( 'https://www.bbc.com/persian/media-49522521',...
error when importing YDStreamExtractor Kodi 18.5
I'm currently working on making my Kodi plugins to work with Python 3 (see https://kodi.tv/article/attention-addon-developers-migration-python-3). It is suggested to make all the plugins/scripts compatible with both, Python 2 and Python...