Recherche avancée

Médias (91)

Autres articles (105)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5880)

  • Bash Script to convert all flv file in a directory to mp3

    11 août 2014, par UnbrandedTech

    This 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"
    done

    but 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 Wiesner

    I 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 :

    


    


    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 :

    


      

    1. Which one would you chose for simplest, cost effective solution ?
    2. 


    3. Which one would consume more disk space ?
    4. 


    5. Which one would perform better, in terms of searching/matching using SQL ?
    6. 


    


    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 TermiT

    I 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.