Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9777)

  • play vlc stream in browser with video tag

    2 juin 2013, par brux

    I am streaming files using vlc. I want to put on the home page of the site a page that uses the video tag to play the stream in the browser.

    here is my vlc command

    vlc *.mp4 --sout '#transcode{vcodec=h264,vb=92,channels=1,ab=16,samplerate=512,width=320}:standard{access=http,mux=ts,dst=:666/tv.mp4}' --sout-keep

    here is the html code i tried, if i go into the code for the page and click on the link to the stream it shows the binary for the video in the window so o know the path is right

    <video>
          <source src="http://sydomain.com:666/tv.mp4" type="&#39;video/mp4;" codecs="avc1.4D401E, mp3"></source>
    </video>

    but no stream is playing the the browser

  • How to play live h264 stream with python [closed]

    27 juillet 2020, par vkh53121Acuoly.com

    I have a socket that listen to h264 stream, I can save this stream to file and play it with ffplay.

    &#xA;

    This not rtp/rtsp that wraps h264 .that only h264.

    &#xA;

    I want to watch this stream live, not save to file and after that run ffplay.

    &#xA;

    How can I do that with python,so that work on windows and linux

    &#xA;

  • Play AVI with sound in OpenCV on Win32

    5 janvier 2015, par Andrei Shumilov

    I have working OpenCV project, so don’t ask me replace OpenCV. I need only add sound there. I need play AVI by OpenCV and any sound player (vfw/ffmpeg...) on Win32. I found only one sample : Audio output with video processing with opencv

    Mr. Karl Phillip wrote there : "On my Mac I compiled it..."

    But I must use MSVS2010. Ok, I installed mingw to try it on Win32, but still confuse in libs. I’m not a good programmer.

    Give me please links to WORKING examples OpenCV + anysoundplayer on Win32 or help me port Karl’s example at least.