From 4ef1ff7aa4c1d132a48bf91845682d0ebfc05184 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 3 Aug 2019 20:39:57 +0200 Subject: [PATCH] Fix ffmpeg bug --- royalnet/commands/dlmusic.py | 2 +- royalnet/commands/play.py | 2 +- royalnet/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/royalnet/commands/dlmusic.py b/royalnet/commands/dlmusic.py index 9296d077..3507f97d 100644 --- a/royalnet/commands/dlmusic.py +++ b/royalnet/commands/dlmusic.py @@ -7,7 +7,7 @@ from ..audio import YtdlVorbis ytdl_args = { "format": "bestaudio", - "outtmpl": f"./downloads/%(epoch)s_%(title)s.%(ext)s" + "outtmpl": f"./downloads/%(title)s.%(ext)s" } diff --git a/royalnet/commands/play.py b/royalnet/commands/play.py index 6336e2ed..1537feaa 100644 --- a/royalnet/commands/play.py +++ b/royalnet/commands/play.py @@ -11,7 +11,7 @@ if typing.TYPE_CHECKING: ytdl_args = { "format": "bestaudio", - "outtmpl": f"./downloads/%(epoch)s_%(title)s.%(ext)s" + "outtmpl": f"./downloads/%(title)s.%(ext)s" } diff --git a/royalnet/version.py b/royalnet/version.py index 29da4ff7..3873b692 100644 --- a/royalnet/version.py +++ b/royalnet/version.py @@ -1 +1 @@ -semantic = "5.0a34" +semantic = "5.0a35"