
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (64)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (9313)
-
ffmpeg : pad filter with transparent background for GIF input/output ?
23 janvier 2023, par Yami OdymelI'm trying to pad the GIF source to a square thumbnail and the extended area should be transparent.


(image source : https://store.steampowered.com/app/2113680/The_Dot/)




To achieve the goal, I used the following command :


ffmpeg -i ./test/source.gif -filter_complex "[0]scale=255:144[s1];[s1]pad=256:256:0:-56:blue[s2];[s2]split[s3][s4];[s3]palettegen=reserve_transparent=on:transparency_color=blue[p];[s4][p]paletteuse[s5]" -map [s5] -loop 0 ./test/output.gif -y



- 

-
[0]scale=255:144[s1]
First I scale down the image.

-
[s1]pad=256:256:0:-56:blue[s2]
Then pad the image with an uncommon background color :blue


-
[s2]split[s3][s4]
And I split to two streams. One forpalettegen
and another forpaletteuse
.

-
[s3]palettegen=reserve_transparent=on:transparency_color=blue[p]
Generate the color palette that indicatesblue
as thetransparency_color


-
[s4][p]paletteuse[s5]
Use the new color palette for output. The padded image withblue
background color should be treated as a transparent background.













But the output animated GIF still has a visible blue background color no matter if I put the
paletteuse
at first or in the end.



Related posts :


- 

- Making GIFs with ffmpeg : what does "transparency_color" do ?
- How do I resize an animated GIF and keep transparency ?
- Transparency is gone while resizing (scaling) gif using ffmpeg








-
-
ffmpeg how to add different audio affects to video
1er juin 2020, par 3sdwindows 7 64 using ff-mpeg latest version downloaded command-line.



1:how do i distortion the background audio sound of drums or bass or anything but not affect the voice.
2:how do i add a sound something similar to audio is ripping,like a page ripping sound.

3:how do i randomly add a overlay sound effect of distortion something similar to -b 18k


-b 18k decreases the audio quality i think and i am looking to do something similar in different variations.


-
converting audio file and return it
22 avril 2020, par louay jaberI'm trying to convert an mp3 file to wav file. using the following code



def change_file(file):
 print(file)
 wav='fff'+'.wav'
 print('here ')
 mp3_file=file
 sound=pydub.AudioSegment.from_mp3(mp3_file)
 sound=sound.set_frame_rate(8000)
 temp=sound.export(wav, format="wav")

 return temp//doesnt work




the sound.export saves the file on my machine I don't want it to be saved I want to return it immediately cause I am using this code as an API in Django
so my goal is to except a file and convert it then return it