Recherche avancée

Médias (91)

Autres articles (60)

  • 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 (11701)

  • libavformat/matroskaenc.c : fix small memory leaks on error

    19 août 2015, par Neil Birkbeck
    libavformat/matroskaenc.c : fix small memory leaks on error
    

    Fixing small leaks that can occur when mkv_write_tracks fails in mkv_write_header
    (e.g., if video track has unknown codec). Also changing mkv_write_seekhead to take
    the MatroskaMuxContext to avoid having dangling pointers.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskaenc.c
  • Use hadoop to fastly encode my videos

    30 mars 2015, par wanna know

    I’m developping a VOD plateform which get videos with the size > 2Gb so the conversion take too long and i want to use hadoop and ffmpeg to fastly encode my videos , is that possible ? Thank you

  • cutting video using ffmpeg cannot produce videos with specified length

    22 juin 2021, par david

    I have some mp4 videos and I want to split them into 2-second videos. my GOP is 2 Sec. for this aim I use the following command :

    &#xA;

    ffmpeg -i input.mp4 -c copy -map 0 -segment_time 00:00:02 -f segment -reset_timestamps 1 output%03d.mp4&#xA;

    &#xA;

    but after splitting, my new videos have different duration times. some of them are 4 Sec, one of them is 3.67 Sec. why the duration time is different from the thing I specified in command ? my command is wrong ?&#xA;is it possible to split based on frame number ? for example each 120 frame ?

    &#xA;