
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (30)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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, parCertains 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, parPré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 PanchalI 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 Sheni 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 miladjurabluI have about
2K
mp4 and webm files that I want to extract theleft-mono
andright-mono
from them and save each one of them toWAV
STEREO with44100H
and32bit


I use this code but it saved it as
mono-left
andmono-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
andright.wav
saved as stereo file