Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (66)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (11841)

  • avcodec/h264_slice : Fix dequant table init with field pictures

    12 février 2016, par Michael Niedermayer
    avcodec/h264_slice : Fix dequant table init with field pictures
    

    Fixes regression of Ticket4389

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_slice.c
  • Creating personalized video from user submitted pictures and data

    18 décembre 2016, par Rajat Singhal

    Can someone guide me towards what technology to use to create personalized video from user submitted pictures and data.. The process has to be automated, as in server must be able to create a downloadable video from photos and text submitted by user..

    So the process will probably be like one video will be created by a hired artist, with placeholders where the user submitted pictures and text will fit in. Now with user submitted data video can be created and downloaded from the website..

    An example can be the videos created by facebook now-a-days on your birthday or year end. They consist some of your photos, some text and have a common video theme.. You can view one here http://newsroom.fb.com/news/2016/12/facebook-2016-year-in-review/

    One way I’ve found is to write the video code in html5 and then record it with phantomjs and ffmpeg.. http://mindthecode.com/recording-a-website-with-phantomjs-and-ffmpeg/

    But it seems a bit unnatural way of doing it.. And also I think not a lot of good artists are out there who can create the video theme in html5..

  • avcodec/wmv2dec : Zero mb_type array for I pictures

    9 août 2022, par Andreas Rheinhardt
    avcodec/wmv2dec : Zero mb_type array for I pictures
    

    Up until now, ff_wmv2_decode_secondary_picture_header() only
    set the mb_type array for non I-pictures, so that the decoding
    process uses the earlier values of this array ; this affects
    the output of the wmv8-x8intra FATE-test (which this patch
    therefore updates). These earlier values were set when decoding
    earlier frames or when the buffer was initially zero-allocated.
    A consequence of this is that the output of this test would be
    random if ff_find_unused_picture() would select the unused picture
    to return at random. Furthermore decoding from a keyframe onwards
    depends upon the earlier state of the decoder.

    This patch therefore zeroes said array when decoding an I picture.

    (It is not claimed that zero is the right value to fill the array with.
    I just don't know.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/wmv2dec.c
    • [DH] tests/ref/fate/wmv8-x8intra