Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (77)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

Sur d’autres sites (9607)

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

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

    


  • 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 ?