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/bash | |
#cut/join videos using ffmpeg without quality loss | |
if [ "$(uname)" == "Darwin" ]; then | |
if ! [ -x "$(command -v brew)" ]; then | |
echo 'homebrew is not installed.' | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
if ! [ -x "$(command -v ffmpeg)" ]; then | |
echo 'ffmpeg is not installed.' |
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/bash | |
################################################################################ | |
# | |
# Script name: MultiMedia Concat Script (mmcat) | |
# Author: burek ([email protected]) | |
# License: GNU/GPL, see http://www.gnu.org/copyleft/gpl.html | |
# Date: 2012-07-14 | |
# | |
# This script concatenates (joins, merges) several audio/video inputs into one |
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/bash | |
if [ -z $1 ]; then | |
echo "Usage:$0 <Apk File>" | |
exit | |
fi | |
IconPath=$(aapt d badging $1 | grep application-icon | tail -1 | cut -d ':' -f 2) | |
IconPath=${IconPath#"'"} | |
IconPath=${IconPath%$"'"} | |
echo $IconPath | |
echo $1 |