
Recherche avancée
Médias (21)
-
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
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (78)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (8430)
-
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.
-
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 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.