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
| ##This gist is for GNU/PSPP syntaxes | |
| To work with syntaxes; go to "File --> New --> Syntax" |
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 | |
| ffmpeg -i $1 -i $2 -c:v copy -c:a copy 1.merged.mp4 |
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 [[ $# = 1 ]];then | |
| filename="$(basename "$1")" | |
| extention="${filename##*.}" | |
| filename="${filename%.*}" | |
| path=$(dirname $1) | |
| ffmpeg -i $path/$filename.$extention -acodec libmp3lame $path/$filename.audio.mp3 | |
| ffmpeg -i $path/$filename.$extention -an $path/$filename.video.mp4 | |
| else | |
| echo 'parameter error!' |
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 | |
| cd Genel/rtl* | |
| make | |
| sudo make install | |
| sudo modprobe -rv rtl8723be | |
| sudo modprobe -v rtl8723be |
NewerOlder