News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

.dvd to .iso like it should be.

Started by geekincolorado, August 30, 2007, 07:42:05 PM

Previous topic - Next topic

geekincolorado

This is so aggravating.  Can someone please put a patch in or something that fixes this problem.  I have hundreds of DVD's that are in .iso form (which is a standard, right?) and having to rename them to .dvd is something that I should not have to do because then when I mount them with my XP laptop (work) I have to rename them back to .iso.  Can this please please be fixed ASAP!!  I love the product so far from what I have seen and it has come a long way.  Thanks!

Hagen

both .iso and .rar should be recognized, I agree

Zaerc

Here is a workaround for the .ISO issue:

sudo find /home/public/data -iname "*.iso" -exec ln -sfv '{}' '{}.dvd' \;

That should create symlinks with an added .dvd extention under /home/public/data.

To safely remove these links (and leave the real .dvd files alone):

sudo find /home/public/data -type l -iname "*.dvd" -exec rm -v '{}' \;


"Change is inevitable. Progress is optional."
-- Anonymous

[url=http://petition.stopsoftwarepatents.eu/181001941347/][/url]

kir

Zaerc, I would suggest doing this for removal:

sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;

just being a bit more paranoid :)

Zaerc

Quote from: kir on September 05, 2007, 01:59:51 PM
Zaerc, I would suggest doing this for removal:

sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;

just being a bit more paranoid :)

Paranoia is nice and all, but that's simply not going to work.  :-\
"Change is inevitable. Progress is optional."
-- Anonymous

[url=http://petition.stopsoftwarepatents.eu/181001941347/][/url]

kir

Quote from: Zaerc on September 05, 2007, 03:14:24 PM
Quote from: kir on September 05, 2007, 01:59:51 PM
Zaerc, I would suggest doing this for removal:

sudo find /home/public/data -type l -iname "*.iso" -exec rm -v '{}.dvd' \;

just being a bit more paranoid :)

Paranoia is nice and all, but that's simply not going to work.  :-\

ah, yes :) we need stripping, not appending there :) more complex shell command

Zaerc

The problem is that this find command looks specificly for symbolic links only, which the *.iso files most likely are not.  Otherwise simply appending .dvd would be correct, as that is how they were made by the other command.
"Change is inevitable. Progress is optional."
-- Anonymous

[url=http://petition.stopsoftwarepatents.eu/181001941347/][/url]

totallymaxed

Quote from: Zaerc on September 05, 2007, 04:01:30 PM
The problem is that this find command looks specificly for symbolic links only, which the *.iso files most likely are not.  Otherwise simply appending .dvd would be correct, as that is how they were made by the other command.

the .dvd rips are just .iso's.... but with a different extension. .dvd's are readable by all software that can handle .iso's in our experience.
Andy Herron,
CHT Ltd

For Dianemo/LinuxMCE consulting advice;
@herron on Twitter, totallymaxed+inquiries@gmail.com via email or PM me here.

Get Dianemo-Rpi2 ARM Licenses [url="http://forum.linuxmce.org/index.php?topic=14026.0"]http://forum.linuxmce.org/index.php?topic=14026.0[/url]

Get RaspSqueeze-CEC or Raspbmc-CEC for Dianemo/LinuxMCE: [url="http://wp.me/P4KgIc-5P"]http://wp.me/P4KgIc-5P[/url]

Facebook: [url="https://www.facebook.com/pages/Dianemo-Home-Automation/226019387454465"]https://www.facebook.com/pages/Dianemo-Home-Automation/226019387454465[/url]

[url="http://www.dianemo.co.uk"]http://www.dianemo.co.uk[/url]

Zaerc

Quote from: totallymaxed on September 06, 2007, 10:53:08 AM
Quote from: Zaerc on September 05, 2007, 04:01:30 PM
The problem is that this find command looks specificly for symbolic links only, which the *.iso files most likely are not.  Otherwise simply appending .dvd would be correct, as that is how they were made by the other command.

the .dvd rips are just .iso's.... but with a different extension. .dvd's are readable by all software that can handle .iso's in our experience.

Thanks, I was completely unaware of that...  ::)
"Change is inevitable. Progress is optional."
-- Anonymous

[url=http://petition.stopsoftwarepatents.eu/181001941347/][/url]

dopey


schaferj

Thank you all.  I just appended .dvd to my .iso files and lmce finds them. 

dvd files created by lmce ARE iso files.

so when you click on one in windows and exporer says 'type not found' just tell windows to use your favorite iso progam to play or browse the archive.

joseph