Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (39)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (9530)

  • c# - WAV file trimming and adding silence

    16 mai 2018, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?

  • c# - WAV file trimming and adding silence

    2 janvier 2017, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?

  • How to include font in FFMPEG command without using the fontfile option ?

    26 novembre 2020, par Avinash Modi

    I am using the following command to add watermark in my video using font TIMESNEWROMAN :

    


    ffmpeg -i input.webm -vf "drawtext=text='© Krishna':fontfile=C//:/Windows/Fonts/times.ttf:x=(main_w-text_w-10):y=(main_h-text_h-10):fontsize=32:fontcolor=black:box=1:boxcolor=white@0.5: boxborderw=5" -preset ultrafast output.mp4


    


    Now, I want to provide the font TIMESNEWROMAN or any other font instead of fontfile path. Is it possible to do that ?