
Recherche avancée
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...)
Sur d’autres sites (14353)
-
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 ?
-
Windows Batch-File to execute n other batch-files in parallel
11 décembre 2015, par JosI use ffmpeg to convert video files. The codec I’m encoding with is single-threaded. There are a lot of video files to convert, so instead of using multithreaded encoding I can simply encode multiple video files with 1 thread each.
To automate the encoding I use the follow commands in a .bat :
SET maindir=%~dp0
FOR /r /d %%f in (*) do pushd "%%f" & Call %maindir%convert-with-ffmpeg.bat & popdThis calls "convert-with-ffmpeg.bat" sequentially`to convert each file/folder in the main dir.
What would my .bat file have to look like if I want to do this in parallel (say, 12 times) until there are no more folders left to process ?
EDIT : Let me be clear that I want to LIMIT the amount of running processes at 12. When a .bat is done, I want the main .bat to start a new process until all files are converted (100+).