vlc

iOS - Building VLC for iOS - Please install required SDK, or set SDKROOT manually

倾然丶 夕夏残阳落幕 提交于 2019-12-12 14:07:32
问题 I have upgraded my xcode to 4.5, now I am Building VLC for iOS and countered that SDK version 5.1 not found. I have fully installed all the sdk's in my xcode 4.5 Mac-Muhammad-Umair-Mirza:vlc muhammad.umair$ ./extras/package/ios/build.sh [info] Building libvlc for the iOS [info] Using armv7 with SDK version 5.1 usage: dirname path SDKROOT not specified, assuming /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk *** /Volumes/Xcode/Xcode.app

Streaming using RTSP over TCP

五迷三道 提交于 2019-12-12 08:13:47
问题 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? 回答1: To answer your

force vlc to load ui on raspberry booted to cli

柔情痞子 提交于 2019-12-12 05:38:07
问题 I've been googling for this all week, struggling to find a good solution. I have a training video kiosk script that I've set up for my company, running on an intel NUC. to me, that feels like overkill, so I'm trying to get the script to run on a pi 3 model b to save a little on costs to deploy this thing. my script works great from desktop, I've been able to get it to run on startup from the cli, & I can even load the videos with the dummy UI - the problem is that there's no sound, and when

Error Compiling LibVLC for Android

让人想犯罪 __ 提交于 2019-12-12 05:23:58
问题 i tried to compile LibVLC for android on ubuntu 16.04 and got the follwing error: priv.c:122: error: undefined reference to 'hw_get_module' clang++: error: linker command failed with exit code 1 (use -v to see invocation) make: *** [private_libs/obj/local/armeabi-v7a/libanw.10.so] Error 1 Have latest vlc - android from git and android sdk 23, android ndk 13. My first attempt was to add APP_STL := stlport_static to the Application.mk but this didnt fix the problem. Please, can someone help?

Using libVLC media_list instead of a media_player to play a directory of songs

我与影子孤独终老i 提交于 2019-12-12 04:15:15
问题 I'm trying to use libVLC v2 C bindings in order to play all the songs ( mp3 / m4a / ogg )s inside a directory given its path. I'm currently only using the module libvlc_media_player , with methods like libvlc_media_player_set_media to set a song from a given path. I see there is a module called libvlc_media_list , with libvlc_media_list_set_media . What is a libvlc_media_list and how do I set it with a path to a directory (with several audio files inside)? The libvlc_media_list_player takes a

How to use vlc.dll without registration?

倾然丶 夕夏残阳落幕 提交于 2019-12-12 03:26:39
问题 I have used the vlc.dll in my form. After installing this, if I install vlc outside this, my app starts using the dll from that folder. So, how can I force my app to use the dll from its own folder? 回答1: If it's a native dll, Windows searches the application's own folder first. Dynamic-Link Library Search Order on msdn. It sounds like this is not happening, so .. EDIT: For an ActiveX dll, you can use Registration-Free COM to tell your application to use a local version instead of the

Provide description in SDP format for RTP stream

北慕城南 提交于 2019-12-11 19:20:18
问题 I'm using LibVLC library 2.1.12 to render an RTP stream to my Android device. I'm using the following SDP description to request RTP/AV packets to be delivered to the given IP address and port (192.168.0.33, port: 65446) v=0 o=- 1537446049254 1537446050285 IN IP4 192.168.0.33 s=- c=IN IP4 192.168.0.33 t=0 0 a=recvonly m=video 65446 RTP/AVP 97 a=rtpmap:97 H264/90000 a=fmtp:97 profile-level-id=42e01e;packetization-mode=1 On my server (android), I can see the incoming RTP packets. Code below:

Exchange data between ffmpeg and video player

有些话、适合烂在心里 提交于 2019-12-11 19:00:21
问题 I'm using ffmpeg as a proxy for playing RTSP streams in VLC (because it seems that VLC doesn't work too well with TCP-based RTSP streams). While in Linux I'm doing this by creating a FIFO file and using it as output for ffmpeg, in Windows I can't do this because os.mkfifo() doesn't work under this OS. So I have to find a way to start ffmpeg with subprocess.Popen() and sending it's converted data to VLC in real time (I'm using the VLC bindings for Python). I tried to set ffmpeg's output to

Mosaic of RTSP streams VLC 3.0.8

谁说胖子不能爱 提交于 2019-12-11 18:44:55
问题 I found a way to properly show mosaic of streams from RTSP cameras on VLC 3.0.8 and wanted to share the solution: Write the following into a file < mosaic_vlc3.vlm > # Comment the following line if you don't want to reset your VLM configuration del all new ch1 broadcast enabled setup ch1 input "rtsp://user:pass@192.168.1.101:554/stream1" setup ch1 output #mosaic-bridge{id=ch1,width=1280,height=512} new ch2 broadcast enabled setup ch2 input "rtsp://user:pass@192.168.1.102:554/stream1" setup

HTTP Hanlder for string return asp.net

孤者浪人 提交于 2019-12-11 16:26:45
问题 I am using vlc plugin to play rtmp links for live streaming. It works fine if place the streaming link in target tag like in below code: <embed type='application/x-vlc-plugin' pluginspage='http://www.videolan.org' version='VideoLAN.VLCPlugin.2' width='800' height='600' id='vlc' loop='yes' autoplay='yes' target="rtmp://122.221.75.124:1935/live/myc001"> </embed> Issue: So my requirement is to hide the rtmp links from viewers by showing html source code. I used Http Handler to return links from