Recherche avancée

Médias (91)

Autres articles (78)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3027)

  • avcodec/h264 : Avoid using gray gap frames as references

    17 octobre 2023, par Michael Niedermayer
    avcodec/h264 : Avoid using gray gap frames as references
    

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

    • [DH] libavcodec/h264_refs.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
  • avcodec/h264dec : Support skipping frames that used gray gap frames

    17 octobre 2023, par Michael Niedermayer
    avcodec/h264dec : Support skipping frames that used gray gap frames
    

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

    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
  • Gray screen issue after recovered video with ffmpeg

    11 mars 2023, par Mark

    After recovered ".mp4" videos from mobile phone, some videos were corrupt. I used the FFMPEG method to fix the videos.&#xA;Some CMD commands below ;

    &#xA;

    First Code: recover_mp4.exe good.mp4 --analyze&#xA;&#xA;Second: recover_mp4.exe bad.mp4 recovered.h264 recovered.aac&#xA;&#xA;Third: ffmpeg.exe -r 30 -i recovered.h264 -i recovered.aac -bsf:a aac_adtstoasc -c:v copy -c:a copy recovered.mp4&#xA;&#xA;Alternate code: ffmpeg -i recovered.h264 -pix_fmt yuv420p -crf 18 result.mp4&#xA;

    &#xA;

    Some videos have been improved after using the above codes. Some videos work fine. On the other hand some videos work in video players, but images are only gray or green screen or a mix of both. In short, some videos do not work properly.

    &#xA;

    Below I am sharing a screenshot from the video that is not working properly.

    &#xA;

    greyscreenphotoexample

    &#xA;

    Is it possible to fix the above errors ? Is there any other code or method I should use ? How can I handle the gray screen problems in the video ?

    &#xA;

    Note : I have used all versions of FFMPEG and Recover_mp4.exe.

    &#xA;