LibVLC is the external programming interface of the VLC media player. It is used to embed VLC into other applications or frameworks.

learn more… | top users | synonyms

3
votes
1answer
28 views

Creating audio visualizer using libvlc

I am trying to create a audio wave visualizer using libvlc. Have searched the net thoroughly but was unable to find any help. It would be really great if anyonce can help me out here. Thanks in ...
0
votes
0answers
9 views

streaming V4L device to website/native application

I am looking for a way to stream a V4L device directly to a user's application (only one user per stream, no audio). The streaming should be low latency (just a few milliseconds). Client Operating ...
1
vote
0answers
30 views

How to save video stream using VLC in commandline?

I'm trying to save online video using VLC in command line on Window 7 Basic. Here are few things I tried and worked partially: I:\movies> vlc ...
0
votes
0answers
12 views

Libvlc BegPoint and endPoint in Ruby

Can I call libvlc in ruby or otherwise to play a video/audio from from a specific start point to end point?
0
votes
0answers
25 views

Switch media while streaming with libVLC.

streamer.py import vlc # libVLC import time class Streamer(): def __init__(self): self.Instance = vlc.Instance() sout = ...
3
votes
1answer
117 views

LibVLC tutorial without SDL?

I am trying to write a video frame by frame to a *.yuv file and found this tutorial about rendering a video into an SDL surface. Now I'm not exactly sure how to use this code without the SDL ...
6
votes
2answers
230 views
+200

Saving a stream while playing it using LibVLC

Using LibVLC, I'm trying to save a stream while playing it. This is the python code: import os import sys import vlc if __name__ == '__main__': filepath = <either-some-url-or-local-path> ...
4
votes
1answer
146 views

Writing video file and simultaneously playing it

In my fun project, I'm downloading video file from youtube, and writing to a file on local disk. Simultaneously I want to play it. The objective is to cache the file on local disk, so that when I want ...
0
votes
0answers
46 views

Playing incomplete files using libvlc or vlc on Android

I'm trying to play incomplete videos on Android using libVLC. LibVLC is embedded into my app - http://wiki.videolan.org/AndroidCompile. The videos are being downloaded from some external resource. I ...
0
votes
0answers
54 views

Using libVLC as a video decoder

I'm attempting to use libVLC as a video decoder for a motion detection project. Previously I was using ffmpeg libraries, but some issues with Matroska files brought me here. Along with playing video ...
1
vote
0answers
42 views

Libvlc - minimal files (functions) set for streaming out

My application is for system administrators. One of the most needed features - is remote desktop monitoring. First way - is to grab screenshots and send them to admin. Second way - more interesting - ...
0
votes
0answers
27 views

How to process the frame before display in VLC media library

I'm using VLC library to create a simple media player, the program will display instructions above the video. These instructions are varying in position, size and color. I need to process the video ...
1
vote
1answer
65 views

libvlc: how to snap a frame at any time

Now my method is: libvlc_video_set_callbacks //set the lock,unlock,display callback functions libvlc_media_player_set_position //goto the snap time libvlc_media_player_play //start playing then in ...
0
votes
0answers
38 views

Why is there a significant delay in the response of the VLC Player Com Component?

I added the VLC Player Component into my VB.Net project, then into the Toolbox and added an instance onto my form. I then added three buttons and used the following code: Public Class FormPlayer ...
0
votes
0answers
26 views

How to output 5.1 surround on OS X with libvlc?

I am trying to get my app written to use libvlc to output surround (AC3 5.1) over an HDMI sound device. The HDMI device is called "HDMI" in the Audio Devices in OSX. I have tried using ...
0
votes
1answer
114 views

libvlc stream part of screen

I want to stream a part of screen using vlc library. I wrote a small example: #include <iostream> #include <cstdlib> #include <vlc/vlc.h> int main(int argc, char**argv) { ...
0
votes
1answer
52 views

using libvlc_video_set_format_callbacks to transcode videos frame by frame

I am trying to write a small program in C++ that transcodes a video frame by frame, and I am using the functions libvlc_video_set_callbacks and libvlc_video_set_format_callbacks to achieve this. The ...
0
votes
1answer
105 views

How do you seek in VLC 2.0.6 in C#

I am using a VLC 2.0.6 ActiveX control in a Visual Studio 2012 windows application. I figured out how to load and play a basic video using the following code: ...
0
votes
1answer
74 views

Logo appears for only a second and then disappears

I am trying to display a logo on top of a video played with libvlc (2.0.2). I tried to find some documentation, but I had no luck. Here is the best attempt I could come up with: ...
0
votes
1answer
133 views

AxVLCPlugin2 cant play video file

I am using 2 vlc libraries AxAXVLC and AXVLC. So I can add vlc control in my c# winform application. In this application I can play rtsp video stream by just add play list and call tha API play. ...
0
votes
0answers
142 views

Play audio and video at the same time with libvlc (C and sdl)

I have compiled the LibVLC SampleCode SDL (the one at the top) from the VLC wiki on windows and it works, but only without sound. When I remove this line, which is obviously responsible: ...
1
vote
0answers
64 views

Error while using a COM component in winform

I'm building a Winform application on c# .net 4. I'm trying to use a VLC plugin as a toolbox COM component. The component is successfully added into the toolbox. However, when I use it there is an ...
1
vote
0answers
11 views

vlc filedump issue

I want to generate a large video file to test my encoder application stability for longer duration. I am using vlc to generate video file. I have given a 10 min video file as input to vlc. I have ...
0
votes
0answers
66 views

Adding DLLs to Class Path

I have the following requirement:- 1. A java library which will be common across a number of project which has a set of DLLs. I use below code to load dlls into class path static { ...
0
votes
1answer
51 views

Dynamically Change the resolution of playing video using VLCJ

String mrl= "rtsp://"XX.XX.XX.XX"/axis-media/media.amp?videocodec=h264&resolution=720x480"; I play the video using mediaPlayer.playMedia(mrl); It works great. But now I want to dynamically change ...
3
votes
2answers
148 views

libvlc vmem access violation

I in my project use paslibvlc to get a video from ip camera that streaming in h.264. I need to get a snapshots from this stream and try to use vmem for it. My project is written in delphi 7. When I ...
2
votes
1answer
166 views

libvlc and sout option

I would like to use the sout option in libvlc like in the corresponding command line: vlc rtsp://address --sout '#duplicate{dst=display,dst=standard{access=file,mux=ts,dst=/tmp/go.mpg}}' but ...
1
vote
0answers
271 views

libvlc “VLC is unable to open the MRL 'C:\Users\Public\Videos\Sample Videos\Wildlife.mwv'”

I am writing a PySide Python application that interfaces with VLC. Works just fine running on Ubuntu, but when I move to Windows, I can't even get VLC to open a video file. I trimmed the VideoLAN ...
0
votes
0answers
125 views

libvlc: Caching file and seek issues

I have a player that uses libvlc to play youtube files and it plays fine. Problem is it does not cache file and when I pull slider to the previous position (let say to position 0sec it starts to ...
1
vote
0answers
61 views

libvlc 0.8 take a screenshot in C#

I need to take a screenshot of the video in the C# application using libvlc 0.8. The function that takes a screenshot looks the following way: libvlc_video_take_snapshot( libvlc_input_t *p_input, ...
0
votes
1answer
140 views

pygtk vlc player does not play next track

I'm writing a small custom player based on libvlc. I've used much of the code from https://github.com/hartror/python-libvlc-bindings/blob/master/examples/gtkvlc.py that plays a single track just like ...
0
votes
0answers
87 views

AxVLCPlugin2 issues

I am trying to get the playlist index using AxVLCPlugin2 for .Net. When I used AxVLCPlugin1 they had playlistindex and now I can't find anything for the new plugin that will return the playlist ...
1
vote
0answers
122 views

Incomplete *.rar works on VLC but not on libVLC

I am trying to play an incomplete rar file using libVLC with python bindings. If I run the following command from the console I get some errors but I can see the video on VLC. VLC media player 2.0.5 ...
2
votes
2answers
319 views

VLC: Move file on end

In Windows, after double-clicking a video file, when it's finished, I want the file to be moved up a dir or 2, and any containing folder deleted. I only want this to affect files located in ...
0
votes
0answers
116 views

server streaming VLCJ no video

I'm using VLCJ to make a streaming video server. my problem is that I hear the audio but see nothing. I can also just put pause but do not go back and forth. What should I do?? this is the code ...
0
votes
0answers
171 views

Is there any method of showing what percentage of a VLC player clip in VB.NET has buffered in a label?

Is there any method of showing what percentage of a VLC player clip in VB.NET has buffered in a label? For further clarification: What I'm wanting, is to show what percentage of a clip has been ...
0
votes
0answers
154 views

libVLC failes to create video output

When I compile the example from http://wiki.videolan.org/LibVLC_Tutorial on OS 10.8 with gcc -I /Applications/VLC.app/Contents/MacOS/include/ -L /Applications/VLC.app/Contents/MacOS/lib/ -lvlc ...
0
votes
1answer
175 views

how do i detect the current position in vlc video-playback in vb.net?

how do i detect the current position in vlc video-playback in vb.net? Basically as the clip is playing, I want in a label for it to say "02:58/21:35" relating to the current clip being played. So ...
0
votes
1answer
340 views

Compiling VLCKit on OS X 10.8.2

I am trying to build VLCKit on OS X 10.8.2. I've installed the latest Xcode as of today (2013.01.27). What I did so far: git clone git://git.videolan.org/vlc-bindings/VLCKit.git cd VLCKit xcodebuild ...
0
votes
0answers
144 views

How do I make sure VLC buffers to 5% before playing in VB.NET?

How do I make sure VLC buffers to 5% before playing in VB.NET? So far I can play clips one after the other. But what I'd like to do, is make sure before begins playing each time 5% of the video from ...
0
votes
2answers
982 views

VLC Player in VB.NET won't seem to detect end of playback, am I doing something wrong?

VLC Player in VB.NET won't seem to detect end of playback, am I doing something wrong? My intention was to use "_MediaPlayerEndReached" to make the player move onto the next video but instead once ...
0
votes
1answer
166 views

MacOS: libvlc path for plugins in app package

My MacOS application uses the libVLC plugin for playback of a video file within the application window. libVLC is dynamically linked but when I try to get a new vlc instance with "libvlc_new" the ...
0
votes
0answers
238 views

Is it possible to get precise timestamps for frames in video file from VLC?

I’m looking to use VLC as the foundation for a video player within my application written in C# (since VLC is one of the few players that can properly decode the format I’m working with), but the ...
2
votes
1answer
88 views

is LibVlc crossplatform?

I am pretty new to working with media codecs, I was trying to play media files using Java and doing some research out there I found vlcj binding to match my need . I wish to bundle the libvlc native ...
0
votes
0answers
140 views

Using LibVLC in a x64 System - Video Streaming

How to Use LibVlC (Ported to DotNet versions, there are many available) in the x64 system ? I used libvlc.net , I copied the whole VLC content in the sample’s ‘Simple Player’s Bin Directory. But ...
0
votes
1answer
197 views

opencv and libvlc not working in release mode together

i am trying to read frames from a network stream using libvlc and then apply some processing on these frame using opencv. This code that i am using to retrieve frames The problem is that this works ...
1
vote
1answer
263 views

How to stream raw image data stored in memory buffer using LibVLC over network in Visual Studio C++?

As my target was : Stream video from IP camera using LibVLC Process the video using OpenCV Then re-stream the processed video/image over network using LibVLC so that other connected clients can see ...
1
vote
1answer
106 views

MobileVLC Compile libcompat.a(dummy.o) has no symbols

[info] Installing libvlc /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: ...
1
vote
1answer
244 views

how to set the Bitrate converting mp4 and flv video to mp3 with VLC

I run the following command in order to convert flv video to mp3 by using VLC in command line mode: /Applications/VLC.app/Contents/MacOS/VLC -I dummy \ "myFile.flv" \ ...
2
votes
0answers
274 views

How to get libVLC to play segmented packets from a stream?

I am curious as to how to use libVLC to play segments of a clip downloaded over the network. We are developing sort of a P2P program where packets can have several paths to get to the destination. ...

1 2 3 4