
Recherche avancée
Autres articles (48)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (4906)
-
Bash Script to convert all flv file in a directory to mp3
11 août 2014, par UnbrandedTechThis is my code so far.
#!/bin/bash
#James Kenaley
#Flv to Mp3 directory converter
find /home/downloads -iname "*.flv" | \
while read I;
do
`ffmpeg -i ${I} -acodec copy ${I/%.flv/.mp3}`
echo "$I has been converted"
donebut its picking up white spaces in the names of the flv files and throws a error saying its not in the directory. how do make it use the whole file name and not the just the first word before the space ?
-
Fingerprint vs transcribing, what is the best approach to identify an audio sample inside another longer audio [closed]
28 mai 2024, par Bernard WiesnerI am trying to detect a shorter version of a spoken audio sample inside a longer audio (full version). The shorter audio should be the same or very similar to the one inside the longer version. I also need to have a rough estimate of the timestamp where the audio sample was found.


Similar questions here :


- 

- Identify audio sample in a file
- How to find the location of a specific word in an audio file ?






What I have researched so far :


1. fingerprints


- 

- Using chromaprint extract the fingerprints from both audio files and store them in a DB, then compare them and find matches.




2. transcribing


- 

- Use a transcriber such as whisper, to transcribe both audio files and store the text in a DB, then compare them and find matches.




I am trying to figure out the simplest solution for this, while still being performant and not too CPU/GPU intensive. My questions are :


- 

- Which one would you chose for simplest, cost effective solution ?
- Which one would consume more disk space ?
- Which one would perform better, in terms of searching/matching using SQL ?








FYI : If there are any other alternatives to those I listed please let me know.


-
How to split video or audio by silent parts
18 mars 2016, par TermiTI need to automatically split video of a speech by words, so every word is a separate video file. Do you know any ways to do this ?
My plan was to detect silent parts and use them as words separators. But i didn’t find any tool to do this and looks like ffmpeg is not the right tool for that.