Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (61)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

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

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (9311)

  • lavf/subviewerdec : Support higher sub-second precision.

    20 mars 2020, par Carl Eugen Hoyos
    lavf/subviewerdec : Support higher sub-second precision.
    

    Fixes ticket #8575.

    • [DH] libavformat/subviewerdec.c
  • FFmpeg - How to trim with high precision ?

    11 octobre 2016, par DSalenga

    I am pretty stucked with the way that FFmpeg trims videos, so I would be really grateful if someone could help me.
    Basically, what I am trying to do is : I have a video sequence and I want it to stop in a certain second, freeze the image some seconds (like a pause), and then reproduce again from the same exact frame. I could say that I am dealing with three videos : A.mp4 (first part of the video sequence), B.mp4 (frozen image) and C.mp4 (second part of the video sequence). Besides, I also perform an overlay with filter_complex.

    The part of generating a video from a static image is not a problem, my main concern is to find the way to trim and concatenate videos accurately. From other posts and sources, I discovered that FFmpeg trims from those Frames that are Keyframes, which can be forced. However, the result I obtain is not the appropriate one, because my video A ends in a frame different from the one in the beginning of C.

    The commands I am using are the following ones :

    ffmpeg -y -i VideoSequence.mp4 -c:v libx264 -pix_fmt yuv420p \
    -force_key_frames "expr: gte(t,n_forced * 15)" -t 30 VideoOut.mp4

    [Note that everything inside Filter Complex is about an Overlay, which works fine]

    As far as I know, the resulting video should have a Keyframe every 15 seconds. Now, I want to cut the video into 2 parts ("before second 15" and "after second 15") :

    ffmpeg -y -ss 00:00:01 -i VideoOut.mp4 -t 14 -c copy A.mp4

    ffmpeg -y -ss 00:00:15 -i VideoOut.mp4 -t 5 -c copy C.mp4

    As mentioned, I expect the end of A.mp4 to "match" with the beginning of C.mp4 (at a frame precision), but the result I obtain is far from being perfect.

    Thank you very much, any kind of help will be appreciated !

  • webm_chunk : Set pts precision to milliseconds

    23 août 2016, par Vignesh Venkatasubramanian
    webm_chunk : Set pts precision to milliseconds
    

    Milliseconds is the de-factor precision for timestamps in
    Matroska/WebM media.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/webm_chunk.c