vlc

How does VLC play videos on the desktop?

こ雲淡風輕ζ 提交于 2019-12-21 04:37:25
问题 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

how to play mp3

眉间皱痕 提交于 2019-12-21 04:31:24
问题 my problem starts here: pyttsx and gTTS module errors gTTS works well, takes text from text file, but first creates mp3 file, then if I want listen, I must call this mp3, so it is good but it would be better if I can avoid any audio files, and get just read from text file. maybe somehow I can use google voice to read from text file..? anyway main question now is other if I can use only gTTS what is the best way to play mp3 on Windows 10-64 bit, Python 3.5 ok with os: import os os.startfile("D

How to stream RTSP live video in Firefox and Chrome now that the VLC plugin is not supported anymore?

荒凉一梦 提交于 2019-12-20 19:37:39
问题 Now that the NPAPI that the VLC plugin uses is being discontinued in Firefox and that Google Chrome has discontinued the NPAPI for long is there any solution to stream RTSP live video inside these browsers? Thanks a lot for your help on this. Regards, Tiago Dias 回答1: After a long time digging and following this topic I have came to interesting results. At this point the best option seems to be an RTSP proxy that changes RTSP in a way that makes it compatible with something supported by web

Sending OpenCV output to VLC stream

孤街浪徒 提交于 2019-12-20 12:14:06
问题 This has been keeping me busy for a good part of the afternoon and I haven't been able to get it to work but I feel like I'm really close. I've got openCV set up which takes the videofeed from a webcam. To be able to access this video feed (with openCV overlay) I want to pipe the output of the openCV python script to a VLC stream. I managed to get the stream up and running and can connect to it. VLC resizes to the correct aspect ratio and resolution so it gets some correct data but the image

libvlc_new always return null in vlc 2.1.3

坚强是说给别人听的谎言 提交于 2019-12-20 06:51:52
问题 libvlc_new always return null. I have copied libvlc.dll and libvlccore.dll in debug folder of my solution directory. We have also tried calling libvlc_new(0,null) and set the environment variable "VLC_PLUGIN_PATH " to plugins directory, with same result. Any pointer what is going wrong/ or what is the best way to access libVlc API programmitically in .net environment. PLEASE FIND CODE SNIPPET BELOW deveopled in C#, VS2010. IntPtr instance, player ; string[] args = new string[] { "-I", "dummy"

VLC and Python architecture comatibility issue

a 夏天 提交于 2019-12-20 06:28:03
问题 When I open vlc.py with the python 2.7 interpreter it works, but when I open it with the python 3.4 interpreter it doesn't work. I get the below error. I am pretty sure the issue is that the architecture is different for my python 3.4 (64bit in conda) and python 2.7 (32bit not in conda), so vlc.py will only work with my python 2.7. I understand that when the Python version and VLC is compatible, i.e. 32bit Python architecture , it works fine. But, I can't create this architecture in my conda

Playing a video from an array of vlcj player

不打扰是莪最后的温柔 提交于 2019-12-20 05:53:48
问题 I am trying to play a video from the lists of MRL provided as a String. The problem is when I try to run the class, a list of panels shows with button, with only one panel working, but the play button does not work and that of other panels. Although I intentionally left the stop button out because I have not added action listeners to them. What I want to achieve is, when I run the class, a single video plays, and when I click on the play button of another video, the current video stops and

PHP script to echo VLC now playing XML attributes

人盡茶涼 提交于 2019-12-20 04:23:19
问题 I've been searching for a while on this and haven't had much luck. I've found plenty of resources showing how to echo data from dynamic XML, but I'm a PHP novice, and nothing I've written seems to grab and print exactly what I want, though from everything I've heard, it should be relatively easy. The source XML (located at 192.168.0.15:8080/requests/status.xml) is as follows: <root> <fullscreen>0</fullscreen> <volume>97</volume> <repeat>false</repeat> <version>2.0.5 Twoflower</version>

Check if VLC is installed

落爺英雄遲暮 提交于 2019-12-20 03:59:12
问题 I'm calling vlc from a C# app in order to play a video. I need a way to consistently check if VLC is installed. I've tried checking registry keys, but they don't seem to be consistent or reliable depending on your Windows version or architecture. Anyone have any suggestions/advice? 回答1: I'd say you're doing unnecessary work in trying to detect this. What are you going to do if VLC is not installed? Show an error message? Then just try to launch it, and show an error message if it fails to

LibVLC.NET in GTK#

。_饼干妹妹 提交于 2019-12-20 03:46:29
问题 I use LibVLC.NET wrapper in GTK#. And I have already played video using this example: LibVLCLibrary library = LibVLCLibrary.Load(null); IntPtr inst, mp, m; inst = library.libvlc_new(); // Load the VLC engine m = library.libvlc_media_new_location(inst, "path/to/your/file"); // Create a new item mp = library.libvlc_media_player_new_from_media(m); // Create a media player playing environement library.libvlc_media_release(m); // No need to keep the media now library.libvlc_media_player_play(mp);