Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (78)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (10496)

  • Anomalie #2186 (Fermé) : Boucles ARTICLES excluant des mots-clés

    26 juillet 2011, par Johan Pustoch

    Je continue à tester en local mon squelette du site audiolingua avec SPIP 3.0.0-alpha1 [18255]. J’avais des boucles qui faisait ramé mysql à fond. Peut-être est-ce du à des boucles d’origine mal optimisées ou à des mauvaises syntaxes utilisées de mon coté... Ici, pour le voir, il faut au moins (...)

  • Use ffmpeg to stream an updating progress-bar

    24 juin 2020, par Falk

    Is there a way to stream a filling progress-bar showing a percentage written in either a (e.g. txt) file or mysql db that updates often ? Ideally streaming to obs or straight to the platform/stream (such as twitch) ?

    


    I thought about using the text function, something like this :
    
-vf "drawtext=fontsize=40:fontfile=FreeSerif.ttf:textfile=/path/livetext.txt:x=(w-text_w)/2:y=(h-text_h)/2:reload=1"

    


  • how to upload video and generate thumbnail with ffmpeg in codeigniter

    11 février 2020, par Danish Laeeq

    I need to upload video with FFMPEG in codeigniter and save value to mysql database. and after uploading how do i get the duration of video and generates thumbnail from video and insert thumbnail path to mysql database

    here is my code for uploading video :

     public function uploadvideo()
     {
       $config['upload_path'] = "./admin_assets/videos/";
       $config['allowed_types'] = "3gp|mp4|mpeg4|avi|flv";
       $this->load->library('upload',$config);

       $uploadedby = $this->input->post('uploadedby');
       $video_title = $this->input->post('video_title');
       $privacy = $this->input->post('privacy');
       $description = $this->input->post('description');

       $vid_one_name= $this->upload->do_upload('video').$this->upload->data('file_name');

       $file_size =  $this->upload->data('file_size');

       $fs = $file_size." kbytes";
       $vid_one_path= substr($vid_one_name,1);

       $insert_video = $this->db->insert('videos',['uploadedby'=>$uploadedby,'video'=>$vid_one_path,'description'=>$description,'privacy'=>$privacy,'video_title'=>$video_title,'uploadDate'=>date('M-d-Y'),'file_size'=>$fs]);
       if ($insert_video) {
           return true;
       } else {
           return false;
       }
    }

    It is working but I want to upload video using ffmpeg so that I can generate thumbnail from it and get the duration and other data.