Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (30)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • How to merge gif into image like instagram story

    15 novembre 2018, par Krunal Panchal

    I have successfully merged gif into image and made a video using ffmpeg.

    But now I want to allow user to stretch and rotate gif and then merge it into image like instagram story. But it didn’t work in any way. Also I didn’t found any solution anywhere.

    Does anyone have any idea about it ? What ffmpeg command I should use to achieve it ?

  • How to check updated ffmpeg static version / consistent version names

    28 mars 2022, par Daniel Shen

    i am checking the ffmpeg installed in my

    


      

    • aws ec2 (centos) :
ffmpeg version N-60236-gffb000fff8-static
    • 


    • With my local machine. (mac) it shows :
ffmpeg version 5.0
    • 


    


    Looking at the johnvansickle FAQ, the screenshots show similar ffmpeg version formats (with the N-xxxxxx) How do i know that the static reference is also version 5.0 ?

    


    The reason I ask is that i'm getting an error in aws but i couldn't reproduce it in my mac.

    


    Thanks !

    


  • How to extract audio from mp4 python

    11 janvier 2023, par miladjurablu

    I have about 2K mp4 and webm files that I want to extract the left-mono and right-mono from them and save each one of them to WAV STEREO with 44100H and 32bit

    


    I use this code but it saved it as mono-left and mono-right

    


    os.system('ffmpeg -i "/content/46.mp4" -filter_complex "[0:a]channelsplit=channel_layout=stereo[left][right]" -map "[left]" left.wav -map "[right]" right.wav')


    


    but I need the left.wav and right.wav saved as stereo file