Skip to content

Instantly share code, notes, and snippets.

@erickyun
erickyun / merge-mp4.sh
Created March 22, 2022 22:05 — forked from palaniraja/merge-mp4.sh
Bash script to merge all mp4 videos in current directory (recursively 2 levels). It also updates the chapter marks to retain the folder/filename of source dir
#!/bin/bash
## Script to merge all mp4 videos in current directory (recursively 2 levels)
## And update chapter marks to retain the folder/filename
## Script for merging videos
filename=`basename pwd`
current=`pwd`
@erickyun
erickyun / ytdl-clip-bash-script-v1.sh
Last active September 4, 2022 13:43 — forked from Ryu1845/clip.sh
Download only part of a youtube video
#!/data/data/com.termux/files/usr/bin/bash
echo "Enter URL here:"
read URL
echo "Enter START_TIME here:"
read START_TIME
echo "Enter END_TIME here:"
read END_TIME