Recherche avancée

Médias (91)

Autres articles (32)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (3129)

  • avcodec/mpeg12dec : Use saturated addition when combining error_count

    14 mars, par Andreas Rheinhardt
    avcodec/mpeg12dec : Use saturated addition when combining error_count
    

    Fixes undefined integer overflows. The overflows could always
    happen, yet before 4d8b706b1d33e75eb30b289c152280d4535c40e6
    it was not undefined because the code implicitly used atomic
    types, for which signed integer overflow is defined.

    Reported-by : Kacper Michajlow <kasper93@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12dec.c
  • avformat/mxfdec : Check llen addition for overflow

    25 décembre 2024, par Michael Niedermayer
    avformat/mxfdec : Check llen addition for overflow
    

    Fixes : signed integer overflow : 9223372036854775807 + 1 cannot be represented in type 'long'
    Fixes : 377971441/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-4966030696316928

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mxfdec.c
  • Why doesn't extracting one second from a video at least result in a multiple of the frame time ?

    21 avril 2018, par joeycato

    Trying to get a better understanding on why I’m unable to extract a segment from a movie clip with exact timing, even if I account for clip’s frame rate.

    For example, if I run the following command on a 29.97 fps video clip in an attempt to extract 1 second of video :

    ffmpeg -i input.avi -ss 0 -t 1 -c:v huffyuv -an output.avi

    the duration results in 1.001 seconds.

    Now this would make more sense to me if the result was actually a multiple of 0.02997 seconds (29.97 fps / 1000 ms) but doing the math to check the multiples (0.02997, 0.05994, ..., 0.98901, 1.01898, 1.04895), I see that the closest multiple is actually be 1.01898 or 1.04895

    What am I missing here ?