Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (36)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (12712)

  • avcodec/ac3dec : Optimize frame start search

    8 janvier 2019, par Michael Niedermayer
    avcodec/ac3dec : Optimize frame start search
    

    Fixes : Timeout
    Fixes : 11619/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-5632398021099520
    Fixes : 11620/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_fuzzer-5711996515778560
    Fixes : 11658/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EAC3_fuzzer-5701006524940288

    Before : Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-5632398021099520 in 20338 ms
    After : Executed clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AC3_FIXED_fuzzer-5632398021099520 in 11825 ms

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

    • [DH] libavcodec/ac3dec.c
  • What to do when opening a video and decodec AVFrame.pkt_dts doesn't start at the beggining

    6 mai 2020, par Milo

    I have a few video files (.mpg) that are cut from a larger video file and are probably encoded incorrectly. So when decoded, the received AVFrame.pkt_dts is set around half a second into the file.

    &#xA;&#xA;

    And since I'm calculating the current frame based on pkt_dts my current frame starts from 13. &#xA;I can detect this and calculate the frame offset with

    &#xA;&#xA;

    frame_offset = (pFrame->pkt_dts/pFrame->pkt_duration)&#xA;

    &#xA;&#xA;

    This however isn't much of an issue, but when implementing seeking with

    &#xA;&#xA;

    // seek to frame 500 and seek back to first key frame&#xA;seekTarget = 500;  &#xA;av_seek_frame(videoState_->ptrFormatCtx_, -1, seekTarget, AVSEEK_FLAG_FRAME  | AVSEEK_FLAG_BACKWARD);&#xA;

    &#xA;&#xA;

    I usually get a first key frame and then just decode next frame until my specified frame. But with these files, av_seek_frame() will always put me exactly on the frame I seek but it's missing data because parent I frame is not decoded.&#xA;I'm guessing this happens because of incorrect pkt_dts from the start.

    &#xA;&#xA;

    I can kind of fix this by using the frame_offset again but is that really a correct approach to this issue ? It seems a little hacky.

    &#xA;

  • FFmpeg stucks for few seconds on start

    7 février 2018, par tarasmorskyi

    I’m trying to cut and resize video on Android(but it is similar on MacOS) , but when I run the ffmpeg command it returns me

    frame= 0 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed=

    It repeats for about 20 sec (I have 4K video with 3 sec duration).

    Is there any way to improve process speed ? Here is example of my ffmpeg command

    ffmpeg -y -i input.mp4 -ss 00:01.82 -to 00:02.94 -vf scale=500:1024 -c:v libx264 -c:a aac -b:v 500k -b:a 96k output.mp4