
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (53)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (7858)
-
combine two audio files with a command line tool
6 novembre 2015, par holographixI’ve to merge two (or more) audio files (like a guitar and a drum track) into a single file.
I’m running over linux CentOS and I’d need a command line tool to do so, because I’ve got to run this as part of a background process, triggered via crontab of a custom bash script.
I also need to be able to change the pan, volume, trim and start time (i.e I want the guitar track to start after 1.25ms after the drum track so that they can be both in sync with each other).My first choice would be ffmpeg, but I was wondering if there could be something more specific, reliable and less fuzzy than ffmpeg.
thx a ton !
k-
-
combine two audio files with a command line tool
29 août 2018, par holographixI’ve to merge two (or more) audio files (like a guitar and a drum track) into a single file.
I’m running over linux CentOS and I’d need a command line tool to do so, because I’ve got to run this as part of a background process, triggered via crontab of a custom bash script.
I also need to be able to change the pan, volume, trim and start time (i.e I want the guitar track to start after 1.25ms after the drum track so that they can be both in sync with each other).My first choice would be ffmpeg, but I was wondering if there could be something more specific, reliable and less fuzzy than ffmpeg.
thx a ton !
k-
-
how to write a batch script to run two different commands through multiple subdirectories ?
26 janvier 2021, par alsoftie000i'm attempting to put together a script that can run through multiple subdirectories and run commands on the files within them. the directory structure looks something like this :


\working directory
 \subdirectory 1
 \subsubdirectory 1
 \left.wav
 \right.wav
 \middle.wav
 \subsubdirectory 2
 \left.wav
 \right.wav
 \middle.wav
 \backing.wav
 \guitar.wav
 \subsubdirectory 3
 \left.wav
 \right.wav
 \middle.wav
 \subdirectory 2
 \subsubdirectory 1
 \left.wav
 \right.wav
 \middle.wav
 \backing.wav
 \guitar.wav
 \subsubdirectory 2
 \left.wav
 \right.wav
 \middle.wav
 \subsubdirectory 3
 \left.wav
 \right.wav
 \middle.wav
 \backing.wav
 \guitar.wav



for my script, i want it so that for directories that only have 3 files in them, it'll run this command :

ffmpeg -vn -i left.wav -i middle.wav -i right.wav -filter_complex "[0]adelay=0|0,volume=3[a];[1]adelay=0|0,volume=3[b];[2]adelay=0|0,volume=3[c];[a][b][c]amix=inputs=3:dropout_transition=0" output.flac


and then for the directories with 5 files, it'll run
ffmpeg -vn -i left.wav -i middle.wav -i right.wav -i guitar.wav -i backing.wav -filter_complex "[0]adelay=0|0,volume=5[a];[1]adelay=0|0,volume=5[b];[2]adelay=0|0,volume=5[c];[3]adelay=0|0,volume=5[d];[4]adelay=0|0,volume=5[e];[a][b][c][d][e]amix=inputs=5:dropout_transition=0" output.flac


is there an easy way to do this (assuming what i'm trying to do is even possible ?