Recherche avancée

Médias (1)

Mot : - Tags -/intégration

Autres articles (101)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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

Sur d’autres sites (12609)

  • FFMpeg - Trimming out the video after removing duplicate frames

    19 mars 2017, par MarianD

    I removed many duplicate frames from video (and completely removed audio) by this command

    ffmpeg -i scene.mkv -vf mpdecimate,setpts=N/FRAME_RATE/TB -map:v 0  scene3.mp4

    (by an Mulvya’s answer, thanks again).

    The resulting video is OK but the total duration will not change - the last frame of original video is frozen to fill the remaining time (when playing back the video).

    Is there some way to trim the video so that it will finish at this last frame ?

  • FFMpeg - Trimming out the video after removing duplicate frames

    29 avril 2021, par MarianD

    I removed many duplicate frames from video (and completely removed audio) by this command

    



    ffmpeg -i scene.mkv -vf mpdecimate,setpts=N/FRAME_RATE/TB -map:v 0  scene3.mp4


    



    (by an Mulvya's answer, thanks again).

    



    The resulting video is OK but the total duration will not change - the last frame of original video is frozen to fill the remaining time (when playing back the video).

    



    Is there some way to trim the video so that it will finish at this last frame ?

    


  • FFMPEG video (mp4) to image sequence with the time in the filename [closed]

    7 juin 2013, par Ewald Bos

    i have a question and can't find the answer perhaps you can help ?

    I am using FFMPEG (windows enviroment) and convert a video (mp4) to a series of images based on scene detection (i-frames) and add the timecode inside the image (burn) like this ;

    ffmpeg -i video.mp4 -vf "drawtext=fontfile=trebucbd.ttf: timecode='00\:00\:00\:00': r=25: x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000000@1, select=eq(pict_type\,I)" -vsync 0 -an iframes/%06d.jpg

    All this works perfect but i also would like to add the timecode in the filename, so instead of naming it 000001.jpg, 000002.jpg i would like to have 00.00.00.01.jpg, 00.00.00.17.jpg and thoughts about this ?