Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

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

  • Les sons

    15 mai 2013, par
  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5986)

  • using ffmpeg to convert gif to mp4 , output doesn't play on android

    3 août 2015, par Mahdi

    I just use the following command to convert a gif file to mp4 but the resulting mp4 file doesn’t play in android default video player .
    what did I wrong ?
    is there any aditional steps should I take to produce android playable mp4 files ?

    $ ffmpeg -f gif -i infile.gif outfile.mp4

    my test gif file : Test Gif File
    My desktop played the output.mp4 very well using VLC Media Player and also MX Player on my android device played the video file without any error.

  • Android NDK. How to play video.

    4 février 2014, par bukka.wh

    I need to play video on Android device (different formats). As I have understand, the best way is to use Android NDK with specific libraries that can play video. I have done some basic examples to understand NDK usage, but I don't know what to do next. As I have understood, I must install ffmpeg first of all.
    So I have the following questions given below :

    1. I need to have ffmpeg (the best way is to use Linux, not Windows,
      because in Windows there are some troubles with its installation).
    2. How to play sound of video ?
    3. I have read that some open-source libraries can play video without any efforts. My job is to give them byte-array or path to video on SD. Is this right ?

    So, can anyone help me and explain basic ways how to play video with ndk, may be some basic plan or links ?
    Thank you very much for interest to my question !

  • Android and ffmpeg. Play video (with sound)

    18 février 2014, par bukka.wh

    I have compiled ffmpeg library add it to my project and now I want to play video (with full list of options - stop, pause, forward, backward etc). I have read roman10 ffmpeg tutorial. And I also find out tutorial which describes how play video with ffmpeg and SDL framework. The difference (if I have correctly understood) is that in roman's tutorial each frame of video turns into a Bitmap and is then passed to Java code where it shows on SurfaceView. And in the second tutorial, the video is playing with the help of the SDL framework without passing it back to Java code.

    I want to ask some questions :

    1. Which way is better : return Bitmap back to Java and show it on SurfaceView or play it with SDL ?
    2. How can I play the sound of my video (can I do it with ffmpeg or do I need some additional libraries) ?