Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (10325)

  • doc : Point to the correct, actually maintained gas-preprocessor repo

    12 mars 2014, par Martin Storsjö
    doc : Point to the correct, actually maintained gas-preprocessor repo
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] doc/platform.texi
  • avfilter/vf_ciescope : fix black-point position

    17 janvier 2023, par Paul B Mahol
    avfilter/vf_ciescope : fix black-point position
    
    • [DH] libavfilter/vf_ciescope.c
  • Adjust Audio Start Point by 3 Frames

    11 mai 2022, par craigeley

    Because of an issue with my audio recorder, I have audio files that are always 3 frames behind the start of my video files, even though they have identical timecode. Currently, I am overcoming this issue by using -itsoffset, like so :

    &#xA;

    ffmpeg -i video.MP4 -itsoffset 0.12512513 -i audio.WAV -c:a aac -map 0:v:0 -map 1:a:0 new.mp4&#xA;

    &#xA;

    Where 0.12512513 is 3 divided by 23.976. The results of this are satisfactory, but is contingent on all of my footage being shot in 23.976.

    &#xA;

    However, since I spoke to tech support for the device and they assured me it will always be off by exactly three frames, I'm wondering if there is a faster and more universal way to do this, either a) a command like -itsoffset that accepts frames as a starting point, or if the better solution is to just cut off the first three frames of the video, which would also put them in sync. I have tinkered with trim=start_frame=3 but I can't figure out the correct position to place it within the command.

    &#xA;

    Any advice from experienced ffmpeg'ers would be much appreciated !

    &#xA;