Jump to content

Recommended Posts

Posted

Hi all,

 

I have a DVD (school excercise) that the whole school needs to access across the network because I dont want to burn 25 copies of it only for them to end up cracked, scratched, lost or otherwise rendered unusable.

So I made a nice neat .ISO image of the dvd and used a batch file (as below) to call Daemon Tools to mount the image to the virtual DVD drive...all good so far...however I am having trouble getting it to autoplay. When the shortcut to the batch file is clicked the image mounts great but the user would then have to open My Computer and double click the virtual drive to get it to play, great for us but not for teachers or reception children. I need it to open up and play in either Media player, Nero showtime or Powerdvd when the batch file is run. Ive tried adding various switches to the end of line7 to no avail.

 

Batch is as follows:-

 

@echo off

 

title TAKE Aerobics

"c:\Program Files\D-Tools\daemon.exe" -unmount 0

"c:\Program Files\D-Tools\daemon.exe" -mount 0, "\\server01\media\Videos\TAKE_Aerobics.iso"

 

"C:\Program Files\Windows Media Player\wmplayer.exe"

 

any ideas?

Posted
Thank you nice little app, but still cant get it to autoplay. I can get it to open media player or any other DVD player after mounting the image (as my original script did) but cannot get media player to automatically select the E:\ drive (virtual drive) and play the DVD. Am I missing something that this app does that my existing batch script didnt?
Posted

you see I normally (when running an application) simply add the path to the executable at the end of the batch script, but because this is a dvd Video there is no EXE to call otherwise id create an Autorun.inf and call that from the script. I can of course add the path to the dvd player but that wont default to the virtual drive and play.

 

:confused:

Posted
you see I normally (when running an application) simply add the path to the executable at the end of the batch script, but because this is a dvd Video there is no EXE to call otherwise id create an Autorun.inf and call that from the script. I can of course add the path to the dvd player but that wont default to the virtual drive and play.

 

:confused:

 

If you had wmp classic on the clients you could do it that way then and put the path as something along the lines of

 

e:\video_ts

Posted

If you have VLC Media Player (portable or standard versions) you could use the following command to play the DVD ISO directly...

 

VLC.exe dvdsimple://\\Server01\Media\Videos\TAKE_Aerobics.iso

  • Thanks 1
Posted

Thank you the last suggestion worked, needed a little tweak to get it to play the menu instead of defaulting to the first track, apart from that worked like a charm.

 

Thank you all, much appreciated

Posted
If you have VLC Media Player (portable or standard versions) you could use the following command to play the DVD ISO directly...

 

VLC.exe dvdsimple://\\Server01\Media\Videos\TAKE_Aerobics.iso

 

You learn something new about VLC every day :) Thanks for that!

Posted
Thank you the last suggestion worked, needed a little tweak to get it to play the menu instead of defaulting to the first track, apart from that worked like a charm.

Ah yes. I forgot to mention that if you wanted VLC to start playing the DVD at the menu, you just need to remove 'simple' from the command above. :)

Posted

Just one more thing to note, when VLC starts up it give a network security screen..great for a single user but im deploying this to 100 machines used by primary school kids. I found various suggestions on changing and re-deploying the exe none of which worked, in the end went to old vesion 8.6 which doesnt have the network security screen. DVD plays perfectly on the click of the batch file with all original tracks and menus just as if it were in the drive.

 

Thanks again

Posted
Just one more thing to note, when VLC starts up it give a network security screen..great for a single user but I'm deploying this to 100 machines used by primary school kids. I found various suggestions on changing and re-deploying the exe none of which worked, in the end went to old version 8.6 which doesn't have the network security screen.

For future reference, you can disable this in the latest version of VLC by using additional switches in your batch file. i.e.

 

VLC.exe --no-qt-updates-notif --no-qt-privacy-ask --no-video-title-show --started-from-file dvd://\\Server01\Media\Videos\TAKE_Aerobics.iso

  • Thanks 1
  • 3 weeks later...
Posted

excuse my ignorance

 

Cant you just decode the DVD and rip it to a shared directory on your server or make a new directory ?

and share it as normal , im pretty sure standard Vobs can be opened with WMP.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...