NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) ZTools and UltraXMLTV v
« Previous 1 2 3 4 5 6 … 12 Next »
ZProcess: Using VLC for DVD transcoder

 
  • 0 Vote(s) - 0 Average
ZProcess: Using VLC for DVD transcoder
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,820
Threads: 954
Joined: May 2006
#1
2008-11-18, 05:23 AM
Frank, I don't know if you can interface to vlc but this will create a mvp compatible mpeg from an encrypted dvd D: is my drive dst is the destination. I was using it with mvpmc native interface for a while and it works ok. You can add it as a custom task if it is setup properly.

Code:
vlc dvdsimple://D: --sout=#transcode{vcodec=mp2v,vb=2048,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file,mux=ps,dst="c:\temp\movie.mpg"}} -I dummy --dummy-quiet

Martin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#2
2008-11-18, 05:57 AM
mvallevand Wrote:Frank, I don't know if you can interface to vlc but this will create a mvp compatible mpeg from an encrypted dvd D: is my drive dst is the destination. I was using it with mvpmc native interface for a while and it works ok. You can add it as a custom task if it is setup properly.

Code:
vlc dvdsimple://D: --sout=#transcode{vcodec=mp2v,vb=2048,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file,mux=ps,dst="c:\temp\movie.mpg"}} -I dummy --dummy-quiet

Martin


Thanks. I'll look into that... I've used VLC in the old ZProcess, might be time again...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#3
2008-11-19, 12:19 AM
mvallevand Wrote:Frank, I don't know if you can interface to vlc but this will create a mvp compatible mpeg from an encrypted dvd D: is my drive dst is the destination. I was using it with mvpmc native interface for a while and it works ok. You can add it as a custom task if it is setup properly.

Code:
vlc dvdsimple://D: --sout=#transcode{vcodec=mp2v,vb=2048,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=file,mux=ps,dst="c:\temp\movie.mpg"}} -I dummy --dummy-quiet

Martin

That is very slick. I'm hoping to include subtitle support and some over scan underscan support for 4x3 frames too. I think that I gave up on VLC because it was giving me trouble in that regard.

What version of VLC are you running and would consider stable, to recommend to users...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#4
2008-11-19, 12:39 AM
zehd Wrote:That is very slick. I'm hoping to include subtitle support and some over scan underscan support for 4x3 frames too. I think that I gave up on VLC because it was giving me trouble in that regard.

What version of VLC are you running and would consider stable, to recommend to users...

An old copy of ZProcess1, which used VLC, answered my questions


Wow!
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,820
Threads: 954
Joined: May 2006
#5
2008-11-19, 04:03 AM
Version .9 is not good for this 86i is ok, as are many other older versions.

One thing you might also want to try for fun if you ever use mvpmc is to see how direct streaming works. I could tweak things to give you full vlc navigation to move back and fourth through the file etc.

Here's a dumb example to give you an idea. In mvpmc exit emulation mode to the filebrowser and go to the mvpmc web browser and add an entry an new playlist entry with an url to your server

http://xx.xx.xx.xx:5212

Then save this file as dvd.vlm in the vlc folder

Code:
new mvpmc broadcast enabled
setup mvpmc input "dvdsimple://D:"
setup mvpmc output #transcode{vcodec=mp2v,vb=4096,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=http,mux=ts,dst=:5212}}
setup mvpmc option sout-http-mime=video/mpeg
control mvpmc play

The run this command line
vlc -I Telnet --vlm-conf dvd.vlm

From the mvpmc file browser navigate to default.m3u and select you new playlist entry.

After you have stop, kill the vlc task.

Martin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#6
2008-11-19, 05:22 PM
mvallevand Wrote:Version .9 is not good for this 86i is ok, as are many other older versions.

One thing you might also want to try for fun if you ever use mvpmc is to see how direct streaming works. I could tweak things to give you full vlc navigation to move back and fourth through the file etc.

Here's a dumb example to give you an idea. In mvpmc exit emulation mode to the filebrowser and go to the mvpmc web browser and add an entry an new playlist entry with an url to your server

http://xx.xx.xx.xx:5212

Then save this file as dvd.vlm in the vlc folder

Code:
new mvpmc broadcast enabled
setup mvpmc input "dvdsimple://D:"
setup mvpmc output #transcode{vcodec=mp2v,vb=4096,scale=1,acodec=mpga,ab=192,channels=2}:duplicate{dst=std{access=http,mux=ts,dst=:5212}}
setup mvpmc option sout-http-mime=video/mpeg
control mvpmc play

The run this command line
vlc -I Telnet --vlm-conf dvd.vlm

From the mvpmc file browser navigate to default.m3u and select you new playlist entry.

After you have stop, kill the vlc task.

Martin

So that text file would be generated with aspect ratios (overscan ostioning etc) and saved into the VLC folder. And when I I exit and start VLC, it would auto play the DVD?

I think I have that...

How would I be able to do that for Non MPEGS on a case by case. Like in GB-PVR when in Video Library. Not all torrents and rips are the same size and apsect, so it's nice to have ZProcess calculate the dimensions...

Maybe I could selct a video to play in VIdeo Library, ZProcess would do it's thing but also save a customized VLC script saved to VLC folder. I could get out of the video in GB-PVR, go out of emulation mode and start the video again with VLC streaming, but be able to fly around the playback position....

Can you think of any thing else?
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#7
2008-11-19, 05:38 PM
Or maybe a PreProcessing command MVPMC could call to ZProcess...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,820
Threads: 954
Joined: May 2006
#8
2008-11-19, 05:43 PM
Anything that you want as standard parameters could be added on the command line when the session is started. Also there is no need to go out of emulation mode to do this, I would just not be able stream the file via Hauppauge protocol.

Martin
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#9
2008-11-24, 08:30 AM
I do have a couple of problems using VLC to create a temp MPG for on the fly DVD viewing...

The docs suck.

I'd like to normalize the ac3 audio. The resulting audio is nasty quiet. But that's 'AC3 to 2 Channels' for you...

And supposedly it won't work on a DVD-ROM drive that has been shared to a network... I wonder if there's a workaround for that... (though, I suppose the MVP server should have a DVD-ROM drive, shouldn't it... Big Grin )
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  problems installing zprocess on windows 7 64 bit bertros 3 6,484 2010-04-16, 05:17 PM
Last Post: bertros
  zProcess and Windows Home Server grits 3 6,823 2010-03-07, 06:06 AM
Last Post: zehd
  zProcess ffmpeg "Incorrect frame size" meccano 3 6,020 2010-02-01, 02:46 PM
Last Post: zehd
  zprocess in postprocessing.bat alevideotestservice 2 3,011 2009-12-22, 07:01 PM
Last Post: alevideotestservice
  zprocess... to work or not to work... medic29 26 10,136 2009-11-04, 05:54 PM
Last Post: zehd
  Zprocess & MVP: Can I watch DVD´s yet? Knobby 5 3,216 2009-11-02, 07:10 PM
Last Post: zehd
  Zprocess postprocessing ? Dufcoum 13 6,287 2009-08-19, 10:15 PM
Last Post: Dufcoum
  ZPROCESS: Audio sloooooow on MVP goobie 5 3,271 2009-08-18, 01:34 PM
Last Post: zehd
  MVP+Zprocess: Avi plays with audio only, no video goobie 3 2,990 2009-07-10, 08:01 PM
Last Post: zehd
  Can you clarify functionality of ZProcess please Elmo Putney 4 3,549 2009-03-23, 09:37 PM
Last Post: Elmo Putney

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode