Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (59)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (7998)

  • Why does audio stop when rewinding video collected using ffmpeg ?

    12 mai 2020, par Vlad F

    The resulting video correctly plays only sequentially. If you jump to an arbitrary point, audio and subtitles fall off.

    



    The timing of the video files are identical.

    



    ffmpeg.exe -y -i as.mkv -i hd.mkv -codec copy -map 1:v -map 0:a -map 0:s final.mkv


    



    Log - pastebin.com/pihPfHTq

    


  • how to remove PTS gap within a file when transcoding with ffmpeg ?

    18 juillet 2017, par jsBaek

    i have a video which is from rtmp streaming.

    Since the broadcasting is on and off frequently,

    the archived file has PTS like below

    (assume that this is sec)

    0—10—20—30—40 120—130—140

    there’s discontinuity between 40 and 120 sec.

    duration of this file must be 60sec since there’s 80sec gap between 40 120.

    but when i transcoded this file, final duration became 140sec with 80sec of pausing parts.

    how can i transcode this file without "not existing" 80 sec so that output file became 60sec without redundant pausing 80 sec.

    i tried "+getpts" or "+igndts" options but they don’t work at all.

  • Setting duration is not working in ffmpeg

    7 mai 2014, par Stepan

    Have problem with creating video from 50 png files in ffmpeg in shell.
    Setting duration -t 5 and fps -r 10

    ffmpeg -i image%d.png -y -pix_fmt yuv444p -r 10 -t 5 -s 1920:1080 out.mp4

    Final duration is 2 seconds and fps is 25.

    How to set it correctly ?

    I’m running at elementaryOS, ffmpeg version 0.8.10-4

    Thanks