
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (47)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (7862)
-
Opera retiring Unite/Media Player, moving to Webkit etc.
11 mai 2013, par scottschillerOpera retiring Unite/Media Player, moving to Webkit etc.
-
Basic Video Player Using Qt And FFmpeg
7 mars 2016, par Thibaud AuzouI am trying to program a little and basic video player using Qt and
FFmpeg
. I first recompiled Qt to use with Visual Studio 2015.Once done I created my
MainWindow
, theMenuBar
, thePushButtons
that I needed, etc.Now that I wrote the main structure of this little project I am struggling with integrating
FFmpeg
into it. I believe I am trying to uselibavcodec
to read a video. But to be honest I am not sure.I am quite lost at this point, several hours on Google and still lost.
While the documentation of Qt was quite easy to handle, the documentation of
FFmpeg
is kinda vague...An of you has an advise regarding
FFmpeg
? A good tutorial ? -
How to concat two videos of different format with stretching the videos
25 juillet 2020, par XnoxI want to concat two videos together but in doing so, the second video is being stretched. Here is my code


$command = "ffmpeg -i ../unprocessed/{$temp_name} -vf \"[in]drawtext=fontsize=47:fontcolor=white:fontfile='../fonts/Nunito/nunito.ttf':text='{$name}':x=10:y=(h) - 120, drawtext=fontsize=35:fontcolor=white:fontfile='../fonts/Amiri/amiri.ttf':text='{$second}':x=10:y=(h) - 80, drawtext=fontsize=30:fontcolor=white:fontfile='../fonts/Amiri/amiri.ttf':text='{$hospital}':x=10:y=(h-40)[out]\" -y ../unprocessed/{$edited}";
 system($command);
 unlink("../unprocessed/{$temp_name}");

 $video_1 = $_POST["video1"];
 $video_2 = $edited;

 try{

 //generating intermediate files
 $intermediate1 = "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";
 $command = "ffmpeg -i ../unprocessed/{$edited} -qscale 0 -r 25 ../unprocessed/{$intermediate1}";
 system($command);
 unlink("../unprocessed/{$edited}");

 $intermediate2 = "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";
 $command = "ffmpeg -i ../admin/videos/{$video_1} -qscale 0 -r 25 ../unprocessed/{$intermediate2}";
 system($command);

 $outputfile_temp = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";

 $command = "ffmpeg -i \"concat:../unprocessed/{$intermediate1}|../unprocessed/{$intermediate2}\" -c copy ../merged_videos/{$outputfile_temp}";
 system($command);
 unlink("../unprocessed/{$intermediate1}");
 unlink("../unprocessed/{$intermediate2}");

 $outputfile = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";
 $command = "ffmpeg -i ../merged_videos/{$outputfile_temp} ../merged_videos/{$outputfile}";
 system($command);
 unlink("../merged_videos/{$outputfile_temp}");