Update README

This commit is contained in:
Firstname Lastname 2019-12-30 10:18:46 +01:00
parent fec547f89b
commit 058f5a12e3
2 changed files with 5 additions and 3 deletions

View File

@ -3,6 +3,8 @@
Ydl is a simple python program that downloads youtube videos, converts them into Ydl is a simple python program that downloads youtube videos, converts them into
audio file and creates an xml file to listen to them as a podcast. audio file and creates an xml file to listen to them as a podcast.
Another project, far more advanced can be found there: https://github.com/MrS0m30n3/youtube-dl-gui
## Getting Started ## Getting Started
* Run install.sh under Debian based distribution. * Run install.sh under Debian based distribution.

View File

@ -43,9 +43,9 @@ class Interface(tk.Frame):
def create_widgets(self): def create_widgets(self):
tk.Label(self.master, padx=10,text="Youtube URL",bg="red").grid(row=0,columnspan='1') tk.Label(self.master, padx=10,text="Youtube URL",font="Helvetica 10 bold").grid(row=0,columnspan='1',sticky='W')
tk.Label(self.master, padx=10,text="Folder").grid(row=1,columnspan='1') tk.Label(self.master, padx=10,text="Folder",font="Helvetica 10 bold").grid(row=1,columnspan='1',sticky='W')
tk.Label(self.master, padx=10,text="Podcast website root").grid(row=2,columnspan='1') tk.Label(self.master, padx=10,text="Podcast website root",font="Helvetica 10 bold").grid(row=2,columnspan='1',sticky='W')
# Vars attached to args # Vars attached to args
self.youtube_url = tk.StringVar() self.youtube_url = tk.StringVar()