Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (82)

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10592)

  • Enabling mp4/mpeg4/avc playback in Qt 5.4 webengine on Ubuntu x64

    14 janvier 2016, par Thomas233

    i installed Qt 5.4.1 x64 on LUbuntu and created an app which uses the new QtWebEngine.

    I`m trying to display a html5 page with that component which is using the tag.
    All works fine except if I try to playback a mp4 video. The video area remains black. It works if I use other video types like webm/ogg as source.

    I know this is due to license restrictions, so that mp4 is deactivated by default in Ubuntu/Linux for Qt.

    What is needed in Qt to activate it to allow mp4 playback and on what do I have pay attention in case of license terms (I read that statically linking the library is allowed ?) ?

    I`ve already tried to copy over the x64 distribution of libffmpegsuo.so which is included in Chrome (2,2Mb) over to the Qt directory to /plugins/webengine/ and replaced that one that was already there (1,1 Mb) but it had no effect.
    In Chrome playback works fine btw.

    If you need more details like paths etc. please tell me.

    Thanks !

  • Enabling mp4/mpeg4/avc support for Qt5 WebEngine on Linux

    12 avril 2016, par Thomas233

    i installed Qt 5.4.1 x64 on LUbuntu and created an app which uses the new QtWebEngine.

    I`m trying to display a html5 page with that component which is using the tag.
    All works fine except if I try to playback a mp4 video. The video area remains black. It works if I use other video types like webm/ogg as source.

    I know this is due to license restrictions, so that mp4 is deactivated by default in Ubuntu/Linux for Qt.

    What is needed in Qt to activate it to allow mp4 playback and on what do I have pay attention in case of license terms (I read that statically linking the library is allowed ?) ?

    I`ve already tried to copy over the x64 distribution of libffmpegsuo.so which is included in Chrome (2,2Mb) over to the Qt directory to /plugins/webengine/ and replaced that one that was already there (1,1 Mb) but it had no effect.
    In Chrome playback works fine btw.

    If you need more details like paths etc. please tell me.

    Thanks !

  • What are the ways to deploy python code on aws ec2 ?

    17 octobre 2017, par johnconnor

    I have a python project and i want to deploy it on an AWS EC2 instance. My project has dependencies to other python libraries and uses programs installed on my machine. What are the alternatives to deploy my project on an AWS EC2 instance ?
    Further details : My project consist on a celery periodic task that uses ffmpeg and blender to create short videos.
    I have checked elastic bean stalk but it seems it is tailored for web apps. I don’t know if containerizing my project via docker is a good idea...

    The manual way and the cheapest way to do it would be :
    1- Launch a spot instance
    2- git clone the project
    3- Install the librairies via pip
    4- Install all dependant programs
    5- Launch periodic task

    I am looking for a more automatic way to do it.

    Thanks.