
Recherche avancée
Autres articles (108)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (16037)
-
Anomalie #3202 : Elimination de champs excédentaires dans la base MySQL suite à la mise à jour de ...
10 avril 2014, par Pascal Verrierjluc - a écrit :
ok mais seulement s’ils sont tous vides !!!!! car ils peuvent avoir été utilisés même si pas par spip-core
C’est effectivement une bonne précaution. Cependant SPIP 3 n’installe plus ces champs lorsqu’il crée une base, contrairement à SPIP 2.
Donc la question est : sur SPIP 3 est-ce que ces champs peuvent-ils être encore utilisés ? Par qui, pour quoi ?
-
avfilter/vf_convolve : unbreak non-power of 2 width&height filtering
23 décembre 2017, par Paul B Mahol -
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}");