vlc

Streaming using RTSP over TCP

自闭症网瘾萝莉.ら 提交于 2019-12-03 17:03:29
How does VLC Media player implement RTSP over TCP Streaming? I am aware that, VLC Media player can be used as a streaming server and also a streaming client. My requirement is to stream using TCP(over RTSP) data from the server to clients and I am not comfortable with C/C++ code. I am comfortable with C#. Can somebody point me to example implementations of TCP Streaming in C# ? P.S- is there any other player which supports real time streaming using RTSP over TCP/UDP? To answer your original question: "How does VLC Media player implement RTSP over TCP Streaming?" The simple answer is that it is

C# - Capture RTP Stream and send to speech recognition

流过昼夜 提交于 2019-12-03 16:32:58
What I am trying to accomplish: Capture RTP Stream in C# Forward that stream to the System.Speech.SpeechRecognitionEngine I am creating a Linux-based robot which will take microphone input, send it Windows machine which will process the audio using Microsoft Speech Recognition and send the response back to the robot. The robot might be hundreds of miles from the server, so I would like to do this over the Internet. What I have done so far: Have the robot generate an RTP stream encoded in MP3 format (other formats available) using FFmpeg (the robot is running on a Raspberry Pi running Arch

android libvlc multiple surface problems

你离开我真会死。 提交于 2019-12-03 16:11:07
问题 I would know if is possible to use two surface in same layout and view each at same time. In future I would a grid-view of video-view, but each video-view using vlc. I modify this sample (android-vlc-sample) using fragment. The result is that I see only one video...How can I solve ? From log-cat I not see important error, but I think that there are rendering problems for android UIThread Java Coding public class MultipleVideoPlayFragmentActivity extends FragmentActivity { public final static

Embedding VLC plugin on HTML page

耗尽温柔 提交于 2019-12-03 13:50:59
问题 I have a html file ( getStream.html ) that takes a stream from a certain url and show it. The code is the following: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Vids</title> <link href="main.css" rel="stylesheet" type="text/css" /> </head> <body onload='player("http://mystreamaddress:8080")

How does VLC play videos on the desktop?

醉酒当歌 提交于 2019-12-03 13:36:31
A while back, I noticed that VLC has the ability to play videos directly on the desktop. When I did so at my school, on Windows XP, it played underneath the icons. When I tried at home, on Windows 7, it hid the icons. I'm not sure if it's the operating system or if it's an update of VLC, but I'm interested in playing it underneath the icons. After noticing this, I had an idea to make an animated desktop of sorts. Nothing special, just a few select videos for my own use. The idea I started with was to play a video in my own window (using mciSendString ) and do a PrintWindow of each frame, save

Stream file as RTSP using VLC

≡放荡痞女 提交于 2019-12-03 12:20:55
I need to create a server that can stream an mp3 file to another device. I am planning on using VLC. I looked at the VLC documentation and am confused about the way forward to do this. I found this link, http://www.videolan.org/doc/streaming-howto/en/ch07.html which tells how to stream a file to a device. However, what I want to do is create a server that is just streaming audio and will allow other clients to connect to it and start playing what is streamed. How can this be done with VLC? hide0 If you are OK with using just an RTP stream then try https://wiki.videolan.org/Documentation

VLC RTSP live stream to Android

痴心易碎 提交于 2019-12-03 12:13:46
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/stream.mpeg}' It is working in Android VLC 0.0.11, but only in WiFi, not in 3G. And I am not able to

How to use LibVLC with Qt 5

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to use LibVLC in a Qt 5 program to open a VLC instance and play a video. The following code comes from https://wiki.videolan.org/LibVLC_Tutorial/ I'm using Linux. .pro : TEMPLATE = app TARGET = projectLoic INCLUDEPATH += . vlc QT += widgets # Input HEADERS += SOURCES += main.cpp LIBS +=-lvlc main : #include <vlc/vlc.h> #include <QApplication> int main(int argc, char* argv[]) { QApplication app(argc, argv); libvlc_instance_t * inst; libvlc_media_player_t *mp; libvlc_media_t *m; // Load the VLC engine inst = libvlc_new(0, NULL); //

VLC HTTP video streaming

匿名 (未验证) 提交于 2019-12-03 10:10:24
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Hello Stakeoverflowers I have a server to stream using HTTP protocol and (VLC) software and am forwarding the stream to dyndns.com to be able to broadcast to internet. I am able to see the stream from my website only with Firefox and Internet Explorer using the following script: <object classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921" codebase="http://download.videolan.org/pub/videolan/vlc/last/win32/axvlc.cab" id="vlc" name="vlc" class="vlcPlayer" width="100%" height="100%" events="True"> <param name="Src" value="DYNDNS_Address" />

Python VLC binding- playing a playlist

匿名 (未验证) 提交于 2019-12-03 09:02:45
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I was wondering if it is possible to open(play) a music playlist ( .m3u file) with the use of vlc.py ? I searched for an answer but could not find it. I managed to play a simple mp3 file, even a mp3 stream, but I dont have any luck with the playlists. Can you help me, give me some example code? I want to be able to go through tracks( Next and Previous) within my python program. Thans in advance 回答1: Here is a " very " rough mock up of some code that I wrote for something else, adapted to your question. It should allow you, using