
Recherche avancée
Autres articles (10)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (2807)
-
Fixing animation strobiness with FFMPEG
26 juillet 2022, par MarcTheSparkI have an animation I'm making with Processing (it's of some numbers moving around on a black background), and I'm trying to avoid the strobe-like effect that happens when the numbers move fast.


I think the way to go is to do some sort of blur of adjacent frames, and I was wondering how to accomplish this in FFMPEG. I could create a high FPS version of the animation (120 FPS or whatever), but how would I reduce this to a 30fps video with some sort of motion blur ?


Sorry if I'm not explaining this well. I feel like the strobiness is a well-known issue with probably a well-known solution, but I'm having trouble finding it by searching online.


-
How to mimic Instagram/TikTok HLS streaming capabilities ?
30 avril 2023, par nickcoding2I'm converting a .mp4 file to HLS in Node.js and storing it in S3. What are the important options to pass in here ? I'm currently passing in the below, because that's what was suggested in some online tutorial I followed.


'-profile:v baseline',
'-level 3.0',
'-start_number 0',
'-hls_time 3',
'-hls_list_size 0',
'-f hls'



Should I be lowering the hls_time parameter to say, 1 ? Isn't the smaller that number, the more granular each segment is, and the quicker each segment of the stream will be loaded on the client side ? What are other things to consider here ? I'd like to get as close to TikTok/Instagram media playing capabilities as possible.


-
What does 'Past duration X.XXX too large' mean ?
12 janvier 2017, par ErikWhen encoding H.264 using ffmpeg I get the following type of warnings en masse :
Past duration 0.603386 too large
Past duration 0.614372 too large
Past duration 0.606377 too largeWhat do they mean ? I have not found anything clear online or in the ffmpeg documentation.