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
######################################### | |
# Quick script to merge video files # | |
######################################### | |
<# | |
.SYNOPSIS | |
Concatenates a list of video files into one or multiple video files. | |
.DESCRIPTION | |
This application allows you to feed it a list of all video files to be combined and combines them to another media files with every file containing 'max' original files. | |
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
function spinner([string]$input_text = 'Press any key to continue... ') | |
{ | |
$spin="/-\|" | |
Write-Host "$input_text" -nonewline | |
$i=0 | |
while($true) | |
{ | |
Write-Host "`b$($spin.Substring($i++%$spin.Length)[0])" -nonewline | |
bash -c "read -n 1 -t 0.25 $noop" |
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
set tabstop=4 | |
set softtabstop=4 | |
set autoindent | |
set shiftwidth=4 | |
set whichwrap=<>[] | |
set mouse=a | |
set number | |
set wildmenu |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac |