
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (50)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (5205)
-
Instagram API video publishing [closed]
22 mai 2023, par Bergutov RuslanI'm trying to publish video to instagram and it always gives me error


error code 2207026, message "The video file you selected is in a format that we don't support." and there is also note about aspect_ratio


But the point is that previously i downloaded this video from instagram and it has compatible aspect ratio following specs


video that i'm trying to upload


I've tried couple configs for ffmpeg to prepare video but in my case it didn't get job done


-
Do not redefine percentage variable
14 avril 2014, par ccampbellDo not redefine percentage variable
-
catch percentage File conversion ffmpeg
28 mai 2013, par offboardI've been thinking about implementing a new function on my system.
so I thought to show the state of the file conversion.
I thought of a logic to it.
updating table from the database according to the percentage of file conversion.<?
exec('ffmpeg -i p17prdvj251lk11d3v12ntijfq2u1.mp4 -vf scale=-1:360 -c:v libx264 -preset ultrafast output.flv');
for($i = 0; $i <= 1; $i++){
mysql_query("UPDATE progress SET pss='".$i."' WHERE id='1'");
}the problem is that I do not know if it's possible to get the percentage.
I thought about using the extension of ffmpeg and create a function to convert the files but do not know if it will work