This file contains 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
/* | |
This mixin exposes 4 params that allows | |
you to create any type of media query | |
@param1: first breakpoint [400px, 800px, etc] | |
@param2 (optional): type [min, max] | |
@param3 (optional): orientation [width, height] | |
@param4 (optional): second breakpoint [1200px, 1600px, etc] | |
*/ |
This file contains 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
// Cut Video Length -ss startFrom -t cutLength | |
ffmpeg -ss 30 -i input.wmv -c copy -t 10 output.wmv | |
// Cut Audio -ss startFrom -t cutLength | |
ffmpeg -ss 0 -i output.mp3 -t 30 output.mp3 | |
// Compress audio | |
ffmpeg -i input.mp3 -ab 48000 output.mp3 | |
// Cut audio starting from 10 seconds for 6 seconds |