Recherche avancée

Médias (91)

Autres articles (86)

  • 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 v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5111)

  • Revision 5437474c54 : Merge "Revert "Layer based rate control for CBR mode.""

    3 février 2014, par Marco Paniconi

    Merge "Revert "Layer based rate control for CBR mode.""

  • Revision 03a60b78db : Add a new control of golden frame boost in CBR mode 0 means that golden boost i

    27 octobre 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/vp9_cx_iface.c


     Modify /vpx/vp8cx.h


     Modify /vpxenc.c



    Add a new control of golden frame boost in CBR mode

    0 means that golden boost is off, and uses average frame target rate,
    a non-zero number means the percentage of boost over average frame
    bitrate is given initially to golden frames in CBR mode.

    Change-Id : If4334fe2cc424b65ae0cce27f71b5561bf1e577d

  • Extract frames from video with ffmpeg - header problem ?

    19 juillet 2019, par Jehol

    I want to convert .AVI files coming from a camera-trap to individuals frames, ideally using ffmpeg. Up to now I am not succeeding.

    The most simple thing I tried, to try to locate the problem, is this (I want all frames and my test file is test.avi) :

    ffmpeg -i test.avi output_%04d.png

    It fails with the following console message :

    [avi @ 0x559fb596f8c0] unknown stream type 73647578
    [avi @ 0x559fb596f8c0] Something went wrong during header parsing, tag [0][0]id has size 338702712, I will ignore it and try to continue anyway.
    [mjpeg @ 0x559fb59709e0] No JPEG data found in image
       Last message repeated 100 times
    [avi @ 0x559fb596f8c0] decoding for stream 0 failed
    [avi @ 0x559fb596f8c0] Could not find codec parameters for stream 0 (Video: mjpeg (MJPG / 0x47504A4D), none(bt470bg/unknown/unknown), 1280x720): unspecified pixel format
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    [avi @ 0x559fb596f8c0] Could not find codec parameters for stream 1 (Video: none (JUNK / 0x4B4E554A), none, 11025x22050): unknown codec
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    Input #0, avi, from 'test.avi':
     Duration: 00:00:10.50, start: 0.000000, bitrate: 28129 kb/s
       Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), none(bt470bg/unknown/unknown), 1280x720, 20.01 fps, 20.01 tbr, 20.01 tbn, 20.01 tbc
       Stream #0:1: Video: none (JUNK / 0x4B4E554A), none, 11025x22050, 11025 tbr, 11025 tbn, 11025 tbc
    Stream mapping:
     Stream #0:1 -> #0:0 (? (?) -> png (native))
    Decoder (codec none) not found for input stream #0:1

    The actual video duration is 10s (when read using vlc for instance, and this is indeed the length of video programmed on the camera-trap. ffmpeg says the duration is 10.50s, and says there is a problem with header parsing (see above).

    I have no idea how to sort this, despite having looked at more than many ffmpeg ’convert video to frames’ post. Any hint would be appreciated, thanks.