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
0 answers

Example for video_set_callbacks vlc python binding

Could someone share a python code snippet showing how to use video_set_callbacks in libvlc ? My intermediate goal is to retrieve a frame each time it is ready to be displayed. A solution would normally be interesting not only for me. Thanks!
5
votes
1 answer

A simple C program to play mp3 using libvlc

I am an average C/C++ programmer. Recently I took a project to make a media player with a smart playlist that will work like Zune's SmartDj. I have decided to use libvlc for playing. I have never coded an open source software before, so I know…
user1263375
  • 663
  • 3
  • 18
  • 35
4
votes
0 answers

Compling vlc-android source code

I tried to use vlc player source code for android.I have downloaded the files using git as mentioned in this link http://rootzwiki.com/topic/475-compiling-vlc-from-source-for-apk/ After this step "./bootstrap -t arm-eabi -d android", i tried to use…
John
  • 8,846
  • 8
  • 50
  • 85
4
votes
3 answers

vlcj:: Unable to load library 'libvlc' in 64bit OS

I am using 64 bit OS Windows 7 and i have 32 bit VLC versioned 1.1.8. I have added these libraries jna.jar platform.jar vlcj-1.1.5.1.jar I am not able to stream using jVlc public class HelloVLC { /** * @param args * @throws IOException …
sonu thomas
  • 2,161
  • 4
  • 24
  • 38
4
votes
0 answers

How to add subtitles vlc player with libvlc programmatically?

I want to add subtitles in vlc video player by using the SRT format file. I used LibVlc in android. add libVLC in GRADLE file implementation 'org.videolan.android:libvlc-all:3.3.13' MoviesDetailsActivity.java Here is my code to add subtitles.…
4
votes
3 answers

How to play video backwards in qt using vlc-qt libvlc

I am developing a media player using vlc-qt , Actually I want a button which will play do the fast backward operation. I don't have the problem with the fast forward operation but not able to implement the fast backward operation, Is there any…
Vinay Kumar
  • 674
  • 2
  • 9
  • 21
4
votes
2 answers

Transparency of QDeclarativeView containing QML on top of a QWidget playing a video (using either phonon or libvlc)

I am currently developing a video player. The GUI as the topmost layer is written in QML. It should be transparent to lower layers. It contains control elements, some Lists etc., It's displayed using a QDeclarativeView. Description QDeclarativeView…
mmoment
  • 1,269
  • 14
  • 30
4
votes
2 answers

Get the duration of a URL-based Media object with python-vlc - Cannot parse

I'm trying to use the python 2.7 python-vlc to parse then get the duration of a music track from a URL. Parsing doesn't work and playing then pausing the media returns -1 for the duration occasionally. There are two ways I know of to parse media,…
rxbots
  • 87
  • 1
  • 8
4
votes
1 answer

How to streaming video via VLC api in C#

I'm working on small home project for video broadcasting. I've found some example Example, but it does not works, because needed old version of library 0.8.6. So I found it, but I have exceptions on unmanaged code when I've tried to get components…
JDo
  • 338
  • 1
  • 4
  • 18
4
votes
4 answers

Is there any alternative to libVLC to stream and display rtsp?

i have problem with the GPL license that libVLC only support , is there any alternative ? something that is lgpl or other none gpl ?
user63898
  • 29,839
  • 85
  • 272
  • 514
4
votes
1 answer

W/art: Native thread exiting without having called DetachCurrentThread VlcObject

I'm getting this warning in my application using lib Vlc for android. W/art: Native thread exiting without having called DetachCurrentThread (maybe it's going to use a pthread_key_create destructor?):…
Dansp
  • 1,378
  • 2
  • 14
  • 36
4
votes
1 answer

How to show progressbar for streaming video on surfaceView with libvlc?

I used libvlc (de.mrmaffen:vlc-android-sdk:1.0.6) library for http video streaming. Everything works fine just one issue. I used progress-bar before my playmovie() function call,and stop the progress-bar with using libvlc.isPlaying() boolean…
sagar potdar
  • 598
  • 1
  • 6
  • 22
4
votes
2 answers

Playing live http stream in vlcj

I'm trying to use vlcj to play live internet radio stations in a project. I've played around with some sample programs for a few hours, but I cannot get either the sample programs or programs that I've played around with to play the stream from the…
clamped
  • 365
  • 3
  • 9
4
votes
2 answers

Embed LibVLC into my android app is not playing video, only audio is being played

After a 3 days journey, I finally got libvlc-3.0.0-2.1.0.aar compiled for embedding VLC player into my Android (tv) app. After adapting the LibVLC Android Sample into my project I finally run the app. Problem: Only audio is being played. Video…
Eduardo Pinheiro
  • 3,409
  • 3
  • 30
  • 39
4
votes
1 answer

Set min-buffer threshold for http/network playback

In a video player project, I'd like to use LibVLC http streaming from a slow source. However, I can not get it to stream FIRST, and then continuously download data. The player will always stop in-between. I'm using vlc-android from GIT. This is the…
Sebastian Roth
  • 11,344
  • 14
  • 61
  • 110