Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (102)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (10307)

  • ffmpeg - join images and audio to result video

    6 décembre 2016, par Arthur Alves

    I have a lot of images with different sizes (i.e. 1024x768 and 900x942) and an audio file (audio.mp3) of 30 seconds and I need to create a video from them.

    I’m trying it now with : result%d.png (1 to 4) and audio.mp3

    ffmpeg -y -i result%d.png -i audio.mp3 -r 30 -b 2500k -vframes 900
    -acodec libvo_aacenc -ab 160k video.mp4

    The video video.mp4 has 30 seconds but the 3 first images is showed very quickly when the last image remains until the end of the audio.

    Each image needs to be showed in a equal time until the end of the audio. Anyone knows how to do it ?

    The number of the images will vary sometimes.

  • Revision 363dc6ceda : Don't crash if motion vector ref points to out-of-bounds area. This can only ha

    7 juin 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/common/vp9_mvref_common.c



    Don't crash if motion vector ref points to out-of-bounds area.

    This can only happen if partition is partly out-of-frame, in which
    case the referenced mv is either out-of-frame also (and thus has the
    same value as an already-read one), or it is actually uninitialized,
    in which case we don't want to use it.

    Change-Id : Icf39fa4d987c7abcbebb9bbdcdd6311e8fb9d3c9

  • ffmpeg, -shortest does not work when overlaying PNG sequence on a still

    27 août 2014, par Aviator Addis

    How do you make this work ?

    ffmpeg -loop 1 -i emma.jpg -r 29.97 -i source\source_%%05d.png -filter_complex overlay -r 29.97 -pix_fmt yuv420p -y -shortest sample_source.mp4

    It seems the -shortest option does not work and it just keeps encoding with no stop on the last frame. I’m using the latest static 8-27-2014 64 bit build on windows 8.1 If I assigned -t value it will stop at the specified length, but I need it’s output length set to whatever the sequence might happen to be (at it will vary).