Python Forum
How to get python to download YouTube videos in the background?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to get python to download YouTube videos in the background?
#11
(Mar-24-2019, 05:33 PM)samsonite Wrote: Further info needs. Which command I've to add to download one single file .mp4 coming from this choice?
Example will download in 720 quality:
import youtube_dl

def my_hook(d):
    if d['status'] == 'finished':
        print('Done downloading ...')

# bestvideo[height<=?1080]+bestaudio/best
# bestvideo+bestaudio/best
ydl_opts = {

    'format': 'bestvideo[height<=?720]+bestaudio/best',
    'outtmpl': '%(title)s.%(ext)s',
    'noplaylist' : True,
    'progress_hooks': [my_hook],
}

with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://www.youtube.com/watch?v=d8OI9FllKfg'])
Same as command line.
youtube-dl -f 136 https://www.youtube.com/watch?v=d8OI9FllKfg
Reply
#12
Found the way ... a couple of minutes later -> http://imgbox.com/918gjjnO
Thx
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  python multiprocessing to download sql table mg24 5 1,473 Oct-31-2022, 03:53 PM
Last Post: Larz60+
  download with internet download manager coral_raha 0 2,940 Jul-18-2021, 03:11 PM
Last Post: coral_raha
  How to make a bot in pycharm for youtube for automatically adding python comments kodek2222 1 2,059 Jan-21-2021, 12:47 PM
Last Post: Aspire2Inspire
  download pubmed PDFs using pubmed2pdf in python Wooki 8 5,464 Oct-19-2020, 03:06 PM
Last Post: jefsummers
  How can I download Python files from GitHub? bitcoin10mil 2 2,828 Aug-26-2020, 09:03 PM
Last Post: Axel_Erfurt
  win32 API: Launch Application to RDP session from background process python script rangeshgupta 0 2,140 May-28-2020, 09:41 PM
Last Post: rangeshgupta
Big Grin python download manager with progressbar (not gui) ghostblade 1 1,922 Apr-23-2020, 11:05 AM
Last Post: snippsat
  Python Download GillietheSquid 2 2,025 Mar-27-2020, 09:15 PM
Last Post: GillietheSquid
  How to check if video has been deleted or removed in youtube using python Prince_Bhatia 14 11,756 Feb-21-2020, 04:33 AM
Last Post: jehoshua
  How to background another process in Python? Kalet 2 2,499 Oct-21-2019, 05:17 AM
Last Post: newbieAuggie2019

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020