Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (104)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11904)

  • How to make slideshow video from list of images in Android programmatically [on hold]

    4 août 2016, par Roaim Ahmed

    I am an Android developer. I want to create an app from which users can create video files using their photos and music file. But I don’t know which library or procedure I have to follow to convert an array of images to video file. Can anybody please give me an idea how to do this ? I guess I need to use a media library for this. Can you suggest me any java/android libraries and how to use that ? 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

  • 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