Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (65)

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

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (12690)

  • Repeating images in a ffmpeg -i %04d.png pattern

    2 mars 2021, par Basj

    I'm making a video of 20 seconds at FPS=25, with 500 frames which are 0000.png, 0001.png, ..., 0499.png. This works :

    


    ffmpeg -framerate 25 -i images/%04d.png out.mp4


    


    but in fact there are only a few changes in the video, in my case at frames 0000, 0122, 0288, 0312, 0450. In the meantime the PNG are identical.

    


    Problem : it's always slow to generate 500 PNG files when only 5 different files would be enough ! I would like to generate only those 5 PNG files, and generate the video from them.

    


    When I try the command above with images/ containing only 0000.png, 0122.png, 0288.png, 0312.png, 0450.png and not the 495 others, obviously it fails with :

    


    


    [image2 @ 00000000006d4040] Could not open file : images/0001.png

    


    


    Question : is there a way to tell ffmpeg to ignore missing frames and use the latest available frame instead of failing, when using -i images/%04d.png ?

    


    If not, what alternative is there to generate the video with only these 5 PNG that should arrive at a precise timeframe ?

    


  • Create sliding video from pattern/tile image

    9 avril 2022, par Aldo

    Given a 300x300 tile image like this I would like to generate a 1920x1080 video just showing the repeated tile (i.e. tiles are repeated in order to cover all the 1920x1080) but also slowly moving from left to right.

    


    Using ImageMagick I know how to generate a very long image from the tile image, let say a 19200x1080 image :

    


    magick convert -size 19200x1080 tile:tile.jpg long.jpg


    


    But I have no idea on how to use ffmpeg in order to crop a 1920x1080 area from the long image and move the crop area horizontally as time passes.

    


    Any help, also with a completely different approach not based on the long image generated by ImageMagick ?

    


  • Android ffmpeg0.8 is not compiling with android ndk5 with cygwin compiler

    7 novembre 2013, par itsrajesh4uguys

    I am using the following tutorial for ffmpeg compilation .

    http://www.roman10.net/how-to-build-ffmpeg-for-android/

    I am followed all the instructions which they have provided. have changed the path in
    build_android.sh ,
    i am using android ndk5 and cygwing latest compiler.
    But i am facing following issue. .so file is not gets created .

    Krajesh@Rajesh /cygdrive/D/RAJESH-ANDROID/Rajesh-workspace/FFMPEG_2
    $ /cygdrive/d/Android_NDK/android-ndk-r5/ndk-build
    Prebuilt       : libffmpeg.so <= jni/ffmpeg-0.8/android/armv7-a/
    Install        : libffmpeg.so => libs/armeabi-v7a/libffmpeg.so
    install: cannot open `/cygdrive/D/RAJESH-ANDROID/Rajesh-workspace/FFMPEG_2/obj/local/armeabi-v7a/libffmpeg.so' for reading: Permission denied
    /cygdrive/d/Android_NDK/android-ndk-r5/build/core/build-binary.mk:305: recipe for target `/cygdrive/D/RAJESH-ANDROID/Rajesh-workspace/FFMPEG_2/libs/armeabi-v7a/libffmpeg.so' failed
    make: *** [/cygdrive/D/RAJESH-ANDROID/Rajesh-workspace/FFMPEG_2/libs/armeabi-v7a/libffmpeg.so] Error 1

    Can any one please explain why i am getting that permission denied issue and how to overcome that . i am using windows 7 pc.

    Thanks.
    Rajesh K