
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (68)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8973)
-
avcodec/libuavs3d : fix access uninitialized variable when draining
12 mai 2022, par Zhao Zhili -
ffmpeg - how to seek a video in random access using duration value ?
30 décembre 2014, par danieladHello Guys I am Building a video library , thumbnail generation application/library using pure PHP here .
All the video upload and thumb generation works. But , in order to randomly generate a four random thumbnails taken out of the video being uploaded , i want to have a random value out of the actaull video duration.
Below is my code taken form Here and it works fine.
$cmd = "ffmpeg -i {$src} 2>&1 |grep Duration";
$output = array ();
exec($cmd, $output);
if(count($output)) {
$duration = explode(':', trim(str_replace('Duration:', NULL, current(explode(',', current($output))))));
list($hour, $min, $sec) = $duration;
$sec = sprintf("%02d:%02d:%02d", rand(0, $hour), rand(0, $min), rand(0, $sec));
} else {
$sec = "00:00:12"; //12sec it's ok :)
}
$cmd = "ffmpeg -ss {$sec} -i {$src} -s {$w}x{$h} -f image2 -vframes 1 {$destination}";
$output = array ();
exec($cmd, $output);But this a sequential access of a video if want to access like 10:00:00 minute frame to generate thumbnails you will have to wait until ffmPEG get to that place like 10minutes i guess.
So , how can i seek faster of the video being thumbnails are taken randomly or how to speed of this thumb generation. I use below code :
$cmd = sprintf('%sffmpeg -i %s %s -an -ss '.$sec.' -r 1 -vframes 1 -s %s %s %s', $ffmpeg_path, null, $input_file, $element['size'], $thumb_output_file, $log_settings);
Thanks
-
Access denied Error installing ffmpeg with choco
16 novembre 2022, par ramanujans alkhazarimI was trying the command '''choco install ffmpeg''' but the following error appear


ffmpeg not installed. An error occurred during installation :
Access denied to path 'C :\ProgramData\chocolatey\lib\ffmpeg\legal'.