Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (9)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

Sur d’autres sites (5634)

  • 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