
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 (105)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (7846)
-
How to combine multiple images horizontally and vertically using ffmpeg [duplicate]
7 février 2020, par user3625087I’m attempting to create a script that can stitch together images side by side. These images are basically letters that I want to create words with (think of those ransom letters in Hollywood movies with randomly cut out letters from magazines). I need to specifically use these images, so I don’t want ffmpeg to type out some words into images itself. I’ve seen some similar answers using
hstack
andtile
filter complexes but those didn’t work for me. Here is what I’ve tried so far :ffmpeg -pattern_type glob -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex tile=5x1 test.png
For this one, -pattern_type didn’t exist as an option (I’m using ffmpeg 4.2 on Windows), so I removed it and the result was 1 letter and black space for the rest.
ffmpeg -y -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex hstack test.png
For this one, the result was 2 letters side by side, and then black space for the rest.
All of my images are of the same height and variable width. Is there a command that can achieve this ?
-
ffmpeg gives an error :At least one output file must be specified
24 août 2021, par Hrushikesh Reddy
ffmpeg -i video.mp4 -i japanese.aac -i english.aac -i hindi.aac 
-c:v copy -c:a copy 
-map 0:v:0 -map 1:a:0 -map 2:a:0 -map 3:a:0 OUTPUT_FILE.mp4



I tried to add multiple languages to a video in ffmpeg it gives an error :At least one output file must be specified


-
Warp video and audio non-linearly with ffmpeg
25 novembre 2016, par Simon StreicherI have a non-linear mapping of the time-locations of an input video to be warped to the time-locations of an output video. Here is an example :
I therefore want to take the input video and this mapping and accelerate-and-decelerate appropriately to produce the output video (audio included). Is there any functionality in ffmpeg to accomplish this ? Any frame interpolation may be nearest neighbour or something silly (it doesn’t need to look good), but I would prefer something sophisticated for the audio.
I have Python along with the whole numpy-scipy stack to my disposal to convert this mapping to something more parseable by ffmpeg.