
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (107)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (...)
Sur d’autres sites (11236)
-
suitable video encoding for browsers
26 juin 2022, par seriouslyI was researching how illegal movie streaming services handle all the traffic they get and to understand that I had to follow the steps they perform to get the video data to the users. I got to the stage of video transmission and noticed something that boggled me. Most of the illegal movie streaming sites get their movies/tv-shows through piracy/torrents and even most of the streamers are sister companies of the piracy websites. Now when I took a look at the video encodings of the torrent movies and shows they are h.265 but h.265 is not supported by popular browsers like chrome, firefox edge... Does this mean they (the streamers) have to re-encode every h.265 videos to avc/h.264 before they stream it ? If that's the case, that takes them a huge amount of time to convert their whole movie catalog to h.264 not to mention the space they require to save them. Am I taking a look at this the right way ? Do they really convert and store 2, 3 ... differently encoded video files and stream the suitable one ? Or can they somehow convert the chunks of data they are streaming to h.264 live simultaneously without having to store the h.264 formats hence saving conversion time and space ?


-
ffmpeg on mac to get thumbnail using php
5 janvier 2017, par freelixai download the ffmpeg for mac and store it into the web folder.
and in the upload.php i store this line of code. the upload part is successfull but the it failed to create a thumbnail from the video that i upload. please help
if(isset($_POST['submit'])){
$ffmpeg = "ffmpeg/ffmpeg";
$name = $_FILES['file']['name'];
$temp = $_FILES['file']['tmp_name'];
$imagefile = "1.jpg";
$size = "120x90";
$getfromsecond = 5;
$cmd = "$ffmpeg -i $temp -an -ss $getfromsecond -s $size $imagefile";
if(shell_exec($cmd)){
echo "thumbnail created";
}else{
echo "error in making thumbnail";
}
// hide .mp4 from video title in mysql, but extension still attached in file
//$name = preg_replace("/\b.mp4\b/i","",$name);
//$name = preg_replace("/\b.flv\b/i","",$name);
// moving the files from temporary name to the actual database and change the name to the actual name
move_uploaded_file($temp,"video/".$name);
$url = "video/$name";
$query = "INSERT INTO `videolist` (`videoname`,`videourl`) VALUES ('$name','$url')";
mysqli_query($connection,$query);
echo "<br /> Congratulations ".$name." has been uploaded";
} -
lavu/opt : extend AVOptionRange by extra values
30 mars 2014, par Lukasz Mareklavu/opt : extend AVOptionRange by extra values
AVOptionRange is not flexible enough to store AV_OPT_TYPE_IMAGE_SIZE
ranges. Current implementation can only store pixel count.
This patch aims to keep backward compatibility and extend
AVOptionRange with possibility to store width/height ranges.Signed-off-by : Lukasz Marek <lukasz.m.luki@gmail.com>