Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (34)

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

  • Can I make this FFMPEG animation smoother ?

    21 mai 2021, par mrmaker12345

    I have a basic ffmpeg command which zooms an images from 150% to 100% and overlays onto a stretched and blurred version of itself. All works great, except the zoom effect is very shaky. Is there any way to make this animation smoother ?

    


    ffmpeg -y -loop 1 -i image.jpg -filter_complex "[0:v]scale=1920:1080,boxblur=10:10,setsar=1[bg];[0:v]scale=-1:(ih*1.5)-(ih*1.5)*n/900:eval=frame[fg];[bg][fg]overlay=x=(W-w)/2:y=(H-h)/2[out]" -map "[out]" -t 10 -r 60 "out.mp4"


    


  • C++ : Combine 4 YV12 images to a single image (4 quadrants). FFMPEG ?

    1er juin 2016, par Paul Knopf

    I have 4 YV12 buffers that I need to combine to a single buffer (4 quadrants).

    I could manually write a bunch of memcpy stuff with offsets, but I fear performance issues.

    Is there an FFMPEG method that I can use to achieve this ?

    AVFrame* topLeft = ...
    AVFrame* topRight = ...
    AVFrame* bottomLeft = ...
    AVFrame* bottomRight = ...
    AVFrame* destination = ... // topLeft-size + topRight->size + bottomLeft->size + bottomRight ->size

    Maybe there is a method with a similar signature here ?

    void blend_image(AVFrame* src, AVFrame dest, int x, int y);

    Then...

    blend_image(topLeft, destination, 0, 0);
    blend_image(topRight, destination, 1920, 0);
    blend_image(bottomLeft, destination, 0, 1080);
    blend_image(bottomRight, destination, 1920, 1080);

    Any guidance would be greatly appreciated.

  • Android FFMpeg No such file or directory error

    2 juin 2016, par GuyZ

    I am using ffmpeg for android (using the gradle plugin ’com.writingminds:FFmpegAndroid:0.3.2’) and I am trying to crop a video to a 16:9 (w:h) ratio. The original video is 1080:1920 (w:h).
    When I execute the command I get an IOException No such file or directory.

    The command I am using :

    -i /storage/emulated/0/Movies/MyApp/result_joined.mp4 -vf crop=1080:607   -preset ultrafast /storage/emulated/0/Movies/MyApp/result_cropped.mp4

    The exception :

    java.io.IOException: Error running exec(). Command:
    [/data/user/0/my.package.name/files/ffmpeg, -i, /storage/emulated/0/Movies/MyApp/result_joined.mp4, -vf, crop=1080:607, -preset, ultrafast, /storage/emulated/0/Movies/MyApp/result_cropped.mp4] Working Directory: null Environment: null
    Caused by: java.io.IOException: No such file or directory

    After searching several stack overflow questions with no help.
    I also tried to save files to internal storage instead of external storage. Same result

    Any help ?