Streaming a file at a different speed?
Posted: 11 Dec 2008 23:32
All,
I'd like to be able to stream a saved file but at different playback speeds depending on a user's input (for example 1x, 2x, 4x, etc.). Right now I have the following which only does 1x:
which works great. I thought maybe by transcoding and setting the frames/second value I could force it to playback at different speeds (assuming a standard video is recorded at something around 30 frames/second). Here's what I've tried:
Unfortunately this didn't result in any type of change (it still streams the video fine and I can still view it, it's just that there's no difference between a setting of fps=15, fps=30, or fps=120). Two questions:
- Is it even possible to stream a file back at a different speed?
- If so, I figure you've got to transcode the video. Am I close in my setup?
By the way, I'm using VLC 0.8.6d on Windows XP.
Thanks for the help,
Dave
I'd like to be able to stream a saved file but at different playback speeds depending on a user's input (for example 1x, 2x, 4x, etc.). Right now I have the following which only does 1x:
Code: Select all
"setup playback01 output #duplicate{dst=std{access=http,mux=ts,dst=<some playback URL>}}"
Code: Select all
setup playback01 output #transcode{vcodec=mp4v,fps=120,scale=1}:duplicate{dst=std{access=http,mux=ts,dst=<some playback URL>}}
- Is it even possible to stream a file back at a different speed?
- If so, I figure you've got to transcode the video. Am I close in my setup?
By the way, I'm using VLC 0.8.6d on Windows XP.
Thanks for the help,
Dave