Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

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 ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (12298)

  • Ffmpeg : Move a slider "image" over a "background" from 0% to 100% in sync with the audio

    7 février 2014, par Znuff

    I'm trying to create a video using the follwing code :

    `$`ffmpeg -loop 1 -r 5 -i video.png -r 5 -i progress.png -filter_complex "overlay=x='if(gte(t,0), -W+(t)*5, NAN)':y=H-h" -i video.mp3 -acodec copy video.mp4

    I have the following files

    • video.png http://i.imgur.com/pmwnaLV.png
      • this is a 1280x720 px still frame that is simply a background with a waveform of the video.mp3 file
    • progress.png http://i.imgur.com/qXltKR2.png
      • this is simply a 1280x100 px semi-transparent image that should simulate an animation (from from 0 to 100% of the width of the video.png file, in order to simulate "fill up" animation.

    My issues are as following :

    • The video is not in sync with the audio. The progress bar is way off, instead of finishing at the end of the song, it just keeps going on and on and on and on...
    • Also... it just keeps going on and on ! I left it create a 1 hour video and it never stopped.

    I know I'm missing something in the filter, but I have no idea how I could fix it.

    Could someone lend me some help ?

  • doc/examples : Always open files as "binary", not "text".

    25 juin 2020, par Carl Eugen Hoyos
    doc/examples : Always open files as "binary", not "text".
    

    Fixes ticket #8638.

    • [DH] doc/examples/decode_video.c
    • [DH] doc/examples/hw_decode.c
  • Need help to convert all "mp4" files to "gif" in a folder/directry with ffmpeg and .bat

    10 février 2023, par Lucas Yang

    I need some help.I try work automation to eliminate unnecessary time, I was looking for a way to convert video files to gif files.
So I learned how to make it using ".bat" through Googling, and want to make it a ".bat file" that automatically converts all mp4 files at one click because only one file is converted at a time.

    


    it worked perfect for me. but I got a lot of vidoe files what i have to convert. I installed ffmpeg in my PC(@window)

    


    this is what i find

    


    @echo off
chcp 65001
cls

setlocal
echo 프레임 수치를 설정하세요
set /p fps= 

ffmpeg.exe  -i "%~1" -vf "fps=%fps%,scale=860:-1:flags=lanczos,palettegen" "%~n1.png"
ffmpeg.exe  -i "%~1" -i "%~n1.png" -lavfi "fps=%fps%,scale=860:-1:flags=lanczos [x]; [x][1:v] paletteuse" "%~n1.gif"

del "%~n1.png"

goto :a


    


    Thank for reading it.