I thought the function I called is doing exactly this (libvlc_video_set_mouse_input(this->vlcPlayer, false);) or is there another function to disable the mouse input?
Hello, I have a vide app made with Qt5 (Windows and Mac) and need to receive the clicks the user makes on the video screen, I do not need the position, only the info, that he clicked onto the video. I tried setting this void libvlc_video_set_mouse_input( libvlc_media_player_t *p_mi, unsigned on ); t...
Hello, while playing the following url https://www.youtube.com/watch?v=FiO206ne68A , it starts playing the video but drops the file around 30secs before the end. Here the log of the vlc player: core debug: auto hiding mouse cursor core debug: auto hiding mouse cursor core debug: auto hiding mouse cu...
i tried to get more, but is is all I get when I set to log level debug on the mac. Do you have some tipps how I can get more? this is my init array for macOS: QVector<QByteArray> vArgs; vArgs.append("--ignore-config"); vArgs.append("--intf=dummy"); vArgs.append("--no-media-l...
Hello, i still cant Play any content back (file or stream from Internet) when i use the libvlc from the nightly builds under Mac. I used here before the 2.2.3 Version where everything worked fine. Now when i start the playback, the lib tries to start something, but stops this without giving an error...
here now also the http log: specified demux: any creating demux: access='http' demux='any' location='rodl.zdf.de/none/3sat/11/08/110805_warumsindwirdieeinzigen_ausanderersicht_vh.mp4' file='(null)' looking for access_demux module matching "http": 0 candidates no access_demux modules creati...
I could not find right now the http url, but here the log for a local file: `file:///Users/geostein/trilithonBrowser.dev//archive/48558_6VLMfUz34R0.mp4' gives access `file' demux `' path `/Users/geostein/trilithonBrowser.dev//archive/48558_6VLMfUz34R0.mp4' specified demux: any creating demux: access...
Hello, now while I got my previsous problem with the logs fixed (thanks for the help) I still search for my playback problem. I build fine my app under mac using Qt5.6 and vlc 3.0.0 libs, but when I start the playback, ist not playing anything. in the losg I get now I see only: VLC media player - 3....
Hello, while I have a problem to bring my app to work under libux (vlc 3 libs are not playing any video) I wanted to analyse the logs, but there is nothing in the console log and also the ... vArgs.append("--logfile=logfile.log"); ... libvlc_new(argc, vArgs); parameter is not working - wit...
I could play fine the urls with the libdash demo app (qtsampleplayer).
after a reboot I'm not getting any longer errors, now the video slider moves and it shows me the video settings under the Codec info menu point, but the screen is black and there is also no sound
hello, here is my lgo for onf of the streams: core debug: processing request item: OfForestAndMen_15s_onDemand_2014_05_09.mpd, node: Wiedergabeliste, skip: 0 core debug: rebuilding array of current - root Wiedergabeliste core debug: rebuild done - 3 items, index 2 core debug: starting playback of ne...
Hello, while I'm not coming forward with the libvlc and dash problem I have, I started now testing the dash playback of the nightly build VLC 3.0.0. Looks like this version against all the info I found in the net is not able to play back any dash stream I tried. here some examples: http://www-itec.a...
Hello, I try to implement a player what gets the audio and video stream from libdash (dash streams) and play them together in vlc. I've seen a lot of posts about imem and smem but I could not figure our what I have to use for such a scenario and how. so perhaps somebody did already something like th...
Hello, while the dash functionality in the vlc player does not play most of the stream (mostly only audio) I want to implement here something by myself using the libdash. I implemented already the part what's reading the stream segments (audio and video) and writes this right now to disc into one fi...
Hello,
While playing back a file i get an Media error, looks like the file is corrupt. Unfortunately i See this only in the log, but the error Event i coonected is not Thron here. How can i get this Info, so I can act on his like initiates a redownload or so
ok, but before this I tested the vlc player (for mac) and get here the same result each time when I push play and then stop, its adding here also 1MB around. This looks for me like a leak, but its the obviously not in my code, while its acting the same on the 2.2.1 player I installed from the DMG fi...
Hello Rémi, to be here on the save site, I made now a small qt app where I have my player running in, so I'm sure nothing from the rest of the app is producing this problem. I also added a button what is calling libvlc_release(instance). Ii get still the same result, with each start of the video the...
as you can see in the source for the stop method, I only call libvlc_media_player_stop(this->vlcPlayer); and then perhaps also libvlc_media_player_release(this->vlcPlayer);
I'm not initiating the vlc instance each time I start a new file, I guess this would take longer
Hell,
I have to do this also after each stop, even when I start after this another file? In the examples I found even libvlc_media_player_release(this->vlcPlayer); was not called when the stop button gets pushd