Recherche avancée

Médias (91)

Autres articles (72)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (10327)

  • Problems in making Video from Lottie JSON File and Overlay it with original video using FFMPEG

    26 juin 2019, par Krishna Vyas

    there is some unique concept about processing Lottie Animations using FFMPEG video processing library and MediaCodec. In that, I wants to make video from Lottie animation and overlay that video on other original video.

    But the problem is i’m unable to make a video with transparent background from Lottie animation. So i made simple video from Lottie animation using MediaCodec and MediaMuxer, it takes one by one frame from Lottie Drawable and attach it to the video(Lottie Video). Here is the link about this concept- https://engineering.21buttons.com/how-to-generate-videos-using-lottie-in-android-2db6ecceb2a

    And then i overlay this video to the original video using FFmpeg library. Here FFmpeg does two task, first it makes transparent background in Lottie Video and second it overlays this Lottie Video above the original video.

    And here the actual problem is out, FFmpeg takes more than 8 to 9 minutes in processing of video of 25 seconds, So i wants to get solution for this problem, as i have time limit of only 1 to 2 minutes. Any one has a solution for it or new ides for implementation of this concept, then please tell me i’ll appreciate it.

    Graphical representation of this concept

  • Android FFmpeg, video from images : how to prevent landscape image fit/stretching , when video is in portrait mode

    23 janvier 2018, par Giorgi Asaturyan

    i am working with ffmpeg library, and i am trying to create a video from list of images, and everything works well except one thing.

    When i am trying to create ex. portrait video 480x800, all landscape images (800x480) becomes stretched and fit . Please see image below :)

    enter image description here

    Question : How do I fix the issue of the video to make top and bottom spaces empty , when landscape image presents in portrait video ?

  • ffmpeg - create video from images - has no audio in output video

    19 juillet 2013, par sameer

    1) I have created the few images from my original xyz.mp4 (using ffmpeg)

    2) I am again creating the video from the images but the output.mp4 does not have the audio.

    I use the following command to create the video from images.
    ffmpeg -b:v 850 -r 10 -i out%d.png -s 640X480 -vcodec libx264 -sameq output.mp4

    Kindly let me know the the way for following steps

    1) create images from video (.mp4)

    2) create video(.mp4) from those images ( with audio in output file)

    Thank you.