
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (11748)
-
ffmpeg command for concatenate two mp3 files [on hold]
4 juin 2017, par KaramiI am using ffmpeg for Concatenating two MP3 files together,
I use this command :
ffmpeg -y -i first.mp3 -i second.mp3 -filter_complex "[0:0][1:0] amix=inputs=2:duration=longest" -c:a libmp3lame output.mp3
It works, but there is a little problem, the overlay together !
I want first song plays, and when it finished, second file starts (in output file)
But now they starts at the same time.
How can i change that command, to have a output that contains first song then when the first finished, second plays ?
Plus, I’ve tried
concat
command but not worked, I just can use something like what i sent. -
Need a batch command to create a karaoke automatically
22 décembre 2016, par Ray LooiI used these codes to create a karaoke and burn it to VCD.
xxxxxx_1.m4a
file is left channel (instrumental),
xxxxxx_0.m4a
file is right channel (song with vocal).
Combine them tobecome xxxxxx.m4a
.ffmpeg -i 123456_1.m4a -i 123456_0.m4a -filter_complex "[0:a][1:a]amerge=inputs=2,pan=stereo|c0code>
xxxxxx_3.mp4
file is a video without sound.
Combinexxxxxx_3.mp4
withxxxxxx.m4a
to become karaoke video.ffmpeg -i 123456_3.mp4 -i 123456.m4a -c:v copy -c:a copy 123456.mp4
Convert the
xxxxxx.mp4
to.mpg
format and burn to VCD.ffmpeg -i 123456.mp4 -target pal-vcd 123456.mpg
All these
123456_1.m4a
,123456_0.m4a
and123456_3.mp4
are in the same folder.
This is only 1 song. I have a lot of songs that need to be converted and I don’t want to copy and paste every song to perform this task.I tried the
for /f
command to automate this conversion without success. -
FFmpeg gap in concatenated audio after splitting audio
27 mai 2016, par Marshall HouseNot sure if it’s a gap or just misaligned audio samples, but when i split an audio file in two, like this :
ffmpeg -ss 0 -t 00:00:15.00 -i song.mp3 seg1.mp3
and
ffmpeg -ss 00:00:15.00 -t 15 -i song.mp3 seg2.mp3
and then combine them again with concat filter :
ffmpeg -i 'concat:seg1.mp3|seg2.mp3' out.mp3
There is a distinct "pop" between the segments. How can i make this seamless ?
I see this on seg2.mp3 :
Duration: 00:00:15.05, start: 0.025057, bitrate: 128 kb/s
Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 128 kb/sWhy is "start" not 0 ? That could be the gap.