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

MobileVLCKit iOS Camera roll video "VLC is unable to open the MRL" error

I have integrated MobileVLCKit Version: 2.2.2 in my iOS project. Having trouble playing the local videos from Camera Roll. Videos from document directory and streaming are working fine though. I am using this code to extract the url of PHAsset…
atulkhatri
  • 10,896
  • 3
  • 53
  • 89
10
votes
1 answer

MobileVLCKit fails while compiling

I am trying to use MobileVLCKit for iOS in my application. I followed steps given @ Building the Framework for iOS. I have set deploymet target to iOS 7 in my Xcode 5. I used command ./buildMobileVLCKit.sh -f -l to compile the shell file to get an…
Yogi
  • 3,578
  • 3
  • 35
  • 56
10
votes
1 answer

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 primary tasks that I need it to perform are: Ability…
Regs
  • 321
  • 1
  • 3
  • 11
9
votes
4 answers

Delphi XE2 : How can I play video files with firemonkey

I want to make a mediaplayer application using with firemonkey but I can't see any component for videoplayer :( I was trying to integrate VLC (VideoLAN player) to firemonkey but the firemonkey controls don't have window handle. How can I make or…
user1046588
  • 91
  • 1
  • 4
9
votes
0 answers

Using libvlc for multi-format video playback inside an Electron app

I have an idea for a media player GUI, which I'd like to build using Electron (because it's a tool I know well; I realise it's not for everyone). I could do this easily using an HTML
callum
  • 34,206
  • 35
  • 106
  • 163
9
votes
3 answers

C# VLC 1.1 Wrapper

Does anyone know about a C# VLC 1.1 Wrapper? I've found some wrappers for older versions of VLC (haven't tried them yet), but none for the new version. So if you know of any, please post them.
MorgoZ
  • 181
  • 1
  • 3
  • 6
8
votes
1 answer

How do I get libvlc_media_player_get_time() to return a more accurate result?

With libvlc, how do I get libvlc_media_player_get_time() to return a more accurate result? With 60fps video the value it returns is only updated a few times per second at most. Is there any way to get frame accurate timing?
Roland Rabien
  • 8,750
  • 7
  • 50
  • 67
7
votes
1 answer

VLCMobileKit does not play RTSP video

VLCMobileKit cannot open RTSP streaming video. Here is the code: override func viewDidAppear(_ animated: Bool) { super.viewDidAppear(animated) DispatchQueue.main.async { // Create `VLCMedia` with the URI retrieved from the camera …
Dhiraj Das
  • 174
  • 9
7
votes
1 answer

Get frame from video with libvlc smem and convert it to opencv Mat. (c++)

[UPDATED WITH PARTIAL ANSWER] Here is my code: void cbVideoPrerender(void *p_video_data, uint8_t **pp_pixel_buffer, int size) { // Locking imageMutex.lock(); videoBuffer = (uint8_t *)malloc(size); *pp_pixel_buffer = videoBuffer; } …
grll
  • 1,047
  • 2
  • 10
  • 18
7
votes
1 answer

Using libVLC for Android on windows platform

I'm trying to explore libVLC for Android that's why setting up VLC android project on windows 7 but i'm facing problems. When i import the project and setup all helping libraries and try to compile using NDK it gives following error make.exe: ***…
Umar Qureshi
  • 5,985
  • 2
  • 30
  • 40
7
votes
1 answer

VLCJ without installing VLC

I'd like to ship a self-contained java app using vlcj and read the SAQs (http://code.google.com/p/vlcj/wiki/SAQ) which suggested this was possible if one ships all of the shared objects or DLL's for libvlc and the vlc plugins needed. Could someone…
user1505631
  • 527
  • 4
  • 13
7
votes
2 answers

libvlc and dbus interface

I'm trying a to create a basic media player using libvlc which will be controlled through dbus. I'm using the gtk and libvlc bindings for python. The code is based on the official example from the vlc website The only thing I modified is to add the…
Vlad Balmos
  • 3,372
  • 19
  • 34
6
votes
2 answers

play audio to only one speaker left/right from commandline using libvlc

Is it possible to make vlc play audio to only one of the speakers left/right from commandline ?
jacob
  • 1,397
  • 1
  • 26
  • 53
6
votes
4 answers

http adaptive streaming

Is there any open source streaming solution supports Http Adaptive Streaming? Based on my research VLC is not supporting adaptive streaming. I am not sure about Darwin Streaming Server. Any ideas?
Ananth Duari
  • 2,859
  • 11
  • 35
  • 42
6
votes
0 answers

React Native and Android module with libVLC - "Can't load vlcjni library"

I have React Native application that is implementing native Android module. In this module I have libVLC implemented and everything is working correctly. Unfortunately after importing this module to React Native application at first I had problem…
sgozdzik
  • 61
  • 2
1
2
3
69 70