Dvdselect writedvd.sh

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Zeile 1: Zeile 1:
<pre>
+
#!/bin/sh
#!/bin/sh
+
#
#
+
# dvdselect_writedvd.sh - v.0.1
# dvdselect_writedvd.sh - v.0.1
+
#
#
+
# source: [[dvdselect-plugin]]
# source: vdr-plugin dvdselect
+
#
#
+
# 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
+
</pre>
+
  
 
[[Kategorie:Scripts]]
 
[[Kategorie:Scripts]]

Version vom 26. Dezember 2004, 13: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