
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (9908)
-
Batch extract first 10 seconds of multiple mp3 files using ffmpeg
26 décembre 2018, par MaudeI have a folder filled with songs. I would like to make ONE mp3 file containing a mashup of 10 seconds of each song.
I have found that FFMPEG is an easy software to do so.
I found how to cut a single file :
ffmpeg -ss 0 -t 10 -i file.mp3 file.wav
And how to write a loop for multiple steps :
for i in *.mp3; do ...
But I am not sure how to mix the two into only 1 file. If it’s not possible, I guess I can also make a separate 10 sec file for each and then regroup.
-
Merge commit ’563e6d860391bac0511984e5c0842320b5c94d2d’
10 novembre 2015, par Hendrik Leppkes -
How to get offset from audio
24 avril 2014, par DhavalI need to insert another audio on specific offset (where space existed in audio track).
So, For that, i need to fetch offset of each space from audio and then apply some ffmpeg/sox command to insert another aduio on that offset.
Please share me some command to fetch the offset for space
first so, later, i could mix the another audio on same offset.Please suggest your view/command or any library.
I think, it would be possible in FFMPEG OR SOX.
Updated :
I have two audio files.
In which one audio files contains some songs but, there are some space at some interval. These space should be fill by another audio.example :
Audio 1 - song - audio has space at 5 places.audio 2 - a people name audio.
output - audio one should fill up the all 5 places by aduio 2.
Thanks