Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (38)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6161)

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

  • Anomalie #4442 : Notice quand ajout d’un dépôt

    22 octobre 2020, par Franck D

    Hello, je viens de faire l’installation d’un spip tout neuf pour refaire un test, et c’est bien toujours présent (voir copie d’écran).
    Il s’agit du dépôt principal

    Windows 10 (1909)
    Firefox 81.0.2

    Easyphp avec :
    Apache 2.4.43 x64
    PHP 8.0.0 beta 1 x64
    MySQL 8.0.20 x64
    PhpMyAdmin 5.0.2

    SPIP 3.3.0-dev GIT [master : 08981b68]

  • Evolution #3963 : Rediriger l’accueil d’un site non installé vers /ecrire

    19 juin 2017, par b b

    Le problème est que cet accès à l’installation de SPIP permet de créer un compte webmestre sans le valider par un accès FTP.

    Heu, je me trompe complètement ou il faut avoir les identifiants mysql pour ça ? (après si sqlite est présent, il suffit de virer la base et le connect associé).