Dvdselect writedvd.sh
Aus VDR Wiki
(Unterschied zwischen Versionen)
Zeile 1: | Zeile 1: | ||
− | + | #!/bin/sh | |
− | #!/bin/sh | + | # |
− | # | + | # dvdselect_writedvd.sh - v.0.1 |
− | # dvdselect_writedvd.sh - v.0.1 | + | # |
− | # | + | # source: [[dvdselect-plugin]] |
− | # source: | + | # |
− | # | + | # This script will by called by the vdr-plugin dvdselect to copy a DVD to |
− | # This script will by called by the vdr-plugin dvdselect to copy a DVD to | + | # write a dvd iso image. |
− | # write a dvd iso image. | + | # |
− | # | + | # It gets the following parameter: |
− | # It gets the following parameter: | + | # |
− | # | + | # $1 = filename of the iso file |
− | # $1 = filename of the iso file | + | |
− | + | echo "dvdrecord -eject -v dev=0,0,0 speed=4 -dao $1" | at now | |
− | echo "dvdrecord -eject -v dev=0,0,0 speed=4 -dao $1" | at now | + | |
− | + | ||
[[Kategorie:Scripts]] | [[Kategorie:Scripts]] |
Version vom 26. Dezember 2004, 12:31 Uhr
#!/bin/sh # # dvdselect_writedvd.sh - v.0.1 # # source: dvdselect-plugin # # This script will by called by the vdr-plugin dvdselect to copy a DVD to # write a dvd iso image. # # It gets the following parameter: # # $1 = filename of the iso file echo "dvdrecord -eject -v dev=0,0,0 speed=4 -dao $1" | at now