
Recherche avancée
Autres articles (95)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (5306)
-
How to write a code that will call x264 encoder with required settings repeatedly
11 juin 2018, par MSD Paulhow to write a sample code that will call the x264 encoder with its required settings repeatedly changing the input frames and also changing the output video where it is writing the encoded frames. As example,
x264 —crf 23 —tune fastdecode —fps 64 —keyint 1 —min-keyint 1 —no-scenecut —input-res 4096*2048 —bframes 0 -o v1.mp4 C :/vv_folder/vv_%3d.png
x264 —crf 23 —tune fastdecode —fps 64 —keyint 1 —min-keyint 1 —no-scenecut —input-res 4096*2048 —bframes 0 -o v2.mp4 C :/vv_folder_1/vv_1_%3d.png
and so on.
At each time, different sets of frames will be encoded into one mp4 file.
How to write this external code ?
-
mpegts : Do not try to write a PMT larger than SECTION_SIZE
12 août 2014, par Luca Barbato -
How to write uncompressed BMP-images into AVI-container via FFmpeg ?
4 septembre 2020, par Alexey MatalI have a sequence of a 8bpp, gray BMP-files. I need to write them to AVI-container as video-sequence using FFmpeg.


I'm use C++ FFmpeg create mp4 file as a stub of my class, with some changes. But change codec to "bmp" and pix_fmt to AV_PIX_FMT_GRAY8 in specified places do not get any result.


When I try playing result AVI-file in ffplay, I get this message :




Invalid buffer size, packet size 102454 < expected frame_size 304128




It looks that the problem in pixel-format, but I check all fields in ffmpeg-objects - pixel-format is right..


The result I wait is "AVI-container as video-file with uncompressed 8-bit DIB-data".


Any solution ? Help pls !