Questions tagged [vlc]

VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols. Use this tag only for programming-related questions about VLC.

See VLC (Video LAN) Media Player for more details.

Stack Overflow questions tagged VLC may have to do with:

  • Compiling VLC media player's source code and its underlying frameworks
  • Using VLC's underlying libraries (libvlc, VLCKit) inside your own programs
  • Scripting/automating VLC media player via a Bash script, Lua or other approaches
  • Controlling VLC media player via the command line and questions concerning the usage of available parameters
  • Encoding, transcoding or streaming through VLC media player's interfaces via scripts, command line or provided frameworks

Questions about LibVLC, the external programming interface for VLC Media player, should be tagged as well.

If your question is about the usage of the player (with no programming involved) ask your question at Super User and use their vlc tag

Resources

2637 questions
12
votes
1 answer

How to add an external audio track to a video file using VLC or FFMPEG command line

I want to add an audio.mp3 soundtrack to a soundless video.mp4 file using a bash script, what is the correct syntax of the "cvlc" "ffmpeg" command line ? I've recorded the video with VLC and --no-audio option so there is no settings such as bit rate…
Jonathan
  • 121
  • 1
  • 1
  • 4
12
votes
3 answers

VLC freezes for low 1 FPS video created from images with ffmpeg

I am creating a short video from a sequence of 100 images using ffmpeg. There are several articles that helped me put together a command, but the one I'm using is directly taken from ffmpeg images-to-video script anyone?. The following command…
user2861936
  • 121
  • 1
  • 4
11
votes
3 answers

Compiling VLC on Linux: Error couldnt find Lua

I am trying to compile VLC for Linux. When I run the configure script, I am getting the error message configure: error: Could not find lua. Lua is needed for some interfaces (rc, telnet, http) as well as many other custom scripts. Use…
bobby
  • 2,629
  • 5
  • 30
  • 56
11
votes
2 answers

Play a video with VLC in X11 from remote terminal

I've got some slim terminals with Linux where a little script it's launched every time they boot. This script has a single cvlc command line which is the following: cvlc --quiet --fullscreen --no-osd --loop playlist.xspf This works OK because the…
Metafaniel
  • 29,318
  • 8
  • 40
  • 67
11
votes
6 answers

VLC remotely control from C#

i'm trying to control the VLC Media Player from C#. I tried getting a handle on the window with the FindWindow() command from .Net but as i found out the name of the window changes every time a file is played. The biggest problem i have is sending…
Sorin Antohi
  • 6,145
  • 9
  • 45
  • 71
11
votes
3 answers

How to capture microphone input in VLC?

I'm trying to capture microphone input in VLC media player via the http interface and stream this but so far I have arrived at nothing. Is this actually possible?
Dark Star1
  • 6,986
  • 16
  • 73
  • 121
11
votes
1 answer

How to embed streaming rtsp media into an html5 page

I have a security cam that sends via rtsp, which I'm able to capture on vlc player, but I want to embed that into my webpage. I've been searching for hours on how to do this, but have failed to find any recent documentation on how to do this. I am…
stevenlacerda
  • 1,187
  • 2
  • 9
  • 21
11
votes
4 answers

How to live stream a local video using FFmpeg

I have been trying to stream local video on VLC using the FFmpeg library like this: $ ffmpeg -i sample.mp4 -v 0 -vcodec mpeg4 -f mpegts udp://127.0.0.1:23000 I have not been able to stream the file on VLC.
param trivedi
  • 161
  • 1
  • 2
  • 10
11
votes
1 answer

Can I make a docked playlist in vlc NOT dominate the window?

I'd like to be able to view my playlist in vlc in a manner where it is non-obtrusive. Currently it looks something like this: My desire is kind of the opposite - have the actual video playing take up the majority of the screen and have the playlist…
fostandy
  • 4,282
  • 4
  • 37
  • 41
11
votes
0 answers

Create http audio stream with VLC in C#, from a WAV audio being recorded

I am using NAudio library to record systems mic input - continuously. private void RecordStart() { try { _sourceStream = new WaveIn { DeviceNumber = _recordingInstance.InputDeviceIndex, WaveFormat…
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
2 answers

How can I write a plugin for VLC that responds to play, pause and stop events?

I'd like to write a very simple plugin for VLC that makes web requests when a media is played, paused, or stopped. It is a very similar to a scrobbling plugin . I saw that VLC supports plugin and extensions (which are very simple Lua scripts) but I…
Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382
11
votes
1 answer

Is it possible to write a VLC plugin in Python?

Is it possible to write a VLC plugin in Python? If so how do you go about this? I've seen the vlc.py file, all I can tell is you can write an application with functionality of VLC, but can you actually write something that you can open up in VLC…
AlexW.H.B.
  • 1,781
  • 3
  • 25
  • 50
11
votes
1 answer

VLC 2.0.1 Adjust Subtitle Tming

How can i adjust subtitle timing on VLC 2.0.1 My Subtitle late 2 minutes. Already tried google, most of tutorial written for version 1, and version 2 has different configuration interface which it is more confusing for me.
GusDeCooL
  • 5,639
  • 17
  • 68
  • 102
10
votes
1 answer

MPEG-TS Encoding

I have a file that i need to convert to MPEG-TS so that it fits the below specification: Elementary stream bitrate [kbit/s] video: 2575 audio: 2 x 192 subtitle: - PAT/PMT: - Stuffing: - Component TS bitrate [kbit/s] video: 2652 audio: 395 subtitle:…
adismsc
  • 95
  • 1
  • 1
  • 4