Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (78)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (12876)

  • How can I replace the audio of different time intervals of video multiple audio files using ffmpeg ?

    29 novembre 2016, par Suresh Kumar S

    I want to replace the specific portion of the audio in the video with multiple audio files. I am facing issues with FFMPEG in android.
    Help me for this. Thanks in advance :)

    Currently I use this command

    ffmpeg -i video.mov -i audio1.mp3 -i audio2.mp3 -filter_complex \
    "[1:a]atrim=end=10,asetpts=PTS-STARTPTS[a1]; \
    [2:a]atrim=end=10,asetpts=PTS-STARTPTS[a2]; \
    [a1][a2]concat=n=2:v=0:a=1[a] \"
    -map 0:v -map "[a]" -codec:v copy -codec:a libmp3lame -shortest output.mov
  • Two versions of same static libraries conflict at run time

    2 décembre 2016, par shahid

    I am using ffmpeg 3.2 static libs (compiled for ios)
    In the same project i have used mobilevlckit, which is using ffmpeg 2.0.2 static libs, compiled for ios but with different configuration. Both of them work well im separate projects. But putting them together causes crashes as name of the static libraries are same and they import each other and pickup the wrong versions. Does anyone know how to fix it ?

    Thanks !

  • Compare two audio files and detect out of sync time

    15 décembre 2016, par kostya572

    I have two very similar audio files, but second audio file is out of sync for several seconds. I allready used :

    ffmpeg -i audio1.wav -itsoffset 0.67

    If i use this solution everytime i need manualy check delay time.
    How can i make this operation automatically ? Is there any waveform comparing software that can detect at what second i need set "itsoffset" ? Thank you.