scripts to cut #video clips
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
#!/usr/bin/env bash | |
### cut a slient clip of film using mencoder | |
mencoder -nosound -ss $1 -endpos $2 -ovc copy -o $3 $4 |
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
#!/usr/bin/env bash | |
### cut a silent clip of a rmvb film using mencoder | |
# your mplayer should be able to play rmvb | |
mencoder -nosound -ss $1 -endpos $2 -ovc lavc -lavcopts vcodec=mpeg4 -o $3 $4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment