
Recherche avancée
Autres articles (88)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11506)
-
aacenc : increase fuzz on aac-ms-encode test
17 octobre 2015, par Rostislav Pehlivanovaacenc : increase fuzz on aac-ms-encode test
GCC 3.4 miscompiles it on sunos. Date of release ? The second of
August two thousand and five, anno Domini. That’s ten years two
months and fourteen days ago. Three thousand seven hundred and
twenty seven days ago. One sixth of the average life expectancy
of a person living in a country with a human development index
of zero point eight hundred and eight, equality adjusted.
GCC 4.3 also miscompiles it, though not as bad. -
ffmpeg - how to apply filters without losing quality
20 mai 2024, par MickeyHere is a simple request, it has an input, output, and two watermarks. From what I gathered I can't apply
-codec copy
because I'm using a filter.


ffmpeg -i input.mp4 -i wm-bl.png -i wm-br.png -filter_complex "overlay=x=0:y=H-h,overlay=x=W-w:y=H-h" output.mp4




This does the trick, as far as watermarking is concerned, but the output is compressed into half the original file size.



Is it possible to watermark without losing video quality ?


-
how to create a thumbnail, at the time of video upload ? [php / codeigniter]
19 mai 2016, par Amol Phad sudhakarI am trying to create a thumbnail for my uploading video. searching for easiest way to generate thumbnail at the time of video upload itself. i think if some provide the code without using ffmpeg will be life saving for me. because i’m running my code on windows wamp or any other alternative welcomed too thank you.
my real code is in CodeIgniter, not able to figure out how to do it.
$postname = $this->input->post('post-name');
$configVideo['upload_path'] = './video';
$configVideo['max_size'] = '1000000024';
$configVideo['allowed_types'] = 'avi|flv|wmv|mp4';
$configVideo['overwrite'] = TRUE;
$configVideo['remove_spaces'] = TRUE;
$ext = get_mime_by_extension($_FILES['video']['name']);
$video_name = str_replace(' ', '_', $postname);
$configVideo['file_name'] = $video_name;
$this->load->library('upload', $configVideo);
$this->upload->initialize($configVideo);
if (!$this->upload->do_upload('video')) {
$msg = $this->upload->display_errors();
$this->session->set_flashdata('error', $msg);
} else {
$videoDetails = $this->upload->data();