Compare commits
6 Commits
2019-03-20
...
2019-02-20
Author | SHA1 | Date | |
---|---|---|---|
c730a5b169 | |||
b6d2c0b38b | |||
a39f4c9c51 | |||
f2a45a7ca3 | |||
61250fed0d | |||
af39e1d81e |
2
ddusb.py
2
ddusb.py
@ -8,7 +8,7 @@ import re
|
|||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
# ========== Constants ==========
|
# ========== Constants ==========
|
||||||
COMMENT_PATTERN = "^[#;]"
|
COMMENT_PATTERN = r"^[#;]"
|
||||||
EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf"
|
EXCLUDE_FILE = "/etc/helper-scripts/ddusb-exclude.conf"
|
||||||
|
|
||||||
E_BLOCKDEVICE_ERROR = 1
|
E_BLOCKDEVICE_ERROR = 1
|
||||||
|
95
dlaudio.py
95
dlaudio.py
@ -3,55 +3,72 @@
|
|||||||
|
|
||||||
Dependencies:
|
Dependencies:
|
||||||
=============
|
=============
|
||||||
|
|
||||||
* youtube-dl
|
* youtube-dl
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import pathlib
|
from pathlib import Path
|
||||||
import shutil
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
# =========== Constants ==========
|
# =========== Constants ==========
|
||||||
YOUTUBE_DL_BIN = shutil.which("youtube-dl")
|
YOUTUBE_DL_BIN = "/usr/bin/youtube-dl"
|
||||||
DEFAULT_FILENAME = f"{pathlib.Path.home()}/Music/%(title)s.%(ext)s"
|
DEFAULT_FILENAME = f"{Path.home() / 'Music'}/%(title)s.%(ext)s"
|
||||||
|
DEFAULT_YOUTUBE_DL_OPTS = (
|
||||||
# ========== Error Codes ==========
|
|
||||||
E_NOURLS = 2
|
|
||||||
|
|
||||||
# ========== Main Script ==========
|
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument("-b", "--batchfile", help="provide the links from a text file")
|
|
||||||
parser.add_argument(
|
|
||||||
"-f", "--format", type=str, default="opus", help="the format to use"
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
|
||||||
"-n", "--filename", type=str, help="downloaded filename (without extension)"
|
|
||||||
)
|
|
||||||
parser.add_argument("urls", nargs="*", help="video URLs")
|
|
||||||
args = parser.parse_args()
|
|
||||||
|
|
||||||
dl_opts = [
|
|
||||||
YOUTUBE_DL_BIN,
|
|
||||||
"--no-part",
|
"--no-part",
|
||||||
|
"--audio-quality=0",
|
||||||
"--no-continue",
|
"--no-continue",
|
||||||
"--extract-audio",
|
"--extract-audio",
|
||||||
f"--audio-format={args.format}",
|
)
|
||||||
]
|
|
||||||
|
|
||||||
# filename handling
|
# ----- Error Codes -----
|
||||||
# if -b is used, DEFAULT_FILENAME must take precedence
|
E_NOURLS = 2
|
||||||
if args.filename is not None and args.batchfile is None:
|
|
||||||
dl_opts.append(f"--output={args.filename}")
|
|
||||||
else:
|
|
||||||
dl_opts.append(f"--output={DEFAULT_FILENAME}")
|
|
||||||
|
|
||||||
# URL handling
|
|
||||||
if args.batchfile is not None:
|
|
||||||
dl_opts.append(f"--batch-file={args.batchfile}")
|
|
||||||
elif args.urls is not None:
|
|
||||||
dl_opts.extend(args.urls)
|
|
||||||
else:
|
|
||||||
print("URLs are required")
|
|
||||||
exit(E_NOURLS)
|
|
||||||
|
|
||||||
subprocess.run(dl_opts)
|
# ========== Functions ==========
|
||||||
|
def parse_cmdline_arguments(**kwargs):
|
||||||
|
"""Parse command line arguments passed to the script.
|
||||||
|
All kwargs are passed to ArgumentParser.parse_args().
|
||||||
|
|
||||||
|
:rtype: argparse.Namespace object
|
||||||
|
"""
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("-b", "--batchfile", help="provide the links from a text file")
|
||||||
|
parser.add_argument(
|
||||||
|
"-f", "--format", type=str, default="opus", help="the format to use"
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"-n", "--filename", type=str, help="downloaded filename (without extension)"
|
||||||
|
)
|
||||||
|
parser.add_argument("urls", nargs="*", help="video URLs")
|
||||||
|
|
||||||
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
|
# ========== Main Script ==========
|
||||||
|
if __name__ == "__main__":
|
||||||
|
args = parse_cmdline_arguments()
|
||||||
|
|
||||||
|
dl_opts = [
|
||||||
|
YOUTUBE_DL_BIN,
|
||||||
|
*DEFAULT_YOUTUBE_DL_OPTS,
|
||||||
|
f"--audio-format={args.format}",
|
||||||
|
]
|
||||||
|
|
||||||
|
# filename handling
|
||||||
|
# if -b is used, DEFAULT_FILENAME must take precedence
|
||||||
|
if args.filename is not None and args.batchfile is None:
|
||||||
|
dl_opts.append(f"{Path.home() / 'Music' / args.filename}.%(ext)s")
|
||||||
|
else:
|
||||||
|
dl_opts.append(f"--output={DEFAULT_FILENAME}")
|
||||||
|
|
||||||
|
# URL handling
|
||||||
|
if args.batchfile is not None:
|
||||||
|
dl_opts.append(f"--batch-file={args.batchfile}")
|
||||||
|
elif args.urls is not None:
|
||||||
|
dl_opts.extend(args.urls)
|
||||||
|
else:
|
||||||
|
print("URLs are required")
|
||||||
|
exit(E_NOURLS)
|
||||||
|
|
||||||
|
subprocess.run(dl_opts)
|
||||||
|
6
fedit.py
6
fedit.py
@ -19,6 +19,7 @@ BOOT_DIR = "/boot"
|
|||||||
ETC_DIR = "/etc"
|
ETC_DIR = "/etc"
|
||||||
|
|
||||||
# ----- Exit Codes -----
|
# ----- Exit Codes -----
|
||||||
|
E_INTERRUPT = 1
|
||||||
E_NOEDITORFOUND = 2
|
E_NOEDITORFOUND = 2
|
||||||
E_NOFILESELECTED = 3
|
E_NOFILESELECTED = 3
|
||||||
|
|
||||||
@ -200,7 +201,10 @@ if __name__ == "__main__":
|
|||||||
else locate_files(args.patterns)
|
else locate_files(args.patterns)
|
||||||
)
|
)
|
||||||
|
|
||||||
selected_file = run_fzf(files)
|
try:
|
||||||
|
selected_file = run_fzf(files)
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
exit(E_INTERRUPT)
|
||||||
|
|
||||||
if selected_file != "":
|
if selected_file != "":
|
||||||
cmd = gen_editor_cmd(selected_file)
|
cmd = gen_editor_cmd(selected_file)
|
||||||
|
@ -33,7 +33,7 @@ from termcolor import colored
|
|||||||
FD_BIN = "/usr/bin/fd"
|
FD_BIN = "/usr/bin/fd"
|
||||||
FD_OPTS = ["--hidden"]
|
FD_OPTS = ["--hidden"]
|
||||||
# Matches 'y' or 'yes' only, ignoring case
|
# Matches 'y' or 'yes' only, ignoring case
|
||||||
USER_RESPONSE_YES = "^[Yy]{1}([Ee]{1}[Ss]{1})?$"
|
USER_RESPONSE_YES = r"^[Yy]{1}([Ee]{1}[Ss]{1})?$"
|
||||||
|
|
||||||
E_NO_RESULTS = 1
|
E_NO_RESULTS = 1
|
||||||
E_USER_RESPONSE_NO = 2
|
E_USER_RESPONSE_NO = 2
|
||||||
@ -137,7 +137,7 @@ if __name__ == "__main__":
|
|||||||
for ext in args.extensions:
|
for ext in args.extensions:
|
||||||
FD_OPTS.extend(["--extension", ext])
|
FD_OPTS.extend(["--extension", ext])
|
||||||
|
|
||||||
files = {}
|
files = set()
|
||||||
for pattern in args.patterns:
|
for pattern in args.patterns:
|
||||||
cmd = [FD_BIN, *FD_OPTS, pattern]
|
cmd = [FD_BIN, *FD_OPTS, pattern]
|
||||||
files.update(
|
files.update(
|
||||||
|
Reference in New Issue
Block a user