Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (41)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (10573)

  • Call libffmpeg.so through command line on Android

    1er décembre 2013, par user3032481

    I google for this github page : https://github.com/vecio/FFmpeg-Android
    And now I had built some latest libffmpeg.so for different versions of arms(ARMv7,vfp,neon,armv6).
    But I can't use these in my Android directly.

    Why I tried to call libffmpeg.so directly instead of jni ?

    Because I found a libffmpeg.so from the internet that I can directly use in my project by java.lang.ProcessBuilder and java.lang.Process, and it doesn't need jni at all.
    You can get this .so file through this link : http://goo.gl/n0Y1YU

    I didn't change any configure parameter in the FFmpeg-Android.sh on the github above.
    I think that these libffmpeg.so files I compiled can't deal with command line(they are just libraries.).
    I don't know how to modify it(Maybe modify the configure parameters).
    Does anyone know ?

  • Android - Playing .mov files

    29 mai 2014, par user3042700

    I’am developing and app for iOS and Android. The principal functionality of this app is share videos by upload and view them. My problem is that the iOS users, upload an .mov file and android users upload an .mp4 file. For iOS users there’s no problem because they can see booth video extensions, but on android, it’s a problem for what I have no solution...
    Android videoView only display .mp4 and no .mov files.

    My question is, what is the best way to have compatibility into the 2 systems ?
    Is there any way to force iOS recording videos in mp4 with Objective C ?

    I’ve also tried to convert the .mov into .mp4 with PHP, and the video extension becomes .mp4 but the videoView on android can’t display it anyway.
    What I used in php was :

    //setup
       $filename           = time()."-".$this->generateRandom(8);
       $filenameVideoEnd   = ".mp4";
       $filenameThumbEnd   = ".jpg";
       $target_path        = "/upload/videos/";
       $target_path        = $target_path.$filename.$filenameVideoEnd;
       $uploadTime         = time();      


       if(move_uploaded_file($_FILES['file']['tmp_name'], $localPath.$target_path)){
           //create thumb
           $ffmpeg             = "../upload/ffmpeg/ffmpeg";  
           $video              = $localPath."/upload/videos/".$filename.$filenameVideoEnd;  
           $image              = $localPath."/upload/thumbs/".$filename.$filenameThumbEnd;  
           $interval           = 1;  
           $size               = '320x240';  
           $cmd                = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&1";
           exec($cmd,$output);

    Please help me with this..
    Thank you

  • Using librtmpdump in android

    29 mars 2012, par iSun

    anyone can help to me to use rtmpdump in android ?

    i copied librtmp.so To libs\armeabi but i dont know that how can use it to playing an rtmp live stream using rtmpdump ?

    i use this code to my activity :

    static {

       System.loadLibrary("rtmp");

    }

    thanks in advance