Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (11391)

  • Revision 15661 : report de [15660] : addcslashes au lieu de addslashes

    30 avril 2010, par cedric@… — Log

    report de [15660] : addcslashes au lieu de addslashes

  • Revision 2520 : ce fichier n’a plus lieu d’être puisque remplacé par une feuille de style ...

    6 août 2009, par kent1 — Log

    ce fichier n’a plus lieu d’être puisque remplacé par une feuille de style dynamique

  • ffmpeg : Preventing Unecessary Duplication of Frames In Overlay

    10 avril 2018, par SuperUser_Novice

    I’m using ffmpeg to overlay two videos. The overlay which sits in the top left corner is a collection of png images that act as a frame-counter and time-stamp for the video that the frames have been created around.

    The problem I’m having is that the frames have been generated to exactly match the number of frames the video it is overlaid to has, that way the counter is accurate and frames can be analyzed later. Right now :

    "ffmpeg", "-i", fmt.Sprintf("%s%s", CCME.PathsToUse[0], CCME.UnderlayVideo),
                      "-i", fmt.Sprintf("%s%s", CCME.PathsToUse[1], CCME.VideoName),
                      "-filter_complex", fmt.Sprintf("overlay=%s", CCME.OverlayPosition),
                      "-vsync", "0", "-y", "-strict", "-2",
                      fmt.Sprintf("%s%s.%s", CCME.PathsToUse[2], CCME.FinalVideoName, CCME.VidFormat

    (This is a go program running ffmpeg through exec thus the weird format) produces exactly the number of frames expected, but upon analyzing it, every third frame in the overlay video is dropped and the frame before it is duplicated, taking the correct frames place.

    I’ve analyzed the overlay video on its own and it does not have any duplicated frames and the underlay videos frames do not duplicate either.

    This behavior is confusing the rest of the program which is expecting an ordered set of frames and is instead getting repeats of one frame then a jump ahead to the frame it’s supposed to be at (It is also confusing me). Can anyone explain this behavior and perhaps let me know if there is a way to prevent this from happening ? Is there a problem with the arguments I’m passing to ffmpeg in the snippet that may contribute to this behavior ?

    TimeStamps For Videos
    TimeStamps

    Videos Durations
    Video Durations

    Command :

    ffprobe -f lavfi -i "movie=inputvid.format,fps=fps=24[out0]" -show_frames -show_entries frame=pkt_pts_time -of csv=p=0

    Please note the 1000fps reported by the videos window is wrong. Running ffprobe shows the video is actually 24 fps or 24/1.

    Videos + Result of Overlay