Home
Blogs
Forums
Files


Welcome to The Green Button          Sign in | Join | Help

DVD Library coming to an Extender near you

Last post 12-17-2008, 10:41 AM by JesperH. 505 replies.
Page 5 of 34 (506 items)   « First ... < Previous 3 4 5 6 7 Next > ... Last »
Sort Posts: Previous Next
  •  04-26-2008, 7:46 AM 259044 in reply to 259041

    Re: Help - scripting newbie.....

    Emerlin:

    [\quote]

    Vista SP1 is needed for the DVD Library to work on the extenders.

    Copy and paste the scprit into notepad and save as "CreateWXV.vbs".
    (There are two constants at the top of the script that should be modified to match your environment)
    Then run "cscript CreateWXV.vbs your_DVD_folders_here", from command-prompt, run as admin.

    Then unzip the file and copy transcoder.dll into your Media Centers \Windows\Ehome folder. Then run the transcoder.reg file to import the dll registration
    [\quote]

    Richard, thanks for trying to help and make this simple.

    I have (in this order)
    1.  previously upgraded to SP1
    2.  Donwoladed the v.07 version
    3.  Copied the DLL to the ehome folder
    4.  Run the transcoder file that adjust the registy settings...
    5.  I have copied the script from the htpcug site into wordpad and saved it as createWXV.vbs
    Now I have questions....
    You mention two constrants, I assume you mean -
    >>>>>>

    'strRemoteLocation is the path that will be used in the WVX file to reference the location of the videos
    'This should be accessible via the machine that will play the WVX file
    Const strRemoteLocation = "\\server\Videos"

    'strWVXOutputFolder should be the location the WVX files should be written
    Const strWVXOutputFolder = "\\Server\Videos_MediaCenter"

    >>>>>

    My dvds are all ripped to my k:\my movies\mainmovie or k:\my movies\fulldisc folders.  Does that mean I change the fist one to Const strRemoteLocation =  "k:". 
    Do I need the quotes?  Also can I change the second one to the root of k: as well or does it need to reside somewhere specific?

    Lastly - would the script then be:  cscript createwxv.vbs k:  ?  Do I need quotes?  I assumes it should create this .wvx file on the k root?

    Sorry to ask such basic questions, but I have tried a couple of different things and am just throwing darts.  Thanks to any/all help.

    Tom



    If your ripped dvds are in k:\my movies\mainmovie then the would be Const strRemoteLocation = "k:\my movies\mainmovie" you need the quotes becuase you have a space in "k:\my movies\mainmovie".

    The second one Const "strWVXOutputFolder" will be the folder holding the WVX file(for now), after you run the script the WVX's will be in that folder.
    The wvx files will have the same name as the dvd eg: "Running scared.wvx" or "I am legend.wvx" drag and drop the WVX's files to the correct dvd folders(same place were your xml file or your folder.jpeg would be).

    Put "CreateWXV1.vbs" file in your K drive and run " cscript CreateWXV1.vbs "k:\my movies\mainmovie" " from command-prompt.

    Edit or it could be cscript CreateWXV1.vbs "k:\my movies" not sure where you put all your dvds.


    Richard Miller Media Center MVP 2006
  •  04-26-2008, 8:15 AM 259053 in reply to 259044

    Re: Help - scripting newbie.....

    Richard A Miller:
    Emerlin:

    [\quote]

    Vista SP1 is needed for the DVD Library to work on the extenders.

    Copy and paste the scprit into notepad and save as "CreateWXV.vbs".
    (There are two constants at the top of the script that should be modified to match your environment)
    Then run "cscript CreateWXV.vbs your_DVD_folders_here", from command-prompt, run as admin.

    Then unzip the file and copy transcoder.dll into your Media Centers \Windows\Ehome folder. Then run the transcoder.reg file to import the dll registration
    [\quote]

    Richard, thanks for trying to help and make this simple.

    I have (in this order)
    1.  previously upgraded to SP1
    2.  Donwoladed the v.07 version
    3.  Copied the DLL to the ehome folder
    4.  Run the transcoder file that adjust the registy settings...
    5.  I have copied the script from the htpcug site into wordpad and saved it as createWXV.vbs
    Now I have questions....
    You mention two constrants, I assume you mean -
    >>>>>>

    'strRemoteLocation is the path that will be used in the WVX file to reference the location of the videos
    'This should be accessible via the machine that will play the WVX file
    Const strRemoteLocation = "\\server\Videos"

    'strWVXOutputFolder should be the location the WVX files should be written
    Const strWVXOutputFolder = "\\Server\Videos_MediaCenter"

    >>>>>

    My dvds are all ripped to my k:\my movies\mainmovie or k:\my movies\fulldisc folders.  Does that mean I change the fist one to Const strRemoteLocation =  "k:". 
    Do I need the quotes?  Also can I change the second one to the root of k: as well or does it need to reside somewhere specific?

    Lastly - would the script then be:  cscript createwxv.vbs k:  ?  Do I need quotes?  I assumes it should create this .wvx file on the k root?

    Sorry to ask such basic questions, but I have tried a couple of different things and am just throwing darts.  Thanks to any/all help.

    Tom



    If your ripped dvds are in k:\my movies\mainmovie then the would be Const strRemoteLocation = "k:\my movies\mainmovie" you need the quotes becuase you have a space in "k:\my movies\mainmovie".

    The second one Const "strWVXOutputFolder" will be the folder holding the WVX file(for now), after you run the script the WVX's will be in that folder.
    The wvx files will have the same name as the dvd eg: "Running scared.wvx" or "I am legend.wvx" drag and drop the WVX's files to the correct dvd folders(same place were your xml file or your folder.jpeg would be).

    Put "CreateWXV1.vbs" file in your K drive and run " cscript CreateWXV1.vbs "k:\my movies\mainmovie" " from command-prompt.

    Edit or it could be cscript CreateWXV1.vbs "k:\my movies" not sure where you put all your dvds.



    Richard, thank you for your quick reply.

    FYI - K: drive holds all my moves.  They are in two folders either mainmovie or fulldisc depending on how they were ripped.  I am using DVD HD fab to rip not sure if that matters.

    Anyway, I tried to run both scritps... the screen flashed very quickly and no files were created.  I used the same folder for both constructs... k:\my movies\mainmovie.

    Thanks again for your help.  Let me know what to try next.
    Tom

  •  04-26-2008, 8:34 AM 259055 in reply to 259053

    Re: DVD Library coming to an Extender near you

    Emerlin:


    Richard, thank you for your quick reply.

    FYI - K: drive holds all my moves.  They are in two folders either mainmovie or fulldisc depending on how they were ripped.  I am using DVD HD fab to rip not sure if that matters.

    Anyway, I tried to run both scritps... the screen flashed very quickly and no files were created.  I used the same folder for both constructs... k:\my movies\mainmovie.

    Thanks again for your help.  Let me know what to try next.
    Tom



    FYI, if you're using DVD HD Fab, go into the settings (the sprocket in the top right corner) and under general, uncheck the "create files in subfolders of output directory" button.  That will get rid of the "mainmovie" folder.  Mine end up in N:\Movies\Movie_Name\VIDEO_TS.

    Also, under customize UI, I move "main movie" to the top so it automatically selects that first.  You can also choose the default audio streams in the settings.
  •  04-26-2008, 8:41 AM 259056 in reply to 259055

    Re: DVD Library coming to an Extender near you

    aeroguy:
    Emerlin:


    Richard, thank you for your quick reply.

    FYI - K: drive holds all my moves.  They are in two folders either mainmovie or fulldisc depending on how they were ripped.  I am using DVD HD fab to rip not sure if that matters.

    Anyway, I tried to run both scritps... the screen flashed very quickly and no files were created.  I used the same folder for both constructs... k:\my movies\mainmovie.

    Thanks again for your help.  Let me know what to try next.
    Tom



    FYI, if you're using DVD HD Fab, go into the settings (the sprocket in the top right corner) and under general, uncheck the "create files in subfolders of output directory" button.  That will get rid of the "mainmovie" folder.  Mine end up in N:\Movies\Movie_Name\VIDEO_TS.

    Also, under customize UI, I move "main movie" to the top so it automatically selects that first.  You can also choose the default audio streams in the settings.


    Great tip - that will save me a bunch of work...  Thanks much.
  •  04-26-2008, 5:29 PM 259121 in reply to 259056

    Re: DVD Library coming to an Extender near you

    What a fantastic hack! Thanks to all who contributed to figuring this out.

    I few things I've noticed while playing around with this...

    First, after I press the stop button while watching a movie on an extender, if I then navigate to play any other media (live tv, recorded tv, music, etc.) it plays the next item in the .wvx playlist of the movie instead of the new media I selected. I have to stop playback and then press play for it to actually play the media.

    Second, after I press the stop button while watching a movie on an extender and then navigate back to the DVD metadata screen, If I press play the movie restarts rather than continuing from where I left off. I know this is not the same thing that happens on the actual media center when in the dvd library. It continues where ever I left off instead.

    Perhaps these issues could be fixed in the .dll?
    When in doubt, reboot.
  •  04-27-2008, 4:10 AM 259177 in reply to 259121

    Re: DVD Library coming to an Extender near you

    Hello!

    I use a Xbox 360 as an extender and I've followed the instructions in the guide exactly. I also used the script to create those *.wvx playlists. My problem is now, that I don't see the DVDs in my DVD-Library on my Xbox (but I see the library, with some recorded movies).

    In the "Videos"-gallery I can see the movies and play them. It works fine, except some movies have as first language English, but I'm from Germany, so I want to watch them in german.

    I have all my movies stored in "Q:\DVDs\MOVIE_NAME\VIDEO_TS\"

    I store my playlists in the folder "Q:\DVDs\_Playlists\"

    This is a sample xvs for the movie "Hot Fuzz":

    <ASX version = "3.0">
      <Title>Hot Fuzz</Title>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_1.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_2.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_3.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_4.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_5.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_6.mpeg"/>
      </Entry>
    </ASX>

    I have a share to "Q:\DVDs\_Playlists" on my extender.

    Anybody an idea what I've done wrong? Thank you in advance!

  •  04-27-2008, 10:11 AM 259220 in reply to 259177

    Re: DVD Library coming to an Extender near you

    C-H-81:

    Hello!

    I use a Xbox 360 as an extender and I've followed the instructions in the guide exactly. I also used the script to create those *.wvx playlists. My problem is now, that I don't see the DVDs in my DVD-Library on my Xbox (but I see the library, with some recorded movies).

    In the "Videos"-gallery I can see the movies and play them. It works fine, except some movies have as first language English, but I'm from Germany, so I want to watch them in german.

    I have all my movies stored in "Q:\DVDs\MOVIE_NAME\VIDEO_TS\"

    I store my playlists in the folder "Q:\DVDs\_Playlists\"

    This is a sample xvs for the movie "Hot Fuzz":

    <ASX version = "3.0">
      <Title>Hot Fuzz</Title>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_1.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_2.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_3.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_4.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_5.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_6.mpeg"/>
      </Entry>
    </ASX>

    I have a share to "Q:\DVDs\_Playlists" on my extender.

    Anybody an idea what I've done wrong? Thank you in advance!

    Have you downloaded the referenced transcoder.dll and copied it into c:\windows\ehome, and then ran the transcoder.reg registry patch?

    -D

  •  04-27-2008, 11:08 AM 259229 in reply to 259177

    Re: DVD Library coming to an Extender near you

    C-H-81:

    Hello!

    I use a Xbox 360 as an extender and I've followed the instructions in the guide exactly. I also used the script to create those *.wvx playlists. My problem is now, that I don't see the DVDs in my DVD-Library on my Xbox (but I see the library, with some recorded movies).

    In the "Videos"-gallery I can see the movies and play them. It works fine, except some movies have as first language English, but I'm from Germany, so I want to watch them in german.

    I have all my movies stored in "Q:\DVDs\MOVIE_NAME\VIDEO_TS\"

    I store my playlists in the folder "Q:\DVDs\_Playlists\"

    This is a sample xvs for the movie "Hot Fuzz":

    <ASX version = "3.0">
      <Title>Hot Fuzz</Title>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_1.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_2.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_3.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_4.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_5.mpeg"/>
      </Entry>
      <Entry>
        <Ref href="Q:\DVDs\\Hot Fuzz\VIDEO_TS\VTS_01_6.mpeg"/>
      </Entry>
    </ASX>

    I have a share to "Q:\DVDs\_Playlists" on my extender.

    Anybody an idea what I've done wrong? Thank you in advance!

    I beleive you will need the playlist in:

    Q:\DVDs\MOVIE_NAME\"


    Ryan
  •  04-27-2008, 12:00 PM 259239 in reply to 259229

    Re: DVD Library coming to an Extender near you

    Ryan Hurst:

    I beleive you will need the playlist in:

    Q:\DVDs\MOVIE_NAME\"

    Yes correct, the *.wvx playlist should go in the dvd folder(the folder that would hold the folder.jpeg or the DVDID.XML file) for every dvd folder. (ei 10 dvds 10 playlists).


    Richard Miller Media Center MVP 2006
  •  04-27-2008, 1:43 PM 259252 in reply to 259239

    Re: DVD Library coming to an Extender near you

    @ Ryan Hurst thanks for your script you posted on http://www.htpcug.org, if would like too improve or modify the other script help is welcome :) at http://www.htpcug.org 

     


    Richard Miller Media Center MVP 2006
  •  04-27-2008, 7:11 PM 259282 in reply to 259252

    Re: DVD Library coming to an Extender near you

    I'm not getting any sound.  Any ideas?

    Thanks,

    John

  •  04-27-2008, 7:13 PM 259283 in reply to 259282

    Re: DVD Library coming to an Extender near you

    Tell us more about what your playing?

     

    If its a VOB masquerading as a MPG that can be expected.


    Ryan
  •  04-27-2008, 7:28 PM 259286 in reply to 259283

    Re: DVD Library coming to an Extender near you

    I ripped two different discs, created the symbolic links and .wvx files and both play the video nicely, but no sound.  I'm using dvdshrink to rip and nothing shows up in the AUDIO_TS folder, does that matter?  I also tried ripping the entire disc and only the main movie with select AC3 audio tracks and neither seems to work.

    On another note, has anyone verified that creating the dummy video_ts and video_ts.ifo with other file types (i.e. .wmv) works?  I tried it and am getting an error when playing.

  •  04-27-2008, 7:35 PM 259289 in reply to 259286

    Re: DVD Library coming to an Extender near you

    AUDIO_TS is expected to be empty.

    Its more likley your running into this: http://unmitigatedrisk.com/archive/2007/08/04/96.aspx

     


    Ryan
  •  04-27-2008, 7:56 PM 259292 in reply to 259289

    Re: DVD Library coming to an Extender near you

    Thanks for the link.  I actually got one of the discs to work by tweaking the audio track settings in dvdshrink.

    Anyone have any idea about using this technique to play other file types like WMV?  It would be nice to have all of my ripped DVDs and recorded movies (compress to wmvhd since dvr-ms is so big) in one place.

Page 5 of 34 (506 items)   « First ... < Previous 3 4 5 6 7 Next > ... Last »
View as RSS news feed in XML
About TGB | Advertise | Link To Us | Donate | Terms Of Use | Privacy Policy
© 2003-2007 The Green Button, Inc. - All Rights Reserved