Recherche avancée

Médias (91)

Autres articles (80)

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

  • ffmpeg with opengl_es on Android

    21 juin 2012, par ksharp

    This is driving me crazy. I do know how to make ffmpeg decode videos&make opengl show contents on Android .But I can never make them together. FFmpeg keeps decoding frames while OpenGL has its own circle.How to make them co-work/sync ? Well,I mean OpenGL can show every frame right after decoded by ffmpeg ? Can I just call the decode methods in OpenGL onDrawFrame() method(by jni) ?What about the audiotrack then ?
    Thx !

  • How to create video with images and different time interval ?

    14 mai 2012, par Preet Sandhu

    I am struggling with this command :

    ffmpeg -loop 1 -r 5 -i img_0.jpg -c:v libx264 -preset slow -tune stillimage -crf 24 -t 20 $frame_target

    it creates 20 sec video with one image. i need to put more images, so i make this like :

    ffmpeg -loop 1 -r 5 -i img_%d.jpg -c:v libx264 -preset slow -tune stillimage -crf 24 -t 20 $frame_target

    but this thing create video of 20 sec but images are changing multiple times. basically i want to divide time interval and every image should show ones only.

  • playing http video url using ffmpeg

    17 mai 2012, par Ranjith

    I am using libavcodec of ffmpeg to play a http video stream in my application.
    I have implemented my own video player for this.This player is working fine.

    Now, I want to show buffering status of video (what percentage of video is downloaded by ffmpeg). But I could not find any api or event for this.