
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (38)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
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 (5657)
-
ffmpeg compression takes a long time
31 mars 2021, par yesterdayI'm using the following ffmpeg command in a react-native project to convert and compress a mov-file to a mp4-file. The command works, but it takes +1m30sec to convert a clip of only 10 seconds. Before I did a simple copy (because afaik mov and mp4 have the same codecs), and this copy was pretty fast (almost instantaneous for a 10sec clip).


My command :


ffmpeg -i input.mov -vcodec h264 -acodec mp3 -preset ultrafast output.mp4



My previous command :


ffmpeg -i input.mov -c copy -preset ultrafast output.mp4



The preset
ultrafast
seems not to work with the first command.

-
Is it possible to undo temporal compression by reconstructing I-frames from B or P frames ?
8 avril 2021, par connor449Is it possible to convert P or B frames back into I-frames ?


This post suggest its possible via transcoding, but I do not understand the solution at all.


Create I Frame out of P and B frames


I am trying to take a video with I/P/B frames and reconstruct it to a I/I/I, like a MotionJPEG video.


-
Using FFMPEG library for video compression on Android
12 avril 2021, par RahulI am trying to use FFMPEG library for Video compression on Android.



I've compiled the library using : http://bambuser.com/opensource and https://www.quora.com/What-are-the-steps-for-integrating-FFMPEG-on-Android



Now next step is NDK build of this. But I am not sure what all will go as LOCAL_SRC_FILES, LOCAL_LDLIBS and LOCAL_C_INCLUDES.



Apart from that what function should be called for compression in this library.



Please suggest.