
Recherche avancée
Autres articles (94)
-
Publier sur MédiaSpip
13 juin 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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (6576)
-
avformat/jpegxl_anim_dec : avoid overrun with jxlp boxes in container
12 juin 2023, par Leo Izenavformat/jpegxl_anim_dec : avoid overrun with jxlp boxes in container
This switches the jpegxl_collect_codestream_header function to use
avcodec/bytestream2, which better enforces barriers, and should avoid
overrunning buffers with jxlp boxes if the size is zero or if the size
is so small the box is invalid.Signed-off-by : Leo Izen <leo.izen@gmail.com>
-
How to put H264 encoded data, inside a container like .mp4 using libAV libraries (ffmpeg) ?
27 mai 2022, par Vivekanand VI have been playing around with the libAV* family of libraries, that comes along with FFMPEG and I am learning how to implement things like encoding, decoding, muxing etc.


I came across this code : https://libav.org/documentation/doxygen/master/encode_video_8c-example.html , that encodes, YUV frames, to a file, using an encoder. In my implementation, I will change the encoder to H264 using
avcodec_find_encoder(AV_CODEC_ID_H264)
But I do not know, how to put this encoded data, into a proper container (.mp4) using libav libraries, so that the output file, can be played by any media player like VLC, QuickTime, etc...

Can anyone please help me on that ? Every help will be greatly appreciated !


-
avformat/mxfdec : fix frame wrapping detection for J2K essence container
18 juillet 2021, par Pierre-Anthony Lemieuxavformat/mxfdec : fix frame wrapping detection for J2K essence container
For JPEG 2000 essence, the MXF input format module currently uses the value of
byte 14 of the essence container UL to determine whether the J2K essence is
clip- (byte 14 is 0x02) or frame-wrapped (byte 14 is 0x01). Otherwise it
assumes an unknown wrapping.Additional wrappings are documented in SMPTE ST422:2019 :
0x03 : Interlaced Frame, 1 field/KLV
0x04 : Interlaced Frame, 2 fields/KLV
0x05 : Field-wrapped Picture Element
0x06 : Frame-wrapped Picture ElementAnd these should also be handled as frame wrapped content.
Signed-off-by : Pierre-Anthony Lemieux <pal@sandflow.com>
Signed-off-by : Marton Balint <cus@passwd.hu>