Recherche avancée

Médias (91)

Autres articles (34)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (3725)

  • Révision 20453 : PHPDoc minimal (et indentation en espace comme le reste du fichier)

    27 avril 2013, par marcimat -
  • Android Create MP4 with bitmap series and mp3 by FFmpeg (i need minimal ffmpeg config for build)

    29 septembre 2017, par grizzly

    i’m building ffmpeg for android. my target is only create mp4 video with series of bitmap image and merge mp3 audio. i want use ffmpeg only only for this target. So i need optimized config for this target. i try find in google and find not bad config list. but i need full optimize config for reduce size of ffmpeg in android app. can you suggest me best config for this target ?

    i find this :

    Minimal configuration for mp4 files

    how do i modify this ffmpeg build script for minimal binary size output

    but is not complete optimized.

    please suggest me full optimize config for my target. thanks

  • Take webcam picture with minimal delay [on hold]

    20 septembre 2017, par x-ray

    I would like to take a picture from a webcam and send that as an http server’s response. I know how to do the http server part, but I need a command that takes the picture and writes it to stdout. I tried this with ffmpeg :

    ffmpeg -f video4linux2 -video_size 1920x1080 -input_format yuyv422 -i /dev/video0 -f image2 -frames:v 1 -qscale:v 1 pipe:1

    This is working, the only drawback is that it takes about 3 seconds to get the picture. The delay comes from ffmpeg (not from the server/network), probably because it needs to wait for the webcam to initialize. I found that out by replacing pipe:1 with out.jpeg and running the ffmpeg command on the console.

    So now my idea is to have one ffmpeg process running all the time and stream the webcams raw video data somewhere, and then start a second ffmpeg process on each http request to get the current video frame as jpeg from that somewhere. However I do not know if it can work that way, and I do not know how to implement it. There might also be a better way for the whole task (send current picture from webcam on http request with minimal delay).

    Appreciate any help with this !