
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (92)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 (10776)
-
Using FFMPEG on Google Cloud Platform
27 mars 2021, par itsSLOI'm storing audio files on Google Cloud Storage (through Firebase storage).



I need to use FFMPEG to convert the audio file from stereo (two channels) to mono (one channel).



How can I perform the above conversion on Google Cloud Platform ?



Update :
I suspect one possibility is to use Google Compute Engine to create a virtual machine, install ffmpeg, and somehow gain access to the audio files.



I'm not sure if this is the best way or even possible. So I'm still investigating.


-
Using FFMPEG on Google Cloud Platform
11 mars 2017, par itsSLOI’m storing audio files on Google Cloud Storage (through Firebase storage).
I need to use FFMPEG to convert the audio file from stereo (two channels) to mono (one channel).
How can I perform the above conversion on Google Cloud Platform ?
Update :
I suspect one possibility is to use Google Compute Engine to create a virtual machine, install ffmpeg, and somehow gain access to the audio files.I’m not sure if this is the best way or even possible. So I’m still investigating.
-
changing background color after merging videos using ffmpeg
27 juillet 2019, par S.Ti am putting 2 movies side by side and i want to change the background color in the spaces that left near them.
this command is taking 2 videos and placing then one on top the other. there is a gap between them and also margins from all sides. i want that all the gaps ( the rectangle that hosts the videos) will be in a specific color(it is now green, i think its the default)
ffmpeg -threads 11 -i 1.mp4 -i 2.mp4 -i logo.png -filter_complex
[0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=yellow[a];
[1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];
nullsrc=size=1080x1080[base];[a]setpts=PTS-STARTPTS,scale=666x500[top];
[b]setpts=PTS-STARTPTS,scale=666x500[bottom];
[base][top]overlay=207:35[tmp1];[tmp1][bottom]overlay=207:545[video];
[0:a]apad[apa];[1:a]apad[apa1];[apa]
[apa1]amix=inputs=2:duration=longest[audio];[2:v]scale=150:60[ovrl];
[video][ovrl]overlay=227:55[videoandlogo] -map [videoandlogo] -map
[audio] -b 10000k -t 11 out.mp4I want to change the default color to one that i decide. Thanks.