PDA

View Full Version : nvs playlist


rsee
15th April 2003, 12:12
HI i wanted to know if its possible to create a nvs playlist.I only could get one video to play at a time on my server and i wanted to know if i could either make somesort of playlist, so that i can set more than one file to play. also,is it possible to make an mppeg video to repeat its self oner again like mp3s???

Jay
15th April 2003, 12:58
from what I can tell, no, not until they release their new NSV source application. You could write your own fairly easily if you wanted to though, that's how i got mine going, but you need to know how to talk to the server.

tssf
15th April 2003, 14:24
You can do a"poor man's" nsv playlist, by creating .bat files. Here's an sample:

playlist1.bat:

:start
nvsenc /ignoredrops filename1.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename2.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename3.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename4.mpg sc:localhost:8001:headers.txt
goto start

etc etc etc.. That would make the video stream never-ending, as well.

rsee
15th April 2003, 18:37
thanks i'll try it tonight

Jay
15th April 2003, 22:48
Originally posted by tssf
You can do a"poor man's" nsv playlist, by creating .bat files. Here's an sample:

playlist1.bat:

:start
nvsenc /ignoredrops filename1.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename2.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename3.mpg sc:localhost:8001:headers.txt
nvsenc /ignoredrops filename4.mpg sc:localhost:8001:headers.txt
goto start

etc etc etc.. That would make the video stream never-ending, as well. yea that was my first attempt but this proves to be a problem because it slices the ends off of videos and generally causes buffering havoc to the viewer.