
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (32)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (4745)
-
How to get FFmpeg to consistently apply speed effect to first few frames ?
16 janvier 2021, par melody_florumI am using FFmpeg to apply speed effects to short gifs and videos and I noticed strange stuttering on looping gifs when sped up. I manually tested and found what was going on. FFmpeg failed to apply the speed filter to the first few frames of the video.


I started with this file, which loops between the numbers "1 2 3 4" every frame.




I then ran the command
ffmpeg -i 123410fps.mp4 -vf setpts=0.5*PTS 123410fpsout.mp4


That left me with this file : 123410fpsout.mp4


On close analysis, I discovered that the output file didn't show a repeating
1 3 1 3
or2 4 2 4
pattern, but shows1 2 3 4 1 3 1 3 1 3...
the speed effect didn't apply for the first few frames

I apologize if it sounds like i'm being super nitpicky, but my usage for this is on very short gifs and videos where this effect is very apparent. How can I prevent this effect from happening and have a 100% consistent speed effect applied to the video ? I don't mind using other non-ffmpeg software but a CLI solution that works easily for most videos is ideal.


In case anyone is wondering, I don't use ffmpeg to encode gifs, i use gifski from ffmpeg exported image sequences. The problem shows up even when no gifs are used, so it's not a gifski problem.


-
FFmpeg - How do I set audio language and subtitles when converting videos ?
7 mai 2022, par mereMolfI have a handful of mkv video files that happen to have English and Japanese audio tracks along with english subtitles. I want to convert them all to webm files and keep only the Japanese audio with English subtitles.


How do I do that ?


Specifically, I use QWinFF, a GUI frontend to FFmpeg.
Under the Advanced options, I use the following parameters


-f webm -vcodec libvpx -g 120 -level 216 -profile:v 0 -qmax 25 -qmin 10 -rc_buf_aggressivity 0.95 -vb 480k -acodec libvorbis -aq 90



Any help would be appreciated.
Thanks.


-
Can I run a program from Command Prompt on only a numbered subset of files ?
28 août 2020, par Andrew ShibataI have an experiment with 2 groups : English speakers and Mandarin-English bilinguals. I have a batch file that works for converting audio files (using ffmpeg) for the English monolingual group. The Mandarin speaker group also has a few additional trials where they record some more sentences in Mandarin and I'd like to either run ffmpeg separately on just those trials or move that subset to a different folder after the fact.


The file formats are
[subject ID]-[trial #]-vowels_record.ogg
. The English trials are trial #s 6-35 and the Mandarin trials are trial #s 36-50.

The following code WORKS for my English only dataset :


for %%a in ("*vowels_record.ogg") do ffmpeg -i "%%a" "vowel_wavs\%%~na.wav


This is my attempt at figuring out how to get just the relevant files into relevant folders :


for %%a in ("*{6..35}-vowels_record.ogg") do ffmpeg -i "%%a" "vowel_wavs\%%~na.wav"
for %%a in ("*{36..50}-vowels_record.ogg") do ffmpeg -i "%%a" "mandarin_wavs\%%~na.wav"



I have some regex experience, but not as much with making .bat files and I'm unsure what the right way is to target the range of files I'm looking for.