You are not logged in.
Hi,
I am just making a quick script to convert and burn an avi to dvd. I am just using the basic cli tools, but need to create the.xml file.
The script has already changed to the directory i want to be in, and a just need to create a text file with about 10 lines of text in!
I need to make a fike called dvd.xml and it contain the following;
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="video.mpg" />
</pgc>
</titles>
</titleset>
</dvdauthor>
thanks
2007 - Started using Arch Linux as my only/main OS
- Samsung Series 3, Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz - 8Gb DDR3 ram - 700Gb HDD
On board intel Graphics & Sound
Offline
cat << _END_ > dvd.xml
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="video.mpg" />
</pgc>
</titles>
</titleset>
</dvdauthor>
_END_
Offline
thanks for that mate! new it would be simple ish!!
2007 - Started using Arch Linux as my only/main OS
- Samsung Series 3, Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz - 8Gb DDR3 ram - 700Gb HDD
On board intel Graphics & Sound
Offline