Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (57)

  • 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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (10806)

  • vulkan_decode : add STORAGE flag to output images

    18 avril, par Lynne
    vulkan_decode : add STORAGE flag to output images
    

    In filtering, and SDR encoding, we use storage images.
    This fixes using Vulkan filters on Intel.
    Tested not to break anything on the three major vendors.

    • [DH] libavcodec/vulkan_decode.c
  • Batch Convert all .MOV in a directory to mp4s

    6 mars, par anjchang

    Just downloaded a whole bunch of videos from my phone to desktop. How to convert all the .MOV files in a directory to mp4s quickly, using ffmpeg.

    


  • Apply an FFMPEG overlay TWICE after some time

    22 juillet 2022, par Norb Batt

    I already made an image sliding into itself using the overlay filter, but after that first overlay, I want it to happen again during the same video.

    


    My script looks like

    


    ffmpeg -loop 1 -i IMAGE.jpg -filter_complex "[0][0]overlay=x='max(W-(w/2)*t,0)':y=0" -t 10 OUT.mp4


    



    


    I thought repeating the filter with a time delay would work, as in :

    


    ffmpeg -loop 1 -i IMAGE.jpg -filter_complex "[0][0]overlay=x='max(W-(w/2)*t,0)';[0][0]overlay=x='if(gte(t,2), max(W-(w/2)*(t-2),0), NAN)'" -t 10 OUT.mp4


    


    But the second filter does not happen.
What am I missing ?