This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
HELP="ffmpeg trimmer script made by pranshutg [email protected] | |
Usage: | |
-h --help calls this help function | |
-t --timestamps give this arg a string of times like \"60-2:00 125-130\" and it will extract those two parts | |
-i --input input file to perform operation on | |
-s --store specify directory to store trimmed clips in | |
-k --keep dont delete / keep tmp directory |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import yt_dlp | |
import sys | |
import time | |
import multiprocessing | |
""" | |
This Script also works on normal playlists | |
usage: ./<script> <playlist url> <start> <end> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
import yt_dlp | |
import sys | |
import time | |
import multiprocessing | |
""" | |
This Script also works on normal playlists | |
usage: ./<script> <playlist url> |