diff options
| author | LM-LCL <hello@exaltedelite.club> | 2023-08-31 01:01:57 +0200 |
|---|---|---|
| committer | LM-LCL <hello@exaltedelite.club> | 2023-09-01 16:14:09 +0200 |
| commit | 9aa290b9667832c8ae41ed8bc36e57da7a74b9c2 (patch) | |
| tree | 532a98d4561a85952543c609e4ff7c5c45601b5a /lib/action/Clip | |
| parent | fe92c7ac827b18673e1fa89dacfca370dcfd313d (diff) | |
complete script revamp
Diffstat (limited to 'lib/action/Clip')
| -rwxr-xr-x | lib/action/Clip | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/action/Clip b/lib/action/Clip deleted file mode 100755 index d98cf0e..0000000 --- a/lib/action/Clip +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/bash - -source ./util/verify/cbd-https -source ./util/menu/deasy-core -source ./util/dpath - -url="$(is_https_url_cbd "$1")" - -from="$(deasy_core 'From (00:00/n)')" -[ -z "$from" ] && exit 0 - -to="$(deasy_core 'To (00:00/n)')" -[ -z "$to" ] && exit 0 - -filename="$(deasy_core 'Filename')" -[ -z "$filename" ] && exit 0 - -ffmpeg -n \ - -ss "$from" \ - -to "$to" \ - -i "$(yt-dlp -f b --get-url "$url")" \ - "$DPATH/$filename.mp4" - |
