
Advanced search
Medias (1)
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (62)
-
Publier sur MédiaSpip
13 June 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre améliorations et plugins supplémentaires
10 April 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Les formats acceptés
28 January 2010, byLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
On other websites (9629)
-
How do I properly use Flutter FFmpegKit to convert video file formats to H.264?
21 August 2024, by SpencerI've been using GPT and publications from Medium to help with my how I'm supposed to use the FFmpeg kit for Flutter but they have been no help. Perhaps I need clarification on what the tool is supposed to do because links like these below have not been of any help and are very outdated:


https://dev.to/usp/flutter-live-streaming-a-complete-guide-2634




https://github.com/arthenica/ffmpeg-kit/blob/main/flutter/flutter/README.md


This is the code i've been trying to run to convert a video file before I upload to Firestore Database.


Future convertToH264(Uint8List bytes) async {
 try {
 final filename = const Uuid().v4();
 final tempDir = await getTemporaryDirectory();
 final tempVideoFile = File('${tempDir.path}/$filename.mp4');
 await tempVideoFile.writeAsBytes(bytes);
 final outputPath = '${tempDir.path}/$filename-aac.mp4';

 await FFmpegKit.execute(
 '-i ${tempVideoFile.path} -c:v libx264 -c:a aac $outputPath',
 );
 return await File(outputPath).readAsBytes();
 } catch (e) {
 rethrow;
 }
} 



-
Ways to create animations in python?
21 May 2017, by Allison123What is the best way to create a small animation in python?
So far, I have tried: tkinter and FuncAnimation (from animation in matplotlib- this is what is used in A Student’s Guide to Python for Physical Modeling).The goal is to make a set of simple animations, but FuncAnimation is having me install apt-get so that I can get ffmpeg so I can run the animation. It seems like a lot of downloading, which I don’t prefer if there is a similarly powerful alternative.
If possible, I was hoping to integrate these animations into Pygame at a later time. Will that be possible?
YES, this is a subjective question, but I am looking for guidance from experienced python animators. What are the objective strengths and weaknesses of different methods of animating in Python?
-
Ways to create animations in python?
21 May 2017, by Allison123What is the best way to create a small animation in python?
So far, I have tried: tkinter and FuncAnimation (from animation in matplotlib- this is what is used in A Student’s Guide to Python for Physical Modeling).The goal is to make a set of simple animations, but FuncAnimation is having me install apt-get so that I can get ffmpeg so I can run the animation. It seems like a lot of downloading, which I don’t prefer if there is a similarly powerful alternative.
If possible, I was hoping to integrate these animations into Pygame at a later time. Will that be possible?
YES, this is a subjective question, but I am looking for guidance from experienced python animators. What are the objective strengths and weaknesses of different methods of animating in Python?