Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (60)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6482)

  • rtmpproto : Pass the ’live’ parameter in the right unit

    3 octobre 2013, par Martin Storsjö
    rtmpproto : Pass the ’live’ parameter in the right unit
    

    The current magic numbers passed are values in seconds, while the
    parameter itself should be passed over the wire in milliseconds.

    This makes (some/all ?) live streams from Red5 work correctly, that
    previously returned StreamNotFound even with "-rtmp_live live". After
    this commit, the default ’any’ also works on these streams.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtmpproto.c
  • How to pass input (Feeds) from camera to ffmpeg for live streaming

    1er janvier 2017, par A Sahra

    I want to stream video live that’s captured via getUserMedia and pass it to ffmpeg as an Input or feed to make it live for other users on my website.

    How would i get the Video as video4linux2 here ?

    $ffmpeg -f video4linux2 -i /dev/video0

    I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.

  • ffmpeg command for php not working on live server

    17 septembre 2022, par Anonymous

    I am generating thumbnail from video while uploading and I have installed ffmpeg on local but in live server ffmpeg is not installed and hosting provider asking extra charges to install it, so i have kept ffmpeg directory which i copied from local machine and placed to live server and provided live server path and try to call script but it is not generating thumbnail

    &#xA;&#xA;

    $ffmpeg = &#x27;https://example.com/ffmpeg/bin/ffmpeg.exe&#x27;;&#xA;        $video_temp_path = $_FILES[&#x27;upload_file&#x27;][&#x27;tmp_name&#x27;]; &#xA;        $video_title = $_FILES[&#x27;upload_video&#x27;][&#x27;name&#x27;];&#xA;&#xA;&#xA;        $image = &#x27;upload/&#x27; . $video_title . uniqid().&#x27;.jpg&#x27;;&#xA;//time to take screenshot at&#xA;        $interval = 5;&#xA;//screenshot size&#xA;        $size = &#x27;320x240&#x27;;&#xA;//ffmpeg command&#xA;       $command = $ffmpeg.&#x27; -i &#x27;.$video_temp_path.&#x27; -deinterlace -an -ss &#x27;.$interval.&#x27; -f mjpeg -t 1 -r 1 -y -s &#x27;.$size.&#x27; &#x27;.$image.&#x27; 2>&amp;1&#x27;;&#xA;&#xA;       exec($command, $array);&#xA;

    &#xA;