tutorials:bash_scripting:part4
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:bash_scripting:part4 [2012/06/17 12:55] – rmiles | tutorials:bash_scripting:part4 [2017/10/12 21:58] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
// | // | ||
+ | |||
+ | |||
---- | ---- | ||
+ | |||
The previous tutorials were on the short side. Heres one to make up for my brevity :^) If something is unclear check those other tutorials to see if it is explained there. For more insight into the use of any of the commands below check out the man page. | The previous tutorials were on the short side. Heres one to make up for my brevity :^) If something is unclear check those other tutorials to see if it is explained there. For more insight into the use of any of the commands below check out the man page. | ||
+ | |||
+ | |||
I often save movies and documentaries for viewing later and sometimes I want to burn them onto a DVD to share with family and friends. In order to burn the show I crop anything extra before and after plus remove any commercials in the middle. I use gopdit http:// | I often save movies and documentaries for viewing later and sometimes I want to burn them onto a DVD to share with family and friends. In order to burn the show I crop anything extra before and after plus remove any commercials in the middle. I use gopdit http:// | ||
- | I can use a a short one command script to save me the trouble of remembering (and typing) a very long // | + | |
+ | |||
+ | I can use a a short one command script to save me the trouble of remembering (and typing) a very long // | ||
+ | |||
+ | |||
< | < | ||
- | total 8849532 | + | total 8796992 |
- | -rwx------ | + | -rwx------ |
-rwx------ 1 rick root 3937532284 Jan 12 2011 hidden-blade.mpg | -rwx------ 1 rick root 3937532284 Jan 12 2011 hidden-blade.mpg | ||
</ | </ | ||
+ | |||
+ | |||
In order to save the time and bother of encoding and shrinking separately I can do them both in the same script. Here's what it looks like | In order to save the time and bother of encoding and shrinking separately I can do them both in the same script. Here's what it looks like | ||
- | < | + | |
+ | < | ||
#################################################################### | #################################################################### | ||
# con2vob | # con2vob | ||
Line 33: | Line 46: | ||
# Encode video. | # Encode video. | ||
- | mencoder | + | mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd: |
-vf scale=720: | -vf scale=720: | ||
- | -lavcopts vcodec=mpeg2video: | + | -lavcopts vcodec=mpeg2video: |
- | keyint=15: | + | -o encoded-$input_file |
- | -o encoded-$input_file | + | |
# Shrink video (if necessary). | # Shrink video (if necessary). | ||
file_size=`ls -s encoded-$input_file | file_size=`ls -s encoded-$input_file | ||
- | |||
if [ $file_size -gt $dvd_size ]; then | if [ $file_size -gt $dvd_size ]; then | ||
- | requant_factor=`echo " | + | requant_factor=`echo "scale=2; |
- | vamps -e $requant_factor -a 1 < encoded-$input_file > shrunk-encoded-$input_file | + | vamps -v -E $requant_factor -a 1 < encoded-$input_file > shrunk-encoded-$input_file |
fi | fi | ||
- | + | ||
- | # End of script. | + | # End of script.</ |
- | | + | |
In this script the video is assigned to the variable // | In this script the video is assigned to the variable // | ||
+ | |||
+ | I use mencoder (from MPlayer)for encoding my videos. The command options in the script are provided in the MPlayer manual //**7.8. Using MEncoder to create VCD/ | ||
+ | |||
+ | |||
The output of // | The output of // | ||
+ | |||
+ | |||
The linux operating systems use a block size of 1024 bytes, i.e.1kb. I want the script to shrink the video if the video exceeds 4.2gb and 4,400,000kb equals 1.19gb, close enough for me. | The linux operating systems use a block size of 1024 bytes, i.e.1kb. I want the script to shrink the video if the video exceeds 4.2gb and 4,400,000kb equals 1.19gb, close enough for me. | ||
+ | |||
+ | |||
I will need to compare the size of // | I will need to compare the size of // | ||
+ | |||
+ | |||
< | < | ||
- | -rwx------ 1 rick root 5068703744 | + | -rwx------ 1 rick root 5070583808 |
bash-4.1$ ls -s encoded-hidden-blade.mpg | bash-4.1$ ls -s encoded-hidden-blade.mpg | ||
- | 4949908 | + | 4951744 |
bash-4.1$ ls -s encoded-hidden-blade.mpg | bash-4.1$ ls -s encoded-hidden-blade.mpg | ||
- | 4949908 | + | 4951744 |
</ | </ | ||
- | Bash will do simple math but for floating point math I have to use //bc//. The requant factor (read shrink factor) is found by dividing the file size by my set limit of 4,400,000kb which will result in a decimal. In this usage the equation is piped to //bc// using an //echo// command. | ||
- | < | + | |
+ | Bash will do simple math but for floating point math I have to use //bc//. The requant factor (read shrink factor) is found by dividing the file size by my set limit of 4,400,000kb which will result in a decimal. In this usage the equation is piped to //bc// using an //echo// command. The parameter //scale=X// cab be passed to bc to limit the number of decimal places printed to stdout. | ||
+ | |||
+ | |||
+ | |||
+ | < | ||
> echo " | > echo " | ||
- | 1.12497909090909090909 | + | 1.12539636363636363636 |
+ | |||
+ | bash-4.1$ file_size=`ls -s encoded-hidden-blade.mpg | ||
+ | > echo " | ||
+ | 1.12 | ||
</ | </ | ||
+ | |||
+ | |||
The vamps command syntax might seem a bit different. It uses redirection for input and output files. | The vamps command syntax might seem a bit different. It uses redirection for input and output files. | ||
+ | |||
< | < | ||
- | The // | ||
- | Here are the results when con2vob | + | The // |
+ | |||
+ | |||
+ | |||
+ | Here are the results when con2vob | ||
< | < | ||
- | total 13274848 | + | total 13196704 |
-rwx------ 1 rick root 3937532284 Jan 12 2011 hidden-blade.mpg | -rwx------ 1 rick root 3937532284 Jan 12 2011 hidden-blade.mpg | ||
- | -rwx------ 1 rick root 4531521536 | + | -rwx------ 1 rick root 4505305088 |
- | -rwx------ 1 rick root 5068703744 | + | -rwx------ 1 rick root 5070583808 |
- | bash-4.1$ ls -1 -sSr | + | |
- | total 13274848 | + | bash-4.1$ ls -sSr -1 |
+ | total 13196704 | ||
3845248 hidden-blade.mpg | 3845248 hidden-blade.mpg | ||
- | 4425316 | + | 4399712 |
- | 4949908 | + | 4951744 |
</ | </ | ||
- | The video file // | + | |
+ | |||
+ | The video file // | ||
+ | |||
+ | |||
---- | ---- | ||
+ | |||
**the same script with functions** | **the same script with functions** | ||
+ | |||
---- | ---- | ||
+ | |||
+ | |||
In programming a // | In programming a // | ||
+ | |||
+ | |||
The syntax for a function in a bash script is: | The syntax for a function in a bash script is: | ||
+ | |||
< | < | ||
+ | |||
{ | { | ||
+ | |||
commands......... | commands......... | ||
+ | |||
)</ | )</ | ||
+ | |||
or alternatively: | or alternatively: | ||
+ | |||
< | < | ||
+ | |||
{ | { | ||
+ | |||
commands........ | commands........ | ||
+ | |||
}</ | }</ | ||
+ | |||
+ | |||
Functions are called by invoking their names in a script and they must be listed in the script before they are called. | Functions are called by invoking their names in a script and they must be listed in the script before they are called. | ||
- | My //con2vob// script listed above is too short to require functions but it will serve as a good example of how to use functions as well as serve as the core of a more complex script that also burns DVDs which I will introduce in Part 5 of this series. | ||
- | //Con2vob// comprises | + | |
+ | My //con2vob// script listed above is too short to require functions but it will serve as a good example of how to use functions. | ||
+ | |||
+ | |||
+ | // | ||
< | < | ||
#################################################################### | #################################################################### | ||
Line 137: | Line 202: | ||
encode_video() | encode_video() | ||
{ | { | ||
- | mencoder | + | mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd: |
-vf scale=720: | -vf scale=720: | ||
- | -lavcopts vcodec=mpeg2video: | + | -lavcopts vcodec=mpeg2video: |
- | keyint=15: | + | -o encoded-$input_file |
- | -o encoded-$input_file | + | |
} | } | ||
shrink_video() # | shrink_video() # | ||
{ | { | ||
- | file_size=`ls -s encoded-$input_file | + | file_size=$(ls -s encoded-$input_file |
if [ $file_size -gt $dvd_size ]; then | if [ $file_size -gt $dvd_size ]; then | ||
- | requant_factor=`echo " | + | requant_factor=$(echo "scale=2; |
- | vamps -e $requant_factor -a 1 < encoded-$input_file > shrunk-encoded-$input_file | + | vamps -v -E $requant_factor -a 1 < encoded-$input_file > shrunk-encoded-$input_file |
fi | fi | ||
} | } | ||
Line 159: | Line 224: | ||
shrink_video | shrink_video | ||
- | # End of script.</ | + | # End of script. |
+ | </ | ||
+ | In this script two variable declarations are listed first. The variable // | ||
+ | Note that I have changed the notation when I use stdout from a command to assign a value to a variable. The use of backticks, e.g. // | ||
+ | It is possible to do math in Bash if the numbers involved are all integers. In such instances you must use double quotes. | ||
+ | |||
+ | < | ||
+ | bash: 8-2: command not found | ||
+ | |||
+ | bash-4.1$ result=$(8-2) ; echo " | ||
+ | bash: 8-2: command not found | ||
+ | |||
+ | bash-4.1$ result=$((8-2)) ; echo " | ||
+ | 6 | ||
+ | </ | ||
+ | |||
+ | In // | ||
+ | |||
+ | In **Part 5** of this series I will present a script that encodes shrinks and burns to a DVD. It is a little more complicated so it is a good example to show how handy functions can be in both planning and writing a script. | ||
+ | |||
+ | ---- | ||
+ | //There are gui programs out there which will do exactly what my con2vob script does but how many mouse clicks, how much time and how much memory does it take? I started scripted encoding and burning when I had a server for printer and file shares that also had a dvb card on board so saved movies and docos would be availble to any client on demand. Encoding takes a long time and is resource intensive but it didn't matter to a headless box with memory to spare and it could be done any time, day or night. It was just a matter of ssh' | ||
+ | |||
+ | I//'m not running that server now but I still prefer to do this sort of thing with scripts. I only use it on saved DVB broadcasts so the settings can remain the same. I either run con2vob with //nice// and go about doing something else or else run it when I go to bed or walk out the door and let the machine shut itself down when it is finished.// | ||
+ | |||
+ | ---- | ||
- | **in progess** | + | **Cheers!** |
tutorials/bash_scripting/part4.1339901754.txt.gz · Last modified: 2017/10/12 21:58 (external edit)