Mark Knecht ha scritto:
> Hello,
>    I have a number of mp4 files that someone asked me to copy and mail
> to them. I could just do each file on a separate DVD but if possible I'd
> like to get them on a single DVD, and if possible, have the disc be
> playable on a DVD player that supports mp4 playback.
>
>    I tried the simplistic, intuitive option and just tried to write them
> using a command like
>
> cdrecord file1.mp4 file2.mp4
>
> but that failed with the message
>
> cdrecord: Virtual track 1 is not a multiple of secsize.
>
>    Where do I need to look/read/study about how to do this properly?
>
> Thanks in advance,
> Mark
>
Hello, a good place to start is cdrecord -help.
If you are on linux/unix "man -M /opt/schily/share/man cdrecord" gives 
you the manual (if you compiled from source, otherwise a mere "man 
cdrecord" will be enough). Also check
http://cdrtools.sourceforge.net/private/man/cdrecord/index.html.

Regarding your problem, I think you should burn an iso file, not the mp4 
files directly.
mkisofs -J -r -V NAME -o file.iso file1.mp4 file2.mp4 ...
Once done, cdrecord file.iso.
-J and -r add Joliet and Rockridge extensions to file.iso (for 
compatibility reasons), -V set the name to be displayed by the iso file 
(optional).
cdrecord has a lot of options (I usually pass -dao driveropts=burnfree)

I hope it helps,
-- 
Andrea Petrucci

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Cdrtools-support mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cdrtools-support

Reply via email to