PDA

View Full Version : [ubuntu] nullsoft video


rfrayer
January 11th, 2009, 10:02 PM
hello im not sure if i posted in the right area but here goes anyways. I installed winamp via wine and it works fairly flawless with shoutcast dsp etc.

what im trying to figure out is if there is a way to convert some videos i have intil nsv format to stream them.

rylleman
January 12th, 2009, 12:28 PM
My ffmpeg claims to support the nsv format so it should probably be as easy as "ffmpeg -i input_file.end output_file.nsv".

FakeOutdoorsman
January 12th, 2009, 04:54 PM
NSV can be decoded by ffmpeg (vp3 video, mp3 audio), but it can't encode it:
ffmpeg -formats | grep nsv
D nsv NullSoft Video format
ffmpeg -formats | grep vp3
D V vp3
The "D" indicates that the format/codec can be decoded. An "E" would indicate encoding ability.

rylleman
January 14th, 2009, 07:58 AM
Oh, sorry. Just ignore my answer then.