
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (62)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (12463)
-
Anomalie #4317 (Nouveau) : Notice dans ecrire/inc/traduire.php on line 286
5 avril 2019, par jluc -Undefined index : lang_i18n_prefixeplugin_fr dans ecrire/inc/traduire.php on line 286
$desc->langue = $GLOBALS[’lang_’ . $var] ;
-
How to concatenate multiple videos in ffmpeg JS using and Mute them as well in command line
22 janvier 2021, par Sultan HaiderUsing Command Line for FFMPEG in javascript to concatenate videos and muting them also. There was problem for me to find commands for JS in the following format


('-i', 'test.mp4', '-vf','reverse', 'out.mp4')


-
how to use command line to stitch two wav together using ffmpeg in linux ?
10 octobre 2018, par spartaslaveI have installed ffmpeg on debian and I tried the two command lines.
There are two files under the same directory, they are first.wav and second.wav
The first method is to create a txt file, inside a.txt, they arefile 'first.wav'
file 'second.wav'I have run
ffmpeg -f concat -i a.txt -c copy final.wav
then I run it, it could work fine.
But I want to try another method,
which isffmpeg -i "concat:first.wav|second.wav" -c copy final2.wav
there is not error with the sdcond command line, but it only capture the first file and the length of final2.wav is almost same as first.wav. File second.wav is not stitched at all.
As I am using golang to execute the command line, I want to usecmd := exec.Command("ffmpeg",args)
to stitch the medias together, I can read all the media files into an array, but this API cannot work for the array, so I want to stitch the files together to
"concat:file1.wav|file2.wav|file3.wav|......"
in this case it could be easy to stitch the files together and I do not need to loop the cmd.
likecmd = exec.Command("ffmpeg","-i","concat:first.wav|second.wav|third.wav|......","-c","copy","final2.wav")
I do not want to create any extra files like a.txt file as I need to delete it later and this may also touch the permission.
So is there any possible solution for the second command line ?