vlc

vlcj:: Unable to load library 'libvlc' in 64bit OS

◇◆丶佛笑我妖孽 提交于 2019-12-10 18:44:32
问题 I am using 64 bit OS Windows 7 and i have 32 bit VLC versioned 1.1.8. I have added these libraries jna.jar platform.jar vlcj-1.1.5.1.jar I am not able to stream using jVlc public class HelloVLC { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { // TODO Auto-generated method stub System.out.println( WindowsRuntimeUtil.getVlcInstallDir()); NativeLibrary.addSearchPath("libvlc", "C:\\Program Files (x86)\\VideoLAN\\VLC"); String media = "dshow:

Can't load vlcjni library on Android 6.0

柔情痞子 提交于 2019-12-10 17:57:25
问题 I build a player based VLC,and when I want to build a verson for Android 6.0,player can't start on Android 6.0 device.Here are the log: Can't load vlcjni library:java.lang.UnsatisfiedLinkError:dlopen failed:/data/app/lib/arm/libvlcjni.so: has text relocations. And I have tried so many ways to solve it,but I haven't solve it yet. I hope anyone can tell me about the problem. 回答1: Here is similar question and answers: libavcodec.so: has text relocations Today, I got the same error messages when

Howto compile VLC for ARM

笑着哭i 提交于 2019-12-10 15:36:42
问题 When one wants VLC to work on a FriendlyARM device. What is the best way to compile VLC for ARM? 回答1: check blogs.soctel.in. you can find procedure to build the kernel, libraries, build VLC, and streaming using VLC and related information 来源: https://stackoverflow.com/questions/11885203/howto-compile-vlc-for-arm

How to open VLC in fullscreen mode in swift

≯℡__Kan透↙ 提交于 2019-12-10 15:09:48
问题 Im using MobileVLCKit, here is my code: class CameraViewController: UIViewController,VLCMediaPlayerDelegate{ var mediaPlayer = VLCMediaPlayer() override func viewDidLoad() { super.viewDidLoad() mediaPlayer.delegate = self let url = NSURL(string: "URL HERE") mediaPlayer.media = VLCMedia(URL: url!) } } I want to open VLC in fullscreen with play,pause and timer Thanks, 回答1: VLCKit does not include a "fullscreen" feature. You need to set the mediaPlayer's drawable to a UIView and take care of the

Playing RTP using VLC

霸气de小男生 提交于 2019-12-10 13:29:17
问题 I currently have an Android application that is capturing video from the camera and streaming it over RTP. I do not use RTSP. I have created a SDP file that describes the RTP feed. I can open the SDP file in Quicktime 7 and can see the stream, attempting to open the SDP file in VLC does not work. I get the following error: live555 demux error: no data received in 10s, aborting I am monitoring the RTP packets using Wireshark and can see the packets on the network (see example below): 281956

compile vlc android error

谁都会走 提交于 2019-12-10 12:17:38
问题 When I try to compile vlc android project, I got a issue: cd speex-git && patch -fp1) < ../../contrib/src/speex/no-ogg.patch patching file configure.ac Hunk #1 succeeded at 109 with fuzz 1 (offset -3 lines). patching file libspeex/Makefile.am Hunk #1 FAILED at 11. 1 out of 1 hunk FAILED -- saving rejects to file libspeex/Makefile.am.rej patching file src/Makefile.am Hunk #1 FAILED at 11. Hunk #2 FAILED at 24. 2 out of 2 hunks FAILED -- saving rejects to file src/Makefile.am.rej make: ***

RTSP server java implementation problems :(

天大地大妈咪最大 提交于 2019-12-10 11:28:08
问题 I'm writing RTSP server and have some problems. I'm using VLC as client. Server receive OPTIONS, DESCRIBE, SETUP and PLAY commands from client (VLC player) and answers to that commands. By SETUP command client send ports numbers and I'm using that ports to send data. When my server receive PLAY command it's sending the answer and starting to stream data. I'm creating two DatagramSocket instances with the client ports. I'm trying to stream mp4 files. I'm using mp4parse java library to get

Cross-browser embed VLC plugin

大兔子大兔子 提交于 2019-12-10 10:18:32
问题 I have embedded vlc plugin for Google Chrome this way: <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='rtsp://127.0.0.1:8554/realtime_1db07ff1-c5f9-4597-abf6-0d442454d06c'> </embed> But this approach doesn't work with Internet Explorer. Are any universal methods available to embed this player in all browsers? 回答1: I posted examples for both IE and Mozilla on the

VLC syntax to transcode and stream to stdout?

十年热恋 提交于 2019-12-10 01:44:36
问题 Goal: I am trying to use VLC as a local server to expand the video capabilities of an app created with Adobe AIR , Flex and Actionscript . I am using VLC to stream to stdout and reading that output from within my app. VLC Streaming capabilities VLC Flash Video Stream VLC to Website with asf and Flash Status: I am able to launch VLC as a background process and control it through its remote control interface (more detail). I can load, transcode and stream a local video file. The example app

Using VLC player activex within excel vba as a registration-free COM

旧城冷巷雨未停 提交于 2019-12-09 10:07:05
问题 Problem definition I have two usb microscope reading part and serial numbers. I want to control the display and recording of screen shots from Excel-VBA. I would like to try this using the supplied VLC active X component. I need the finish product to be a single zip that does not need to be installed. I think using this activex object as a registration-free COM is the way to go. References I have been doing my homework, here are my references. How to use vlc.dll without registration?