Recherche avancée

Médias (91)

Autres articles (57)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

Sur d’autres sites (7832)

  • avcodec/mpeg4videodec : Align idct-block appropriately

    13 mars 2024, par Andreas Rheinhardt
    avcodec/mpeg4videodec : Align idct-block appropriately
    

    It is accessed via AV_RN64A in ff_simple_idct_put_int32_10bit().
    Should fix the UBSan failures in the mpeg4-simple-studio-profile
    test here :
    https://fate.ffmpeg.org/report.cgi?time=20240312011016&slot=ppc-linux-gcc-13.2-ubsan-altivec-qemu

    Reviewed-by : Kieran Kunhya <kierank@obe.tv>
    Tested-by : Sean McGovern <gseanmcg@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg4videodec.h
  • Using ffmpeg to convert MXF fails

    30 avril 2019, par Marinaio

    I have an MXF video

    I googled syntax to convert to mov and ran it in Mobaxterm on Win10.

    "/drives/c/Program Files (x86)/ffmpeg/bin/ffmpeg.exe" -i Clip0001.MXF -c:v libx264 -c:a aac -ab 384k -sn -strict -2 output.mov

    I view it in VideoLan and it looks great.

    I load it into Magix Movie Studio 15 and audio is fine, but video is green !

    ffmpeg output.mov....shows me :

    Stream #0:0(eng): Video: h264 (High 4:2:2) (avc1 / 0x31637661), yuv422p, 1920x1080 [SAR 1:1 DAR 16:9], 4530 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)

    Even this does not work :

    ffmpeg.exe -i Clip0001.MXF output.mov

    Any suggestions on converting this ?

    Edit1 :

    Here is what it looks like in the editor :
    enter image description here

    Edit2 :
    Try this and it works, but quality is terrible.

    ffmpeg.exe" -i Clip0001.MXF -c:v mpeg4 -c:a aac -ab 384k -sn -strict -2 output.mov
  • avcodec/cbs_h2645 : Fix potential out-of-bounds array access

    18 septembre 2019, par Andreas Rheinhardt
    avcodec/cbs_h2645 : Fix potential out-of-bounds array access
    

    The maximum allowed index for an array access is FF_ARRAY_ELEMS - 1 ; yet
    the current code allowed FF_ARRAY_ELEMS. This wasn't dangerous in practice,
    as parameter sets with invalid ids were already filtered out during
    reading.

    Found via PVS-Studio (see ticket #8156).

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

    • [DH] libavcodec/cbs_h2645.c