Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (90)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 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 (...)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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 (...)

Sur d’autres sites (7463)

  • Revision 64b30f41cd : Removed setup_pre_planes() call in read_mb_modes_mv() This code does not seem t

    24 mai 2013, par Scott LaVarnway

    Changed Paths :
     Modify /vp9/decoder/vp9_decodemv.c



    Removed setup_pre_planes() call in read_mb_modes_mv()

    This code does not seem to be necessary anymore.

    For the 1080p clip used, the decoder performance improved by
     2%.

    Change-Id : I66bb0496d4998b0d6c6637c746b642b77bdbef88

  • Why is `subprocess.call` not invoking the command

    6 juin 2014, par Shookie

    I’m trying to run a .wav file through ffmpeg using the subprocess.call(shell=True) in the following code and it doesn’t seem to run. I know this because the output_file isn’t created and I’m getting an exception in the open() method.
    What am I doing wrong ?

    try:
       import pocketsphinx

    except:
       import pocketsphinx as ps
       import sphinxbase
       import subprocess
       import os

    hmmd = "../../Pocketsphinx_Files/en-us-8khz"
    lmdir = "../../Pocketsphinx_Files/cmusphinx-5.0-en-us.lm"
    dictp = "../../Pocketsphinx_Files/cmu07a.dic"

    output_filename = "../../temp/ps_output.wav"

    def recognize(filename="../../temp/temp_output.wav"):

       command = "ffmpeg -i "+filename+" -ac 1 -ab 16 -ar 16000 "+output_filename

       subprocess.call(command,shell=True)

       wavFile = open(output_filename,"rb")

       speechRec = ps.Decoder(hmm = hmmd, lm = lmdir, dict = dictp)

       wavFile.seek(44)

       speechRec.decode_raw(wavFile)

       result = speechRec.get_hyp()

       #os.remove(filename)
       #os.remove(output_filename)

       return result

    if __name__=="__main__":
       print(recognize())

    edit : I’ve got ffmpeg installed.
    Furthermore, when I run the subprocess.call() command from the python interpreter it seems to work. This is why I’m stumped.

  • avcodec/h263dec : Don't call ff_thread_finish_setup() unnecessarily

    24 février, par Andreas Rheinhardt
    avcodec/h263dec : Don't call ff_thread_finish_setup() unnecessarily
    

    All hwaccels for MPEG-4/H.263 are run serially even when frame-threading
    is in use. Therefore there is no gain in calling
    ff_thread_finish_setup() in this case right before outputting
    the frame.

    Removing this call also allows to revert commit
    39a5c0ac0651113750d01f3ee6bcf3819de3d7ee.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/h263dec.c