
Recherche avancée
Autres articles (108)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (17100)
-
Anomalie #4442 : Notice quand ajout d’un dépôt
22 octobre 2020, par Franck DHello, 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 principalWindows 10 (1909)
Firefox 81.0.2Easyphp avec :
Apache 2.4.43 x64
PHP 8.0.0 beta 1 x64
MySQL 8.0.20 x64
PhpMyAdmin 5.0.2SPIP 3.3.0-dev GIT [master : 08981b68]
-
how to upload 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.
-
Use ffmpeg to stream an updating progress-bar
24 juin 2020, par FalkIs 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"