
Recherche avancée
Autres articles (100)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (9656)
-
Anomalie #2801 (Nouveau) : SPIP 3 en ISO-8859-1
18 juillet 2012, par Thierry HorizonsBonjour, 2 points que j’ai remarqué en ISO-8859-1 sur SPIP 3.0.3
Le moteur de recherche (en fait, c’était déjà le cas en V2) en recherchant un mot accentué, seuls les articles sans cet accent ressortent. J’ai noté que pour une recherche de "élément", la requête à MySQL est WHERE title LIKE "%element%" (...)
-
how to uplaod video and generate thumbnail with ffmpeg in codeigniter
11 février 2020, par Danish Laeeqi 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..
-
Evolution #3963 : Rediriger l’accueil d’un site non installé vers /ecrire
19 juin 2017, par b bLe 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é).