1
0
This repository has been archived on 2023-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
youtube-dl-subscriptions/dl.py

54 lines
1.3 KiB
Python
Raw Normal View History

2015-05-11 21:22:27 -07:00
import opml
import feedparser
import youtube_dl
from glob import glob
from pprint import pprint
from time import time, mktime, strptime
from datetime import datetime
if len(glob('last.txt')) == 0:
f = open('last.txt', 'w')
f.write(str(time()))
print('Initialized a last.txt file with current timestamp.')
f.close()
else:
f = open('last.txt', 'r')
content = f.read()
f.close()
outline = opml.parse('subs.xml')
ptime = datetime.utcfromtimestamp(float(content))
ftime = time()
urls = []
for i in range(0,len(outline[0])):
urls.append(outline[0][i].xmlUrl)
videos = []
for i in range(0,len(urls)):
print('Parsing through channel '+str(i+1)+' out of '+str(len(urls)), end='\r')
feed = feedparser.parse(urls[i])
for j in range(0,len(feed['items'])):
timef = feed['items'][j]['published_parsed']
dt = datetime.fromtimestamp(mktime(timef))
if dt > ptime:
videos.append(feed['items'][j]['link'])
if len(videos) == 0:
print('Sorry, no new video found')
else:
print(str(len(videos))+' new videos found')
ydl_opts = {}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(videos)
f = open('last.txt', 'w')
f.write(str(ftime))
f.close()