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 | |
| SOURCE=$1 | |
| OUTPUT=$2 | |
| ffmpeg -i $SOURCE -c copy -an $OUTPUT |
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
| #!/usr/bin/env bash | |
| SOURCE=$1 | |
| OUTPUT=$2 | |
| ffmpeg -i $SOURCE -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=2800 -shortest $OUTPUT |
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
| 'use strict'; | |
| console.log('Loading transcoding Lambda function'); | |
| const config = { | |
| pipeline_id: process.env.pipeline_id, | |
| hls_1080_id: process.env.hls_1080_id, | |
| hls_720_id: process.env.hls_720_id, | |
| hls_480_id: process.env.hls_480_id, | |
| hls_360_id: process.env.hls_360_id, |
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
| # =================================================================================================== | |
| # GIT | |
| alias s="git status" | |
| alias d="git diff HEAD" | |
| alias a="git branch -a" | |
| alias ru="git remote update origin --prune" | |
| # =================================================================================================== |