NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) MVP & NMT v
« Previous 1 … 32 33 34 35 36 … 115 Next »
Transcoding with fast-forward

 
  • 0 Vote(s) - 0 Average
Transcoding with fast-forward
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#21
2007-09-06, 05:06 AM
If I start the vlc telnet session from within the folder where the srt file is, it will overlay subtitles fine with the video, and it responds perfectly to all seek controls, on synch.

The thing is that it is quite tediuos If every time I want to watch an avi file with subtitles, I need to open a command line in windows, navigate to the folder where the avi/srt files are and start vlc -I Telnet.

Vlc uses the srt of the "CURRENT DIRECTORY", not the Video Directory.

Mvallevand, since you are one of the most active members of the mvpmc project, do you think is possible that one day the mvpmc dongle contains a linux native mplayer binary ? Will it "Fit" on the mediamvp ram ?

If not, mplayer has a slave mode similar to the VLC telnet Inteface, where you can send commands. What I do not know is if mplayer can stream over http as VLC.
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#22
2007-09-06, 05:11 AM
zehd Wrote:I've had ZProcess v1 using subtitles with VLC almost from the when I brought VLC in (ZProcess 2 still doesn't use VLC)

Same name same directory, but I did have to explicitly add to the command line...

Code:
"C:\Program Files\VideoLAN\VLC\vlc.exe" "C:\TV\Video\Stargate.SG-1-S10E14-The.Shroud.avi" :sout=#transcode{vcodec=mp2v,vb=2400,scale=1,acodec=mpga,ab=192,channels=2}:standard{access=file,mux=ps,dst="C:\TV\Override\Stargate.SG-1-S10E14-The.Shroud.mpg"} :aspect-ratio="4:3" :sout-transcode-width=640 :sout-transcode-height=480 :sout-transcode-paddtop=0 :sout-transcode-paddbottom=0 :sout-transcode-paddleft=0 :sout-transcode-paddright=0 :sout-transcode-fps=29.97 :sout-ffmpeg-keyint=12 :sout-ffmpeg-strict-rc :sout-transcode-soverlay :sub-margin=22.5 :freetype-font=C:\WINDOWS\fonts\trebuc.TTF :freetype-fontsize=20 :freetype-opacity=200 :freetype-effect=2 vlc:quit

This is correct. Put the mvpmc uses linux naming so if you have to use drive letters, it won't work. For instance, If I wanted to add a dvd player to mediamvp, All I would need to do is to share my dvd rom from the vlc server, but the mvpmc sends all files to vlc as linux and "/d:/xxxx/xxxx/xxxx" does not work on VLC. That first forward slash breaks everithing.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#23
2007-09-06, 05:25 AM
fvfv Wrote:This is correct. Put the mvpmc uses linux naming so if you have to use drive letters, it won't work. For instance, If I wanted to add a dvd player to mediamvp, All I would need to do is to share my dvd rom from the vlc server, but the mvpmc sends all files to vlc as linux and "/d:/xxxx/xxxx/xxxx" does not work on VLC. That first forward slash breaks everithing.

Actually if this works all you might need to do is take what you need from zehd's command line and add this

--sub-autodetect-path=

to the vlc -I Telnet line

Martin
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#24
2007-09-06, 12:05 PM
fvfv Wrote:Mvallevand, since you are one of the most active members of the mvpmc project, do you think is possible that one day the mvpmc dongle contains a linux native mplayer binary ? Will it "Fit" on the mediamvp ram ?

The CPU in the MediaMVP does support floating point math which limits the libraries that can run on it so I haven't bothered.

Quote:If not, mplayer has a slave mode similar to the VLC telnet Inteface, where you can send commands. What I do not know is if mplayer can stream over http as VLC.

I use this interface already to play real audio and aac+ audio files, but I I have to use vlc to stream it. Because of Windows I was forced to create a temp file

Martin
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#25
2007-09-06, 05:07 PM
mvallevand Wrote:Actually if this works all you might need to do is take what you need from zehd's command line and add this

--sub-autodetect-path=

to the vlc -I Telnet line

Martin

What I am lookig from the VLC Docs and Cannot find is how to tell VLC to look on the current video folder, not on the "Current Directory". Basically the current directory is the directory where VLC was launched. (Which is coded as --sub-autodetect-path=./)
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#26
2007-09-06, 05:14 PM
fvfv Wrote:What I am lookig from the VLC Docs and Cannot find is how to tell VLC to look on the current video folder, not on the "Current Directory". Basically the current directory is the directory where VLC was launched. (Which is coded as --sub-autodetect-path=./)

I would try something like

vlc -I Telnet --sub-autodetect-path=c:\movies\avis\

Martin
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#27
2007-09-06, 05:18 PM
mvallevand Wrote:I would try something like

vlc -I Telnet --sub-autodetect-path=c:\movies\avis\

Martin

I guess I can write a little script every time I need to watch a movie with subs to lunch VLC in this manner, but I am pretty sure that the telnet interface of VLC supports something like that, so that mvpmc is the one telling VLC where the subtitles are, and it can be done automagically.

Of course, IT would need to be coded by the mvpmc VLC maintainer, which is not you right ?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,184
Threads: 958
Joined: May 2006
#28
2007-09-07, 04:40 AM
fvfv Wrote:I guess I can write a little script every time I need to watch a movie with subs to lunch VLC in this manner, but I am pretty sure that the telnet interface of VLC supports something like that, so that mvpmc is the one telling VLC where the subtitles are, and it can be done automagically.

Sorry, I have no interest in changing this since after some research it's probably a documented bug in vlc for Windows which doesn't seem to be too high on vlc's own priority list. I don't have a good source to subtitled avi files anyway.

Martin.
fvfv
Offline

Member

Posts: 131
Threads: 20
Joined: Nov 2005
#29
2007-09-07, 02:22 PM
Yep. You're right.
I just got an email back from Robin Rawson, the maintainer of mvpmc-VLC and it is indeed a VLC bug.


It might work if I can run VLC from a linux environment, like CGYWIN or something like that. Is just a problem with Unix paths vs Windows paths.

But it is definitely a very promising application. Very low on system resources and very fast in response to the Hauppauge control and on sync as well.

Thanks.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#30
2007-09-11, 12:08 AM
i just wish they'd fix the timelines in vlc...transcodes still don't have correct timelines..and it's been years...[for skipability]
they seem to be purely about streaming...very little else seems to get much attention...updates are few and far between, and don't have much difference for major releases...but what it does it does well...but it could be so much more useful if they just fixed what's there already..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (4): « Previous 1 2 3 4 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  MVP transcoding? dinki 12 9,411 2014-02-03, 09:35 PM
Last Post: mvallevand
  Will an EGreat EG-M34A or a Popcorn Hour A-110 solve my fast-forwarding issues? navyblue 4 3,787 2010-07-17, 11:26 PM
Last Post: stustunz
  Fast EPG Loading HarryH3 0 1,488 2009-01-30, 02:45 PM
Last Post: HarryH3
  MVP Transcoding drbenjamin 1 1,771 2008-12-01, 06:07 AM
Last Post: mvallevand
  MVP transcoding with TS Mux daneo 0 1,510 2008-11-09, 09:20 AM
Last Post: daneo
  No fast fwd and rewind on mvp johnnyb 1 1,562 2008-10-14, 08:02 PM
Last Post: gapgapman
  Transcoding files times out before they begin Zato 3 2,264 2008-10-13, 04:01 AM
Last Post: Zato
  Any way to automatically save MPG output file when transcoding jonrigg68 2 2,211 2008-06-27, 04:14 PM
Last Post: HtV
  MVP TS transcoding config.xml bug. BerkA 1 2,062 2008-06-07, 11:47 AM
Last Post: sub
  Transcoding causes pc to shut down jonrigg68 5 2,609 2008-06-07, 11:04 AM
Last Post: psycik

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

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

Linear Mode
Threaded Mode