Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
temporary change to yt-dlp
Browse files Browse the repository at this point in the history
  • Loading branch information
azlux committed Oct 27, 2021
1 parent 100a5d6 commit 81ff7c3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/usr/bin/env bash
command=( "${@}" )

if [ "$1" == "bash" ] || [ "$1" == "sh" ]; then
exec "${@}"
fi

if [ -n "$BAM_DB" ]; then
command+=( "--db" "$BAM_DB" )
fi
Expand Down
2 changes: 1 addition & 1 deletion media/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import hashlib
import traceback
from PIL import Image
import youtube_dl
import yt_dlp as youtube_dl
import glob
from io import BytesIO
import base64
Expand Down
2 changes: 1 addition & 1 deletion media/url_from_playlist.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
import youtube_dl
import yt_dlp as youtube_dl
from constants import tr_cli as tr
import variables as var
from media.item import item_builders, item_loaders, item_id_generators
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
flask
youtube-dl
yt-dlp
python-magic
Pillow
mutagen
Expand Down
2 changes: 1 addition & 1 deletion util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import re
import subprocess as sp
import logging
import youtube_dl
import yt_dlp as youtube_dl
from importlib import reload
from sys import platform
import traceback
Expand Down

0 comments on commit 81ff7c3

Please sign in to comment.