Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (68)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (13945)

  • C++ How to stream mpeg over http?

    9 mai 2014, par Titouan42

    I have a streaming server (nodejs) which listen a mpeg stream over http,
    by using this code.

    Currently, I would like to feed my server without the ffmpeg tool, as below, but with a C++ code.

    ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
    
    - b 800k -r 30 http://example.com:8082/yourpassword/640/480/

    So, my question is how to simply stream mpeg over http?

    Help please !

  • Nginx - How and when are "exec" commands executed

    14 juillet 2015, par user1767754

    I have a config file

    rtmp{
       server{
           listen 1935;
           application publish {
           live on;

           exec touch /Users/chaleon/Desktop/myfile.txt;
           }
       }
    }

    1) Is the exec command activated when i call rtmp ://192.168.1.3:1935/publish ?

    Thats what i am expecting, but calling the addresse over vlc, will not cause the exec to run. However i’ve already managed to setup streaming from ffmpeg to a nginx application, which was accessible.

  • avformat : implement SChannel SSP TLS protocol

    4 octobre 2015, par Hendrik Leppkes
    avformat : implement SChannel SSP TLS protocol
    

    This implementation does not support TLS listen sockets and loading
    CA/Certs from files.

    The Windows API does not support loading PEM certs, and would either
    require a manual loader or instead be limited to loading Windows PFX
    certificates

    TLS listen sockets would have to be implemented quite separately, as many
    of the APIs are different for server-mode (as opposed to client mode).

    • [DH] configure
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/tls.h
    • [DH] libavformat/tls_schannel.c