Opensource Streaming Server application?
I am looking for opensource Streaming server. I have played around VLS/VLC before. Have any of you used Darwin from Apple? Are there any other options available? ...
I am looking for opensource Streaming server. I have played around VLS/VLC before. Have any of you used Darwin from Apple? Are there any other options available? ...
I'm trying to use JVLC but I can't seem to get it work. I've downloaded the jar, I installed VLC and passed the -D argument to the JVM telling it where VLC is installed. I also tried: NativeLibrary.addSearchPath("libvlc", "C:\\Program Files\\VideoLAN\\VLC"); with no luck. I always get: Exception in thread "main" java.lang.Unsati...
I'm preparing to build a social networking web site that should have some form of webconferencing. First of all uploading should - if possible- be web-based. I want to make use of standard webcams probably in conjuction with a flash app that will upload the video stream. The server then will broadcast the stream together with storing it...
Hello! I've used the VideoLAN VLC ActiveX Plugin 2 (available in the VLC 0.9.4 installation) in my VB.NET App. I've noticed that: The controller toolbar (seek bar, control buttons, volume) do NOT appear at all Even after playing a file And the "Toolbar" property cannot be set to TRUE, read-only? So my questions are: Is the "Toolb...
I am working on a project that allows for video streaming or video-on-demand. I've looked for software packages and VLC looks like an excellent choice for low cost needs. In order to really work with this application I need an API that can communicate with the system. After doing some research there were some bindings via PHP and Java b...
I was in a project where I must be able to play almost audio/video files (format). The requirements: Video: .dat (vcd & svcd) .vob (dvd) .rmvb (real media) .mp4 (mpeg4/x264/h264) .wmv/.asf (windows media) .avi (xvid/divx/mpeg2,etc...) .mkv (matroska, optional) Audio: .mp3 (you probably know this) .ogg (vorbis) .wma (windows media) ...
Hello guys, I've a C# program generating JPEG images in realtime, i need to (continuously) generate a video from the images and stream it (also in realtime). I've used ffmpeg to transcode an input video source and stream it, doesn't ffmpeg have an option to get the input as a set of images(always being generated) and make the video out ...
Hello guys, I'm building a C# application that continuously takes screenshots of the screen. While I'm taking the screenshots, I want to stream them using vlc. Any ideas of how can I send the bitmaps to vlc for streaming? tks in advance Jose ...
Hello, i'm trying to control the VLC Media Player from C#. I tried getting a handle on the window with the FindWindow() command from .Net but as i found out the name of the window changes every time a file is played. The biggest problem i have is sending wm_commands to vlc..This approach worked with Winamp and Windows Media Player but wi...
Hello Guys, I 've a stream of Jpegs images and I'm trying to stream them with HTTP to VLC The code if the following: public HttpListenerResponse StartListening(String where) { listener = new HttpListener(); listener.Start(); Console.WriteLine("listening on " + where); listener.Prefixes.Add(where); ...
Hello guys, I'm generating a MJpeg Stream and trying to stream it to VLC and play it there. The code: public void SendMultiPartData(String contentType, Func<byte[]> getData) { MemoryStream mem = null; response.StatusCode = 200; for ( byte[] buffer = getData(); buffer != null && buffer.Length > 0; buf...
Hey everyone! I'm working on a video streaming application, where compatibility has so far been limited to Windows and IE (though it seems to work well enough on Firefox as well) I have been tasked to get it to work on Macs, and in the future Unix as well, but I figure that if I get Macs to work, UNIX will follow. We're using a Windo...
The MPEG-4 file format allows multiple streams to be present in a file. This is useful for videos containing audio in multiple languages. In the case of such a video, the audio streams are synchronized to the video. Is it possible to create a MPEG-4 file the contains desynchronized audio streams, i.e. the audio track are played on afte...
hi i'm wondering can php do this take this for example, if your not sure what im trying to explain :p this is a example setup /var/www/ this is where all the php etc files folders are /var/www/sdata/ is where the videos are with same name as the output thumbs /var/www/thumbs/ same name-example.jpg thumb how can i use php to display vi...
I'm looking for a GPL-compatible solution for playing a video file in a Windows Forms control, specifically with the OGG Theora codec? I was looking into using the VLC player library. A Google search found this library on CodeProject, but it was apparently deleted. Is there a mirror or a similar library available? ...
I've got a Sony network camera (SNC-RZ25N) that I am trying desperately to get data from in some meaningful format. The documentation says it sends MPEG-4 raw data, but is not more specific than than. I can capture a segment of the stream using curl ( http://techhead.biz/media/tsv.m4v ) and it will play using VLC and ffplay (though it pl...
I'm almost there! I'm successfully pulling my MPEG-4 ES content from my SNC-RZ25N webcams and transcoding it to H.264 within VLC using a VLM configuration file. Unfortunately, my available outputs don't include RTMP, so I still require one more step to publish to FMS. I am thinking of writing some code using the Red5 libraries which coul...
I need to send keypresses from my application window to libvlc, how do i do that? I tried using varSetInteger but then i got the following error error: ‘var_SetInteger’ was not declared in this scope so i searched for the file in which var_SetInteger was defined and found that it was defined in vlc_variables.h so in included it and got...
I'm writing an application that handles metadata for images and all kinds of animations, so I'm looking for a way to find basic info about an animation file, e.g: length (in minutes/seconds/frames) aspect ratio of pixels resolution of individual frames framerate Right now, I let my program execute mplayer -identify animfile.avi an...
I'm sure others have run into this problem too... I often watch videos in a small VLC window while working on other tasks, but no matter where the window is placed, I eventually need to access something in the GUI behind it, and have to manually reposition the video window first. This could be solved by having the VLC window snap to an...