vlc

Transcoding MJPEG to FLV or MP4

I want to transcode MJPEG stream that comes from IP camera (http://xx.yy.zz.tt:8080/video.cgi) to FLV or MP4 stream under Linux OS so that users can play the file using a web based Flash player such as Flowplayer. I discovered VLC for that purpose but I cannot figure out the exact command line string. I also need HTTP authentication fe...

Embedded VLC in VB.NET application for video Streaming

Right now I'm developing an application in VB.NET that streams video using VLC, but each time I want to stream a video I have to open a new vlc interface using a .BAT file and passing some arguments. The problem is that I need the VLC to be Embedded and stream from inside my applications. I have manage to get the vlc embedded and I can p...

[TCL] how to receive a vlc flow in a socket?

Hi, I'm developping a streaming application with tcl. I have a vlc sever that broadcast a flow in http mode. what I'm trying to do is to develop a client who will try to connect to server with a particular ip adress and port number, and then try to save the flow in a file. the code that i'm using is simple: set server localhost set sock...

I need to open several VLC clients in order to "monitor" the stream they're receiving

I want to be able to specify how many clients do I want opened, and be able to manually switch between the windows after they're opened- meaning "streaming in background" (if such a thing is possible? ) won't do here. I need to specify different inputs for the different clients as well. Additionally -and this is the part I'm totally cl...

Can't find libavcodec when running ./configure for vlc

Hi, I am trying to run './configure' for vlc on ubuntu 10.04. But it can't find libavcode libraries for some reason. I have check /usr/lib, it has the libraries, why ./configure can't find it? This is the error from './configure': checking for AVCODEC... no configure: error: Could not find libavcodec or libavutil. Use --disable-avcod...

jquery.append not working for div with id, but working for body?

I'm trying to append VLC player in an html page via jquery. I can do this with $("body").append(html), but not $("#VideoPlayer").append(html)...Is this html too complex? jQuery: $("body").append("<object classid=\"clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921\" codebase=\"http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axv...

C# with libvlc.dll

Hello, Actually, I'm not a C# programmer, but in the part of project, I needed to play RTSP stream in C# via libvlc. After googled my problem, I found this - working - example : http://libvlcnet.sourceforge.net/ and videolan.org forum's. But all of these are too complicated to understand for me. My program is supposed to be just play...

C# VLC Wrapper.

Hello!! Does anyone knows about a C# VLC 1.1 Wrapper?? I´ve found some wrappers for older versions of VLC (haven´t try them jet), but none for the new version. So if you know any, please post it. Thanks in advance!!! ...

Are there any HTTP Live Streaming clients for Windows ?

Is there a Windows player that implements the client portion of the HTTP Live Streaming RFC? This would be quite handy for testing purposes. A VLC nightly (1.2.0-git-20100811) can open some of the sample m38u playlists provided by Apple, but it treats each segment as a separate video, so I don't think VLC trunk has a full client implem...

How can I check whether an RTMP live stream is working on the server side?

I have a site where users can broadcast their own live streams. They are provided with a URL to push their stream to over RTMP. Viewers have an embedded flash player to watch each stream. I need to be able to determine whether a particular stream is broadcasting. It doesn't need to do any analysis, simply to check that there's an actu...

How to embed .wmv into html in a plugin-agnostic fashion?

Hi all, I have a follow-up to this question here: http://stackoverflow.com/questions/2185357/embedded-wmv-video-object-not-working-in-firefox-works-in-ie In response to a "Windows Media Player for Firefox Plugin" bug, I wanted to see if we could use a different plugin (e.g. VLC) to work around the problem. (The bug: WMP plugin does ...

VLC from source Ubuntu Lucid

hey guys i'm getting and error when compile VLC from source using ubuntu lucid configure: error: Could not find libavcodec or libavutil. I have isntall both of the -dev packages for the requeired libs but still get the same error ...

VLC Python EventManager callback type?

I'm having trouble attaching an event handler to tell when a song has finished playing when using the VLC Python bindings. The event_attach function is complaining about the callback type. def __init__(self): self.vlc = vlc.Instance() self.vlc_playlist = self.vlc.media_list_new() self.vlc_player = self.vlc.media_list_player_...

Can ffmpeg or vlc be used to stream IP camera video ?

If so please provide an example.Just a simple example that doesn't refer manufacturer SDK is enough for me, I just need an example to get started, and I don't hope it to work for all cameras. ...

How to pass command or argoman to a process in java

Hi all I want to run a program called VLC in java. I created it's process by Runtime. I don't know how to pass commands to this process. Also VLC program can be controlled via command line. I want to set a Port and IP address to VLC program listen to streaming data. Every process in java has InputStream and OutputStream. Runti...

VLC Python binding and event manager

Hi everyone, I'm using libVLC with python's bindings to embeded streams in a GTK Socket; I've got a class Player for VLC: class Player(gtk.Socket): def __init__(self, id): gtk.Socket.__init__(self) def loadfile(self, filename, wid): filename=filename.replace("\"","") p=vlc.MediaPlayer(filename.strip()) ...

How can I present live audio data (updating buffer) as an audio file in C

Hi I am recieving live audio as floating points in an updating array. I want this live data to present as a file that can b read by vlc media player. Can someone guide me how can I do that in C language? /mudassar ...

how to control VLC by java

Hi all I want to run a program called VLC in java and control it while running, for example if user clicked on pause or fast forward button, I do a specific suitable action. I run VLC by this code : try{ Runtime rt = Runtime.getRuntime(); Process p = rt.exec(VLCProgramAddFile + " udp://@:" + listeningP...

Instant messenger streaming with libVLC python wrapper

I'm trying to develop an instant messenger client that supports video streaming. I am working with the libVLC wrapper for Python. Most basic functions of an IM client are already there, my problem comes with the video streaming. I've been able to do basic tests like streaming a video and playing it in a tkinter form with my own code. But...

Streaming of different video scenes to the iPad

Hi, as a background: I am developing an application for the iPad where users can browse videos that are provided by us. When a user picks a video it will then launch an MPMoviePlayerController - which works fine (besides I get no video for the first 10 seconds, of which I have no idea why). Now, users should be able to search for speci...