
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (54)
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)
Sur d’autres sites (6235)
-
FFMPEG Video not working on Social Media Platforms (Flutter-FFMPEG)
29 avril 2022, par Raj DhakadI am using Flutter-FFMPEG a Flutter library based on Mobile FFMPEG. I am creating a video from a list of .bmp images. The video works plays normally in devices media player on android or desktop.


But when I tried to share that video on social media like say Instagram it says file format not supported.


It didn't use to work on WhatsApp but after some googling, I made some changes and it works on WhatsApp and Youtube now but not on Instagram, Linkedin, etc.


void _runFFmpeg() async {
 print('Run FFMPEG');
 
 var dir = await getApplicationDocumentsDirectory();
 var output = await getExternalStorageDirectory();
 String videoSize = '$ImageWidth:$ImageSize';
 print("${ImageWidth}x$ImageSize");
 var arguments = [
 "-y", // replace output file if it already exists
 "-i", "${output.path}/frame_%d.bmp",
 
 "-s", '${ImageWidth}x$ImageSize',
 "-framerate", "30", // framrate
 
 "-c:v", "libvpx",
 
 '-ab', '128k',
 '-ar', '44100',
 '-strict', 'experimental',
 
 "-vcodec", "libx264",

 "-pixel_format", "yuv420p",

 "-preset", "ultrafast",

 "-tune", "animation",

 "${output.path}/test.mp4"
 ];
 
 await _flutterFFmpeg.executeWithArguments(arguments).then((rc) {
 print('Process done with $rc');
 
 });





- 

-
The plugin I am using (Flutter-FFMPEG) didn't support libx264


-
I tried using '
-profile:v
' to baseline but that gives an error, sayingError setting profile to baseline
.

-
Also, I tried to first make a .webm file and then convert that to mp4. I was also able to use '
-profile:v
' when converting .webm to mp4 and gave no error but the output video didn't work on Social Media platforms.











-
-
A Digital Media Primer for Geeks
23 septembre 2010, par Basil Gohar — Announcements, html5, monty, multimedia, presentation, video, xiphXiph.Org has just released a video entitled, A Digital Media Primer for Geeks. Hit that first link for the press release and hit the second for the actual video page. To briefly summarize, the video features “Monty” Montgomery of Xiph.Org … Read more (...)
-
A Digital Media Primer for Geeks
24 septembre 2010, par noreply@blogger.com (John Luther)Our friend Monty Montgomery (creator of the Vorbis audio codec used in WebM) has started a video series about digital media. The first episode is an excellent overview of "the technical foundations of modern digital media."
You can stream WebM versions of the video in your favorite WebM-enabled browser or download it to your desktop and watch it one of many WebM-enabled media players. Supported browsers and players are listed on our site.
There’s also a companion Wiki.