Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (92)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9057)

  • Revision 444c8d4c53 : Merge "Making functions read_{inter, intra}_segment_id more similar."

    13 juillet 2013, par Dmitry Kovalev

    Merge "Making functions read_inter, intra_segment_id more similar."

  • exec() with SuPHP and SafeMode Off (php.ini local) show wrong path and fail execution

    29 juillet 2013, par abkrim

    Try this

    <?php
        if (exec('/usr/bin/ffmpeg -i 47.mp4 -acodec aac -ab 128kb -vcodec mpeg4 -b 1220kb -mbd 1 -s 320x180 final_video.mov"'))
            { echo "Success"; }
        else { echo "No good"; }
    ?>

    But on shell see—>

    sh: /usr/local/php/bin/ffmpeg: No such file or directory

    Server it's Apache+SuPHP with a local php.ini file for disable SafeMode

    I don't understand why show sh : /usr/local/php/bin/ffmpeg : No such file or directory instead real path put on php script.

  • Streaming Local Video file as RTSP and publish to a port

    25 août, par Gary Lu

    I am trying to setup a single docker that can stream local file as rtsp to a port.

    


    Meaning, within the docker there will be some local videos publish as rtsp to a port of that docker.

    


    Then externally, I can fetch the stream from rtsp :// :/mystream

    


    I tried looking into rtsp-simple-server, but it does not seem to have the option of local file streaming, rather it requires first set up a docker server then using ffmpeg to publish video to that server.

    


    Is there a way to achieve the wanted single docker RTSP stream server ?

    


    There is another response of building a docker with VLC installed, however it seem to be bulky and overkill, plus the outcome does not seem to be as smooth.