Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (63)

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

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

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

  • "File for preset 'libx264-hq' not found" error in Eclipse (Windows)

    22 octobre 2013, par Rita

    When I use the command line to execute, f.e.,

    "ffmpeg -i input.avi -vcodec libx264 -vpre libx264-hq -b 1500k output.mp4"

    the .mp4 file with h264 is successfully created. However, if I try to execute the same command on Eclipse I get the "File for preset 'libx264-hq' not found" error even though I've already created the preset file and downloaded the library (because I used to have that same error in the command line).

    My question is : do I have to put the preset file anywhere else in order to make it function through Eclipse ?

    Btw, I'm using Windows. There's a lack of information about ffmpeg for Windows.

  • Compile ffmpeg with libfaac on Windows

    20 novembre 2013, par olgash

    I'm using ffmpeg, and I need it to have libfaac, and I understand the only way to make that happen is to compile it from source. I read a bunch of tutorials, and installed mingw, but I can't run the commands ./configure or make. Is there something I'm missing or another way to do this ?

  • Using ffMPEG on Windows with only the DLL's ?

    7 novembre 2012, par Nav

    What I actually want is to store frames of a video into a char array, using ffMPEG.
    Constraint is to use only MSVC. Not allowed to use the Windows building tweak due to maintainability issues.

    So considered using the shared build to accomplish the task. It consists of only DLL's. No lib files, so I tried loading one of the DLL's using HINSTANCE hInstLibrary = LoadLibrary("avcodec-54.dll"); and it works. But I couldn't find the interfaces of this DLL published anywhere. Could anyone help with this ? How do I know which functions of the DLL I can call and what parameters I can pass it so that I can get the video frames ?