Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support
Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support
Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support
Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support Windows 7, Vista & Linux Media Center Support


Go Back   Australian Media Center Community > XP Media Center 2005 > XP Media Center 2005 - Plugins & Addons

Community Information

Reply
 
Thread Tools
Old 30th December 2007, 08:29 PM   #1 (permalink)
MC Apprentice
 
Zonared's Avatar
Status Zonared is Offline:
ActivityPosts: 13
Reputation & Thanks Support Rating:
Zonared
Points Earned: 10

Zonared has been Thanked 0 times in 0 posts
Lightbulb Using Treason's file browser to mount iso DVDs

I was wondering if I could reconfigure the awesome file browser to mount iso DVD images, which inturn will automatically start playing in MCE.

All you need is to allow .iso file types and make 'file browser' open a virtual drive program, could be anyone like Alcohol 120% or a deamon mounter whichever works for me.

I tried changing 'file browser' to display .iso but trying to open in MCE results in file type invalid video format or something.

Any ideas, thanks.
  Reply With Quote
Old 30th December 2007, 08:33 PM   #2 (permalink)
 
dgaust's Avatar
Status dgaust is Online:
Location Wollongong, NSW
ActivityPosts: 3,063
Reputation & Thanks Support Rating:
dgaust dgaust dgaust dgaust dgaust dgaust dgaust dgaust dgaust
Points Earned: 1229

dgaust has been Thanked 479 times in 428 posts
dgaust's
Media Center
Re: Using Treason's file browser to mount iso DVDs

I haven't used treason's app, but for mounting iso's you could use mymounter

It even allows DVD covers to be displayed (if they are given the same filename as the iso)

edit: Oops, sorry I thought this was in the vista section. This is a vista only plugin.
__________________
Abit Fatal1ty F-190HD | Quad Core Q6600 2.4Ghz | 2GB Kingston DDR2 667 | Asus 8500GT | WD 250GB, Samsung 500GB | SPDIF Out | Pioneer BDC-S02BK Blu-Ray | DigitalNow Dual Hybrid S2 | Vista Ultimate | Antec Fusion v2

Asus M3N78 Pro | AMD 4850e | 2GB Kingston DDR2 800 | 6x500gb Samsung | DVD-RW | DigitalNow Dual Digital PCI-E | Vista Ultimate | Antec 4U22EPS650

Sign the myEPG petition. Go on, you know you want to.....
  Reply With Quote
Old 31st December 2007, 09:25 AM   #3 (permalink)
MC Apprentice
 
Zonared's Avatar
Status Zonared is Offline:
ActivityPosts: 13
Reputation & Thanks Support Rating:
Zonared
Points Earned: 10

Zonared has been Thanked 0 times in 0 posts
Re: Using Treason's file browser to mount iso DVDs

I forgot to add that I have tried 'My Movies' which I could not get to work properly and was not very intuitive, at least for my needs anyway. All I would like is the ability to mount iso files within the MCE interface via the remote not keyboard and mouse.

Ultimately I would like to have an MCE interface for DVDshrink that would be cool, but I would be very happy with just mounting iso's.
  Reply With Quote
Old 4th January 2008, 08:08 PM   #4 (permalink)
MC Apprentice
 
Zonared's Avatar
Status Zonared is Offline:
ActivityPosts: 13
Reputation & Thanks Support Rating:
Zonared
Points Earned: 10

Zonared has been Thanked 0 times in 0 posts
Exclamation Re: Using Treason's file browser to mount iso DVDs

Hello everyone,

For those of you running MCE2005 like me, cause I didnt like Vista's wierdness I have modified the file browser to automatically mount iso images. Hope you dont mind Treason.

Process is as follows:
-Install the file browser as normal
-Edit the browser.html file normally located in C:\Program Files\MCE File Browser
-Somewhere in the doSelect function add
if (tester == "iso")
{
tester = oCurFocus.id;
tester = tester.substring(3, tester.length);
tester = unescape(tester);
checkParentalControls(4); strUrl = tester;
}
-At the bottom of the LoadFiles function add this (Note: you could change img src=):

if (ext == "iso") {
document.write("<tr><td><span id='iso" + MyPath + escape(file.name) + "' class='drv' MCFocusable='true'><img src='Images/music.gif' width='34' height='34'>&nbsp;&nbsp;" + txt + "</span></td></tr>");
}
Last but not least add this to the playMedia function:[indent]

if ((ext == "mp3") || (ext == "wav"))
{
window.external.MediaCenter.PlayMedia(1,strUrl)
}
else
{
if(ext == "iso")
{
WshShell = new ActiveXObject("WScript.Shell");
OpenImage = '"c:\\program files\\alcohol soft\\alcohol 120\\axcmd"'+ "n: /m:" + strUrl
WshShell.Run(OpenImage);
}
else
{
window.external.MediaCenter.PlayMedia(2,strUrl)
}
}
Now all this hinges on the fact that you are running Alcohol virtual DVD drive but this could easily work for any mounting program, simply change the 'OpenImage' link to point to whichever is your favorite program.

Good luck...
(Note: The playlist does not work yet, you'll have to modify code to get that to work, havent gotten to that yet. Just happy to be able to mount DVD images without having to resort to keyboard and mouse.)
  Reply With Quote
Old 14th January 2008, 12:51 PM   #5 (permalink)
MCE Journeyman
 
Treason's Avatar
Status Treason is Offline:
ActivityPosts: 155
Reputation & Thanks Support Rating:
Treason Treason
Points Earned: 173

Treason has been Thanked 9 times in 6 posts
Re: Using Treason's file browser to mount iso DVDs

Nice Job Zonared

I never thought of using WScript, theoretically you could open any executable this way. Powerful stuff. Out of frustration I never went back to finish MCE file browser 2.0. Now you have sparked my interest again

I hate vista too btw... MCE 2005 is perfect for me.
__________________
Stuff I wrote for Media Center
  Reply With Quote
The following Member(s) said "Thank You!" to Treason for this information:
Old 20th January 2008, 01:23 PM   #6 (permalink)
MC Apprentice
 
Zonared's Avatar
Status Zonared is Offline:
ActivityPosts: 13
Reputation & Thanks Support Rating:
Zonared
Points Earned: 10

Zonared has been Thanked 0 times in 0 posts
Re: Using Treason's file browser to mount iso DVDs

Thanks Treason,

All we need now is to access DVDshrink via command line so I can ripDVD without keyboard, its not just the keyboard and mouse is because I'm using a CRT which is hard to see small text. I looked into DVD shrink and it doesnt support command line input, is there another way to rip DVD's? I dont need to recompress them so maybe Nero?

Anyway looking forward to the updated version of file browser.

Thanks again,

Zonared
  Reply With Quote
Old 1st February 2008, 11:33 AM   #7 (permalink)
MCE Apprentice
No Avatar
Status C-Nut is Offline:
ActivityPosts: 10
Reputation & Thanks Support Rating:
C-Nut
Points Earned: 5

C-Nut has been Thanked 0 times in 0 posts
Re: Using Treason's file browser to mount iso DVDs

Quote:
Originally Posted by Treason View Post
Out of frustration I never went back to finish MCE file browser 2.0. Now you have sparked my interest again
Thanks for a great app treason. It's great to hear ur taking interest in it again! I'm sure heaps of ppl use it! I certainly highly recommend it.
  Reply With Quote
Reply

Bookmarks

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
Non-Media Centre Question (Photoshop) GlenR The Ettamogah Pub 2 13th September 2007 01:39 PM
SUPER: Free video converter for Windows, what a beauty!!! bella Vista Media Center - The Software 5 15th July 2007 05:43 PM
Guide: Beating CRC Errors when Ripping DVDs gruntLOL Vista Media Center - The Software 2 6th July 2007 07:38 PM
FusionHDTV spanout Other Hardware - XPMCE 11 12th March 2006 01:11 PM
Archiving DVDs for use on Extender Mike Media Center News 0 25th March 2005 09:10 AM


Advertisers




Terms Of Service - Contact Us - Advertise With Us - Archive - Privacy Statement - FAQ
Microsoft©, Windows XP©, Windows XP Media Center© & Windows Vista© are registered trademarks of Microsoft Corporation.
www.xpmediacentre.com.au has no relationship with, nor is affiliated in any way with Microsoft Corporation.
All original content on this website © 2004 - 2008 xpmediacentre.com.au, All rights reserved
Forum by vBulletin Version 3.7.3 - Copyright Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.2.0 RC7
Local time now is 06:17 PM AEDT.