
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (64)
-
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 ) (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (10525)
-
Anomalie #2001 (Nouveau) : revisions_rubrique - pipeline ’post_edition’
22 février 2011, par Julien FérardSauf erreur de ma part... Localisation de l’anomalie¶ Dans le fichier spip/ecrire/action/editer_rubrique.php Dans la fonction revisions_rubriques A la ligne 124. Nature de l’anomalie¶ La variable $champs qui est appelée par le pipeline n’a pas été initialisée. Elle devrait être remplacée par la (...)
-
avfilter : add a blend_vulkan filter
31 décembre 2021, par Wu Jianhuaavfilter : add a blend_vulkan filter
This commit adds a blend_vulkan filter and a normal blend mode, and
reserves support for introducing the blend modes in the future.Use the commands below to test : (href : https://trac.ffmpeg.org/wiki/Blend)
I. make an image for test
ffmpeg -f lavfi -i color=s=256x256,geq=r='H-1-Y':g='H-1-Y':b='H-1-Y' -frames 1 \y -pix_fmt yuv420p test.jpg
II. blend in sw
ffmpeg -i test.jpg -vf "split[a][b] ;[b]transpose[b] ;[a][b]blend=all_mode=normal,\
pseudocolor=preset=turbo" -y normal_sw.jpgIII. blend in vulkan
ffmpeg -init_hw_device vulkan -i test.jpg -vf "split[a][b] ;[b]transpose[b] ;\
[a]hwupload[a] ;[b]hwupload[b] ;[a][b]blend_vulkan=all_mode=normal,hwdownload,\
format=yuv420p,pseudocolor=preset=turbo" -y normal_vulkan.jpgSigned-off-by : Wu Jianhua <jianhua.wu@intel.com>
-
ffmpeg in AWS EBS Php Environment
3 janvier 2018, par ShihasI did a project in Codeigniter framework and uploaded to AWS EBS Php environment.
In the below function I’m trying to create a thumbnail for the uploading video using ffmpeg.
function test()
{
if($_FILES['video']['name'])
{
$extension = pathinfo($_FILES['video']['name'], PATHINFO_EXTENSION);
$video_file = 'vid_'.time().rand(0,10000000);
$video_file_name = $video_file.'.'.$extension;
$video_thumb = $video_file.'.png';
$path = base_url('/assets/portfolio_video/').$video_file_name;
move_uploaded_file($_FILES["video"]["tmp_name"],$path);
echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/project/assets/portfolio_video/$video_file_name -ss 00:00:02.000 -vframes 1 /home/ubuntu/project/assets/thumbnail/$video_thumb");
echo "File Name: ".$video_file_name."";
echo "<img src="http://stackoverflow.com/feeds/tag/".base_url("assets/thumbnail/").$video_thumb."" style='max-width: 300px; max-height: 300px' />";
}else{
$this->load->view('test');
}
}Here the problem was the video file itself not uploading. I just want to know why its not uploading files in AWS. But it works fine in my local server.
Now I try to create a thumbnail for the already existing video in the server.
Path of video file :
/home/ubuntu/123.mp4
Code executed :
function test()
{
echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png");
}But still the thumbnail is not creating.
NOTE : When I execute the terminal command
ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png
directly in the AWS server terminal its create the thumbnail successfully.