
Recherche avancée
Autres articles (45)
-
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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (6146)
-
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.