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
44
votes
2 answers

android libvlc multiple surface problems

I would like to know if is possible to use two Surface views in the same layout and view the content of both of them at the same time. In future, I would make use of a Grid-view of video-view, where each video-view uses VLC. I modified this sample…
tulkas85
  • 1,103
  • 1
  • 17
  • 43
39
votes
7 answers

How to embed VLC media player to my Android App

Is there a way to embed VLC media player to Android Application? I have several issues: 1) I have a video streaming Camera (from RTSP) and I cannot play its stream on my regular videoview panel (Sorry this video cannot be played error). However, I…
fercis
  • 611
  • 2
  • 12
  • 26
26
votes
2 answers

How to Pause/Resume a process in Linux

I record my program until it closes. Start Command: cvlc screen:// --screen-left=0 --screen-top=0 --screen-width=1280 --screen-height=960 --screen-fps=30 \ --sout '#transcode{vcodec=mp2v, vb=800, scale=1, acodec=none}:file{mux=ts,…
Ulfsark
  • 902
  • 1
  • 11
  • 26
22
votes
5 answers

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 = movie = os.path.expanduser(filepath) if 'http://'…
Nawaz
  • 353,942
  • 115
  • 666
  • 851
19
votes
10 answers

FileNotFoundError: Could not find module 'libvlc.dll'

Using Python 3.8.0, 64 bit OS: Windows 10 Pro, Version 10.0.15063 Build 15063, 64 bit VLC, 3.0.8 Vetinari, 64 bit Have installed Python VLC Bindings through PIP The path to VLC and the direct path to libvlc.dll are both in my “PYTHONPATH” and “PATH”…
james
  • 343
  • 1
  • 2
  • 10
16
votes
2 answers

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() …
Ian Wetherbee
  • 6,009
  • 1
  • 29
  • 30
15
votes
0 answers

Canonical low-latency settings for VLC for Android (3.0+)

I've recently started using libVLC in an Android application with the intent of replacing a commercial SDK that we're paying a lot for, but not seeing the results that we'd hoped for. The application requires viewing RTSP streams at as-close-to…
SJoshi
  • 1,866
  • 24
  • 47
14
votes
2 answers

VLC syntax to transcode and stream to stdout?

Goal: I am trying to use VLC as a local server to expand the video capabilities of an app created with Adobe AIR, Flex and Actionscript. I am using VLC to stream to stdoutand reading that output from within my app. VLC Streaming…
spring
  • 18,009
  • 15
  • 80
  • 160
14
votes
2 answers

How do I determine the number of planes and bytes per pixel of a certain chroma?

I am using LibVLC and want to render the video pixels in memory so I will be able to take a snapshot of a frame without getting the video drawn in a window (as is the default). If I understand correctly, this can be achieved by calling…
AardvarkSoup
  • 1,071
  • 8
  • 18
12
votes
0 answers

FFmpeg vs Libav vs libVLC vs Gstreamer as of 2018

I am trying to do some video processing on real time. I was beginning to try the FFmpeg, but I saw this question: Why would I choose Libav over FFmpeg, or is there even a difference? Which further links to this question: What are the differences and…
Dharma
  • 2,425
  • 3
  • 26
  • 40
11
votes
2 answers

Where to download libvlc?

I can't find where to download libvlc. In fact I already use it in a Windows application I'm developping but I don't remember where I got it and wanted to have a more recent version and the licence info as I read it is LGPL but still not…
Entretoize
  • 2,124
  • 3
  • 23
  • 44
11
votes
1 answer

How can I script video playback with output to multiple screens?

Background I'm attempting to craft a simple video playback script for a small cinema that automates the playing of videos and control of the projector, sound and lighting systems. I have two video outputs, one goes to a monitor in the projection…
julienj
  • 308
  • 1
  • 7
11
votes
2 answers

Develop with LibVLC for android on Windows

I've struggled to even get a demo application running with Android-LibVLC. I can only find documentation for linux and can't get the application to run on my device (although it compiles). When I launch the application it logs: 12-16 15:58:19.572 …
Nick Cardoso
  • 20,807
  • 14
  • 73
  • 124
10
votes
2 answers

Streaming Library VLC Android

Currently we are developing an Android application for streaming. We are looking for an alternative library, because the VLC library isn't finished yet. We currently used the Vitamio library, but it works a little buggy. Doesn't play MMS…
Trebor
  • 101
  • 1
  • 5
10
votes
1 answer

How to add a seekbar in VLC dot net forms in c# windows forms application

I need to add a custom seekbar / trackbar as you may say in c# windows forms. But the issue is there is almost no documentation on vlc dot net forms library. I need to know how to add a custom seekbar in windows forms application. remember, i am not…
prem pattnaik
  • 165
  • 4
  • 9
1
2 3
69 70