vlc

VLC RTSP live stream to Android

為{幸葍}努か 提交于 2019-12-04 18:18:52
问题 For my app I have to stream from a decklink card to an Android app (I must be a live stream, so either HLS or RTSP seems to be good solutions, since my app targets Android 3+). I recompiled VLC with the decklink sdk, and I am able to live stream to another pc over the network (but it works only 60sec with RTSP). Here is what I tried : HTTP Stream : ./vlc -vvv decklink:// --sout '#transcode{vcodec=mp4v,acodec=mpga,vb=56,ab=24,channels=1} :standard{access=http{use-key-frames},mux=ts,dst=:3001

Using VlcManager with last version of Vlc.DotNet

别说谁变了你拦得住时间么 提交于 2019-12-04 14:52:57
I'm trying to use the Vlc.DotNet library for my WinForms C# application. I wan't to use the VlcManager from the Core.Interops of the Vlc.DotNet library but there is no recent documentation. In earlier version you can create an instance of the VlcControl and the VlcManager and set the VlcManager to the VlcControl, but this isn't availible anymore within the last version of Vlc.DotNet. Can anybody tell my how I can add (multiple) VlcControls to a VlcManager? This should decrease memory usage and gives the possibility to use more functionalities, like NextFrame. Code I could use in earlier

How to save video stream using VLC in commandline?

对着背影说爱祢 提交于 2019-12-04 14:17:33
I'm trying to save online video using VLC in command line on Window 7 Basic. Here are few things I tried and worked partially: I:\movies> vlc http://media.ch9.ms/ch9/7492/a92ae0a6-7b81-4114-b102aa055d147492/E2EMeijerBrachaDartMonadsContinuations.wmv --sout="#duplicate{dst=std{access=file,mux=wmv,dst='file.wmv'}, dst=display}" It plays the video while streaming, and it also saves the stream to file.wmv . But the saved video doesn't have audio! The command worked partially. Another try for youtube: I:\movies> vlc http://www.youtube.com/watch?v=TFr6G5zveS8 --sout="#duplicate{dst=std{access=file

Create a videoplayer with the LibVLC for android

情到浓时终转凉″ 提交于 2019-12-04 13:32:47
问题 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 my own to create the video player : public class VideoPlayerActivity extends AppCompatActivity implements IVideoPlayer, GestureDetector.OnDoubleTapListener, IDelayController { private static LibVLC LibVLC() { return VLCInstance.get(); } private

Run Batch File Before Windows 7 User Login to Start VLC Web Interface

只愿长相守 提交于 2019-12-04 13:18:23
问题 I would like to run a batch file I have that executes the following before a user logs on: start "VLC web Interface" "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -I http Currently I have this in my Startup folder but I would like this batch file to be executed before a user is logged in on Windows 7. The goal is to start VideoLAN's Web Interface as a service without requiring a user to login. This way the computer can be turned on, and media can be streamed to my devices without choosing a

Use VLC to stream RTSP feed as HTTP Live Stream

隐身守侯 提交于 2019-12-04 07:44:08
I have a really high quality RTSP feed coming into a windows server. I'm attempting to use VLC to restream it as Http Live Streaming. Does anyone know whether it is possible to establish this stream through VLC's graphic user interface as opposed to the command line? If so, how? The examples I've found so far (on here and elsewhere) have all been command line examples and none of them have worked at all. I would love to hear from anyone who has actually accomplished a successful restream of RTSP to an http live stream using a windows server. Incidentally, I already have the website set up to

How to prevent console from being displayed when using VLC's dummy interface

你。 提交于 2019-12-04 04:52:48
问题 I'm trying to launch VLC in "dummy" mode from a Node.js server script, however using child_process.spawn('vlc',['-I dummy']) produces a new console window for VLC's output when using Windows. Is there a way to prevent this happening and force all stdout though the stdout ReadableStream so no "popup windows" occur? EDIT : This problem had nothing to do with node.js, it was simply the way I was calling it and VLC's behaviour. The solution is below. Thanks. 回答1: I found a solution for the

Playing RTSP stream in VLC player

不羁岁月 提交于 2019-12-04 04:27:34
问题 I am trying to make a simple rtsp streaming server in java. The server is able to stream the video properly to the custom written player. The problem I that I am not able to play the same stream in vlc media player. When I start the vlc media player and enter the streaming details, my server is displaying the following request made by vlc: OPTIONS rtsp://192.168.2.8:8210/movie.3gp RTSP/1.0 CSeq: 1 User-Agent: VLC media player (LIVE555 Streaming Media v2010.01.07) In response, I am sending the

Compiling VLC on Linux: Error couldnt find Lua

牧云@^-^@ 提交于 2019-12-04 02:58:42
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 --disable-lua to ignore this error. I have lua on my system. I ran lua -v and got Lua 5.1.4 Copyright (C) 1994-2008 Lua.org, PUC-Rio whereis lua gives /usr/bin/lua /usr/lib/lua /usr/share/lua /usr/share/man/man1/lua.1.gz Which looks to be a standard location. Any ideas on why configure isn't picking up lua? As mentioned by Not_a_Golfer, you need Lua header

VLCJ Creating Multiple video panels

白昼怎懂夜的黑 提交于 2019-12-03 17:18:41
I am creating multiple video panels using vlcj. For each video window I should add code: factory0 = new MediaPlayerFactory(); mediaPlayer0 = factory0.newEmbeddedMediaPlayer(); mediaPlayer0.setVideoSurface(factory0.newVideoSurface(videoCanvas[0])); mediaPlayer0.setPlaySubItems(true); ... If I want to have 8 video panels then I will have to repeat these codes (not dynamic). My Question is: I'd like to have MediaPlayerFactory and MediaPlayerFactory as arrays so that I can shorten my code and then this will behave dynamically by just changing Num_Video. My complete code is as follows. I am