
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (38)
-
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (3859)
-
Using ffmpeg to split MP3 file to multiple equally sound length files
11 septembre 2019, par daliaessamHow to use the command line tool ffmpeg on Windows to split a sound file to multiple sound files without changing the sound properties same everything each one is fixed 30 seconds length. I got this manual example from here :
ffmpeg -i long.mp3 -acodec copy -ss 00:00:00 -t 00:00:30 half1.mp3
ffmpeg -i long.mp3 -acodec copy -ss 00:00:30 -t 00:00:30 half2.mp3But is there a way to tell it to split the input file to equally sound files each one is 30 seconds and the last one is the remaining what ever length.
-
Copy audio files into single file using ffmpeg
11 septembre 2019, par GunaseelanI used following command to copy many files into single file,
ffmpeg -i AUD-20180413-WA0057.mp3 -i AUD-20180531-WA0001.mp3 -vn -acodec copy MergeAudio_1568168063082.mp3
This code copies only first file into output file,
However, following command works
ffmpeg -i AUD-20180413-WA0057.mp3 -i AUD-20180531-WA0001.mp3 -filter_complex [0:a][1:a]concat=n=2:v=0:a=1[a] -map [a] MergeAudio_1568168372267.mp3
But this command takes too much time as it is re encoding,
That’s why I tried with copy [I hope if the files are same stream it will work], but the command I have given is copy only first file.
-
How to split video files upon detected change in speakers ? (ie. different file for different speaker)
21 août 2019, par afnan khanhave an audio file that have 2 speakers . Audio file has conversation between them. I want to split that file in 2 parts. One part should have conversation of Person A and other should have conversation of Person B.
I have tried to split on silent but it does not work. Any suggestion to do this ?