Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

Sur d’autres sites (8266)

  • What are the frameworks that can be used to create animated gif out of single image ?

    11 juin 2015, par Kiran Kumar Dash

    Currently I am using ffmpeg to create videos and and imageMagick to create animated gif. and I already got a bit of success and was able to create videos out of just texts and images with some nice cool effects.

    Problem : I am looking for some script using which I can create an animated gif out of a single image(i want the image to move on a transparent background) and then(the easy part) make a video out of it using ffmpeg.

    Also you can check more demos at the URL :

    https://animoto.com

  • Problem addig a thumbnail image to MP4 using FFMPEG CLI [closed]

    9 décembre 2023, par Albert67

    I have tried to add an image to a mp4 file generated from a video stream,

    


    It works with the following command :

    


    ffmpeg -i input_stream -i image.jpg -map 0:0 -map 0:1 -map 1 -c copy -disposition:v:1 attached_pic test.mp4

    


    but if I try the following :

    


    ffmpeg -i input_stream -i image.jpg -map 0 -map 1 -c copy -disposition:v:1 attached_pic test.mp4

    


    I get the following error :

    


    [mp4 @ 0x557be8b37f80] Could not find tag for codec timed_id3 in stream #2, codec not currently supported in container
Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
Error initializing output stream 0:6 —

    


    I was thinking that repalcing "-map 0:0 -map 0:1" that means get the first (video) and second (audio) of the first input stream , with "-map 0" (get all stream) should not make any difference.

    


    Any idea why ?
Regards
Albert

    


  • overlay audio volume histogram over static image

    10 décembre 2018, par Simone Sole

    I’m actually working to a project for music video generation using ffmpeg.
    I’d like to know if it’s possibile to use ffmpeg itself or a combination of command line component under windows environment to make a visualization of audio spectrum (ahistogram ?) over a static background image like the one I found on the web :

    enter image description here

    Any ideas or coding tips ?