vlc

GStreamer rtp stream to vlc

余生颓废 提交于 2019-11-27 11:49:04
I'm having some trouble figuring out how to create a simple rtp stream with gstreamer and display it on vlc. I've installed GStreamer 0.10.30 and VLC 1.1.3. My only requirement is to use MPEG4 or H.264 codecs. Right now, I can stream the GStreamer videotestsrc through this simple pipeline: gst-launch videotestsrc ! ffenc_mpeg4 ! rtpmp4vpay ! udpsink host=127.0.0.1 port=5000 which outputs the "caps" needed by the client to receive the stream: /GstPipeline:pipeline0/GstUDPSink:udpsink0.GstPad:sink: caps = application/x-rtp, media=(string)video, clock-rate=(int)90000, encoding-name=(string)MP4V

Build VLC for Android project failed on Ubuntu 12.04

吃可爱长大的小学妹 提交于 2019-11-27 04:45:49
问题 I want to work on the VLC for Android project. So first I need to compile this project, I follow all the steps on https://wiki.videolan.org/AndroidCompile/ but when I do the sh compile.sh -a armeabi-v7a at the end I have this error: contribs: make failed Error:Execution failed for task ':libvlc:buildDebugARMv5'. > Process 'command './compile-libvlc.sh'' finished with non-zero exit value 1 I am working with Android Studio. Update So I have download a ubuntu 12.04 vm and I have build the VLC

Streaming mp4 with vlc to html browser

落爺英雄遲暮 提交于 2019-11-27 02:14:09
问题 I have problems streaming my webcam picture (without sound) to a html page. I'm using the latest (v2.0.2 vlc for windows) for streaming, here's the command line: "c:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -I dummy dshow:// --dshow-vdev="Logitech QuickCam Chat" --dshow-adev=none --dshow-caching=0 --sout=#transcode{vcodec=h264,vb=1024,channels=1,ab=128,samplerate=44100,width=320}:http{mux=ts,dst=:8080/webcam.mp4} when I open the stream in another vlc player (http://127.0.0.1:8080/webcam.mp4)

GStreamer - Webcam stream from Raspberry to VLC-PC

安稳与你 提交于 2019-11-26 23:17:45
问题 I'm trying to stream webcam video from a Raspberry to a VLC player using gstreamer 1.0. Right now i got the following command for the Raspberry: gst-launch-1.0 -vv -e v4l2src device=/dev/video0 \ ! videoscale \ ! "video/x-raw,width=352,height=288,framerate=10/1" \ ! queue \ ! x264enc \ ! h264parse \ ! rtph264pay config-interval=10 pt=96 \ ! udpsink host=239.255.12.42 port=5004 And the following sdp file to play the stream with vlc: c=IN IP4 239.255.12.42 m=video 5004 RTP/AVP 96 a=rtpmap:96

Does VLC media player have a C# interface?

岁酱吖の 提交于 2019-11-26 15:49:30
问题 Is it possible to read the track statistics(time, title etc) from a currently playing file in VLC play using a wrapper in a C# console application? does anyone have any recommendations for a wrapper to use? 回答1: There is an .Net Interface to VLC and Vlc.DotNet. There is an implementation on CodePlex. DMediaPlayer - Simple VLC frontend. Hope this is what you are looking for... 回答2: Also there is Vlc.DotNet The project have all you need and it is compatible all versions of VLC >= 1.1 You can