Compare commits

..

No commits in common. "a862f5c5e30461efee778cd4a5a4776b18ccfe78" and "6b8ba34610afd9ba738663844344c075cb44e7b5" have entirely different histories.

5 changed files with 4 additions and 5 deletions

View file

@ -0,0 +1 @@
/usr/share/mpv/scripts/mpv-thumbnail-script-client-osc.lua

View file

@ -0,0 +1 @@
/usr/share/mpv/scripts/mpv-thumbnail-script-server.lua

View file

@ -1 +0,0 @@
/usr/share/mpv/scripts/mpv_thumbnail_script_client_osc.lua

View file

@ -1 +0,0 @@
/usr/share/mpv/scripts/mpv_thumbnail_script_server.lua

View file

@ -322,7 +322,7 @@ class RVElement:
self.clean_file(".", self.basename)
def clean(self) -> None:
if self.is_researched and self.is_video:
if self.is_video:
self.undownload()
log.info(f"Removing gone metadata: {self.sid}*")
self.clean_file(self.parent.METADATA_FOLDER, self.sid)
@ -473,8 +473,7 @@ class RVDatabase:
@property
def ytdl_opts(self) -> dict:
# Get user/system options
_, _, _, ydl_opts = yt_dlp.parse_options([""])
# Have to put a dummy option otherwise yt-dlp will use sys.argv
_, _, _, ydl_opts = yt_dlp.parse_options()
return ydl_opts
@property