Skip to content

Commit

Permalink
Mitigated #2
Browse files Browse the repository at this point in the history
  • Loading branch information
hillt03 committed Dec 17, 2019
1 parent f1f6c9a commit 0137297
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ colorama==0.4.3
pafy==0.5.5
python-vlc==3.0.7110
youtube-dl==2019.11.28
VLCYT==1.2
VLCYT==1.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="VLCYT",
version="1.2", # update VLCYT version in requirements as well
version="1.3", # update VLCYT version in requirements as well
description="Stream your YouTube playlist in VLC behind the scenes from the command line.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions vlcyt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ def _play_current_song(self):

self._reset_state()
# Play song
song_url = self.current_song.getbestaudio().url_https
self.vlc_player.set_mrl(song_url)
song_url = self.current_song.getbestaudio().url
self.vlc_player.set_mrl(song_url, ":no-video")
self.vlc_player.play()
if not self.input_thread_started:
self.cmds.input_thread.start()
Expand Down

0 comments on commit 0137297

Please sign in to comment.