Questions tagged [libvlc]

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

VLC Media player is a widely used media player these days. To integrate the VLC media player in your application libVLC is used. You can embed libVLC into your application to gain audio/video playing features.

Bindings

The original library is written in C (the SDK is provided with VLC media player), but several bindings exist:

1047 questions
5
votes
3 answers

Reduce delay when playing rtp stream with libvlc on Android

I am using LibVLC version 3.0.0 to play incoming mpeg2ts stream over rtp on Android. The code is the following: SurfaceView playerView; //Initialized somewhere before LibVLC libVlc = new LibVLC(context, arrayListOf("--file-caching=150",…
Mikhail
  • 3,666
  • 4
  • 30
  • 43
5
votes
1 answer

How to play youtube videos through vlc plugin?

I'm using vlc plugin into C# Windows form application. It works fine with all media type but it can't play youtube videos through the plugin also it can be played in the main player itself. I'm using the following code : …
EgyEast
  • 1,542
  • 6
  • 28
  • 44
5
votes
1 answer

libvlc Android: unable to play HTTP network streams

I'm currently facing an issue trying to play network stream using VLC for Android. I have basically followed this guide, https://wiki.videolan.org/AndroidCompile/, cloned the repo and built: everything works fine, I can run my application and play…
fasteque
  • 4,309
  • 8
  • 38
  • 50
5
votes
3 answers

Vlc.DotNet - Not able to set the volume before playing an audio

I downloaded the Vlc.DotNet project from Github and have been adding more functionalities to its Sample Forms application. Everything goes fine, except on thing: I noticed that every time I start the application and play an audio, the audio sounds…
Lucas Loss
  • 51
  • 1
  • 5
5
votes
0 answers

Real time streaming over RTP on Android client

I'm trying to realize a real time streaming using gstreamer as server over pure RTP (no RTSP) using a sdp file with a delay from server to client < 500ms. Test server has tested using gst-launch-1.0 -v v4l2src !…
EmanuelOverflow
  • 246
  • 4
  • 12
5
votes
3 answers

Create a videoplayer with the LibVLC for android

I am trying to creat a video player for an android app with the last LibVLC. The problem is that I don't know how this lib works and I can't find sample to help me (as it is say here https://bitbucket.org/edwardcw/libvlc-android-sample) So I try on…
leykan
  • 389
  • 2
  • 4
  • 24
5
votes
0 answers

LibVlc android error loading MRL

i am trying to use the vlc library to reproduce a video in my application. I must be missing something because if i run the vlc-android application it works. I thought it was a fault due to the file location but then i took the location string from…
MineConsulting SRL
  • 2,340
  • 2
  • 17
  • 32
5
votes
0 answers

Whats the difference between stream generated by ffmpeg vs lib VLC

I am trying to stream a Mp4 file to a webm file. After that I am reading this file chunk by chunk and feeding it to HTML5 viewer (video tag of html 5 viewer) in order to stream from MP4 file webm file I have had three options 1) Stream out using…
Arif Ali Saiyed
  • 657
  • 7
  • 11
5
votes
1 answer

How to take snapshot of RTSP streaming using LibVLC for Android

I am using libVLC in an Android application for RTSP streaming. Since video is loaded over SurfaceView in libVLC, we cannot take snapshot directly. So how to support snapshot functionality with LibVLC for Android? One solution would be by loading…
Jickson
  • 5,133
  • 2
  • 27
  • 38
5
votes
2 answers

LibVlc android cant load libs

I tried to run the example of libvlc.I compiled the vlc to android and copy the sdk library to the project as they wrote. https://bitbucket.org/edwardcw/libvlc-android-sample and I recive this error 1236-1236/com.compdigitec.libvlcandroidsample…
Alon
  • 2,919
  • 6
  • 27
  • 47
5
votes
1 answer

How to monitor VLC media player on Windows 7 using Python?

I want to know what's currently playing on VLC media player (Windows 7) using Python 2.7. Just knowing the details of the track/video is sufficient. Research: I came to know that VLC media player has python-bindings. I also found out a way to play…
Sahil
  • 315
  • 5
  • 21
5
votes
3 answers

VLCJ on Mac OSX Unsatisfied Link Error (darwin/libvlc.dylib)

I'm trying to initialize VLCJ to do some streaming as part of an application I'm working on. Going by the official tutorial, I'm using the following code to try and load the library: NativeLibrary.addSearchPath( …
Parker Kemp
  • 719
  • 1
  • 10
  • 23
5
votes
2 answers

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 advance :)
user1211499
  • 155
  • 1
  • 10
5
votes
1 answer

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 library. For example, the lock function: static void…
user2273364
  • 65
  • 1
  • 7
5
votes
1 answer

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 unlock callback function invoke…
coollofty
  • 339
  • 4
  • 15