Update README
This commit is contained in:
parent
fec547f89b
commit
058f5a12e3
|
@ -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.
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Reference in New Issue