
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (102)
-
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. -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10294)
-
Revision 5f0e5d628a : vp9_onyx_int.h convert header statics to inline Change-Id : I7872b72651188749410
24 mars 2014, par Jim BankoskiChanged Paths :
Modify /vp9/encoder/vp9_onyx_int.h
vp9_onyx_int.h convert header statics to inlineChange-Id : I7872b726511887494107466a946e2b34e3d74045
-
convert .mts to flv using ffmpeg and file size will 300 mb and more [closed]
20 juin 2013, par user1966466i have problem , when i have uploaded video and convert to flv for all formate .
my code is not working when i have used .mts formate and size 300 MB and more
if(move_uploaded_file($tmp, $path.$video_name_extension)){
exec("/usr/local/bin/ffmpeg -i courses/$video_name_extension -ar 44100 -ab 128k -r 25 -vcodec flv -crf 15 -b 700000 courses/$video_name");
exec("/usr/local/bin/ffmpeg -itsoffset -4 -i courses/$video_name_extension -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320x240 courses/$video_image");
$cmd = "/usr/local/bin/ffmpeg -i courses/$video_name 2>&1";
if (preg_match('/Duration: ((\d+):(\d+):(\d+))/s', `$cmd`, $time)) {
$total = ($time[2] * 3600) + ($time[3] * 60) + $time[4];
}
exec($cmd);
$time = convertToHHMMSS($total);
//echo "updated 2";
// exit;
mysql_query("INSERT INTO tbl_teacher_video (user_id,title,video,video_image,duration,arts_name,video_type,added_on) VALUES ('".$_SESSION['id']."','$txt','$video_name','$video_image','$time','".$_POST['courseradio']."','2','".date('Y-m-d')."')");
unlink('courses/'.$video_name_extension); -
Quickest way to convert HD videos to webm
27 mars 2014, par Daniel7912I'm currently using the following command to convert .mp4 videos into .webm.
ffmpeg -i input.mp4 -vpre libvpx-720p -b 3900k -an -f webm -y output.webm
I appreciate that I'm converting in HD format, but the conversion takes a very long time. Is there anything I can do to speed it up ? I'm running it directly on my web server and trying to tie it in with Node.js as part as a content management system
Thanks for any help