Find the answer to your Linux question:
Results 1 to 3 of 3
hi im trying to turn vobs files (video_ts and audio_ts) into a iso so i kan burn them as dvds with k3b - i have been tryin to use mkisofs ...
  1. #1
    Just Joined!
    Join Date
    Aug 2005
    Posts
    10

    dvd VOB please help

    hi im trying to turn vobs files (video_ts and audio_ts) into a iso so i kan burn them as dvds with k3b - i have been tryin to use mkisofs but it simply just does not work! i get errors like this :
    mkisofs: No such file or directory. Faild to open /home/sam/dvd/dvd//VIDEO_TS/VIDEO_TS.IFOmkisofs: Can't open VMG info for '/home/sam/dvd/dvd/'.
    mkisofs: Unable to parse DVD-Video structures.
    mkisofs: Unable to make a DVD-Video image.
    sam@tuxbox:/$ mkisofs -dvd-video -o /home/sam/dvd/dvd/mydvd.img /home/sam/dvd/dvdINFO: UTF-8 character encoding detected by locale settings.
    Assuming UTF-8 encoded filenames on source filesystem,
    use -input-charset to override.
    mkisofs: No such file or directory. Faild to open /home/sam/dvd/dvd//VIDEO_TS/VIDEO_TS.IFOmkisofs: Can't open VMG info for '/home/sam/dvd/dvd/'.
    mkisofs: Unable to parse DVD-Video structures.
    mkisofs: Unable to make a DVD-Video image.


    or

    mkisofs: No such file or directory. Faild to open /home/sam/.Trash//VIDEO_TS/VIDEO_TS.IFO
    mkisofs: Can't open VMG info for '/home/sam/.Trash/'.
    mkisofs: Unable to parse DVD-Video structures.
    mkisofs: No such file or directory. Can't stat /home/sam/.Trash/VIDEO_T
    mkisofs: Can't open device '/home/sam/.Trash/VIDEO_T'
    mkisofs: Unable to parse DVD-Video structures.
    mkisofs: No such file or directory. Faild to open /home/sam/dvd//VIDEO_TS/VIDEO_TS.IFO
    mkisofs: Can't open VMG info for '/home/sam/dvd/'.
    mkisofs: Unable to parse DVD-Video structures.
    mkisofs: Unable to make a DVD-Video image.

    so is there another way of doing it with out mkisofs?????

    if there is help would be GREATLY appreaciated thanks

  2. #2
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Here is the way I do it:

    Code:
    mkisofs -pad -J -R -oYourDVD.iso -graft-points "/AUDIO_TS=/path/to/AUDIO_TS" "/VIDEO_TS=/path/to/VIDEO_TS"
    Of course your replace YourDVD.iso with the name of the DVD you want to create.

    As well, replace /path/to with the path to the AUDIO_TS or VIDEO_TS directories.

    Code:
    man mkisofs
    for more...

    Make sure your Video files have read and execute permission on them (for user, group and others). So
    Code:
    chmod -R 555 /path/to/dvdfiles
    first.

    So
    Code:
    ls -l
    should give you those permissions prior to creating the image:

    mastah@killah:/mnt/iso$ ls -l
    total 4
    dr-xr-xr-x 2 mastah mastah 2048 2006-02-09 00:43 AUDIO_TS
    dr-xr-xr-x 2 mastah mastah 2048 2006-02-09 00:43 VIDEO_TS

    Have fun!
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  3. #3
    Just Joined!
    Join Date
    Oct 2006
    Posts
    1
    thanks, this solved my problem too

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •