Bonjour, J'ai réalisé une implémentation manquante au niveau du module amem, mais je ne suis pas parvenu a trouver comment compiler VLC dans mon environnement, ni réussis à créer un patch a partir de GitHub Desktop sans envoyer une pull request.. Du coup, je poste ici le fichier original, ainsi que ...
Hi, I've just spended my day trying to import sound in my software from VLC. For that purpose, I used both libvlc_audio_set_callbacks and libvlc_audio_set_format. Since my software is in c# and use float ranged [-1 : 1], I wasted a lot of time tring to figure out what fourCC push to VLC to get my IE...
For anybody who could havce the same issue, I've just forgotten to pin in memory the callback, in the c# side. I assume that any new set of the callback using wrapping pin temporaly only the last callback used, than kto the marshaller.
Hi, I manage to create a video using these callbacks, by using an sout parameter. I 've got some questions : -How I configure the format / codecs of data i give to read callback ? -Can I put both video and audio stream in the same time ? Or should I assemble two media from callbacks ? Thanks for you...
Basicaly size_t is standard in C++ for an size value, as an alias to unsigned int.
ssize_t is in fact signed size_t, so a simple int that allow you to return negative value on error...
Hi, Currently working on libVLC, i've just found that on the fourcc_list file http://www.videolan.org/developers/vlc/doc/doxygen/html/fourcc__list_8h_source.html : 771 B(VLC_CODEC_RGBA, "32 bits RGBA"), 772 A("RGBA"), 773 B(VLC_CODEC_RGBA, "32 bits ARGB"), 774 A("A...
I use this function : https://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc__media__player.html#ga612605f2e5c638d9f4ed59021d714bf0 I use it wrapped in C#. The problem : I create 2 different instance of VLC, and also two different VLC Player , using two different VLc media. Naturally...
I bet on simlink : Which of them did you create. I tried too to use vanilla DMG, without succes. I got a new problem. I use several instances of VLC, create for each a player and a media on the same file. I can play a video but when i start to makje play other players the first one lose video... Is ...
I agree, the best for would be to get the methodoly to build a .bundle from LibVLC.
I used what you send to me by swhitching the extensions to .bundle. It would be awesome to get the xcode project.
Hi / Salut ! I'm currently working on a C#, using libVLC wrapped. On windows 8, 64 bit No problem : I wrap, I get the job done with no particular job. On macos X 10,10,3, I get nothing working : It return null to the libvlc_new, not even a log. It's exactly the same code from windows and it's not a ...