
Recherche avancée
Autres articles (99)
-
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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (10906)
-
Roadmap #3781 (Nouveau) : Finaliser les fonctions de transaction dans l’API SQL
8 mai 2016, par Eric LupinacciFinaliser l’api SQL :
- pour sqlite cela revient à créer l’interface sql_annuler_transaction
- pour mysql à créer toutes les fonctions soit sql_demarrer_transaction, sql_annuler_transaction et sql_terminer_transaction -
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..