Recherche avancée

Médias (91)

Autres articles (90)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8792)

  • ffmpeg on windows , how to compile examples ?

    13 juin 2020, par ESZ

    I compiled ffmpeg on windows 10 as described in this guide . I need to compile the doc/examples/extract_mvs.c . whenever I try to run : gcc extract_mvs.c the copiler don't seem to find the included libraries. I also tried to run "make" but the output is that make has nothing to do with extract_mvs.c . I appreciate any help since I am still a newbie :)

    


  • movenc : Remove an unnecessary condition when flushing fragments

    18 décembre 2014, par Martin Storsjö
    movenc : Remove an unnecessary condition when flushing fragments
    

    If fragments == 0 it means we haven’t written any moov atom yet.
    If the empty_moov flag is set, we already have written an empty moov
    atom at startup. Thus, the check for empty_moov is redundant.

    This is in preparation for allowing writing the moov atom later,
    even when using the empty moov flag.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c
  • Latency issue with CMU Sphinx 4

    22 septembre 2015, par vijaym

    I have written the speech recognition application using CMU sphinx 4 and followed the details from this link. I have defined the Acoustic,Dictionary and Language Model as below

    configuration.setAcousticModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us");

    configuration.setDictionaryPath("resource:/edu/cmu/sphinx/models/en-us/cmudict-en-us.dict");

    configuration.setLanguageModelPath("resource:/edu/cmu/sphinx/models/en-us/en-us.lm.bin");

    With the above configuration the 20 minutes of wav file takes almost close to 20 minutes to do the transcription.Hence than I tried to pass the user defined config.xml. I did n’t find the configuration manager option to pass the user defined config.xml with the current version of Sphinx4.Then I had written own recognizer by extending the AbstractSpeechRecognizer.java class(It may be useless) and changed few parameters of config.xml and I tried it but still no improvement.

    I have downloaded video and audio across multiple source and converted into WAV file using FFMPEG

    The command is as below

    ffmpeg -i input.mp3 -acodec pcm_s16le -ac 1 -ar 16000 output.wav

    Environment Details :

    Java 8

    Ubuntu 14.04

    RAM 4GB

    I5 Processor

    What I would like to know is, what I am missing here and how to improve the performance ?