From d46203fbb2c193ea8855bb6d59019f1793fbbad3 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Thu, 1 Aug 2019 17:25:35 +0200 Subject: [PATCH] Use epoch instead of weird autonumber --- royalnet/commands/play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/royalnet/commands/play.py b/royalnet/commands/play.py index 7e302d3d..bf49c742 100644 --- a/royalnet/commands/play.py +++ b/royalnet/commands/play.py @@ -13,7 +13,7 @@ if typing.TYPE_CHECKING: ytdl_args = { "format": "bestaudio", - "outtmpl": f"./downloads/%(autonumber)s_%(title)s.%(ext)s" + "outtmpl": f"./downloads/%(epoch)s_%(title)s.%(ext)s" }