
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (59)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (6345)
-
mpeg12dec : do not add stereo3D side data to a non-existing frame
13 février 2014, par Janne Grunaumpeg12dec : do not add stereo3D side data to a non-existing frame
User data is usually coded before slice data. That means the frame
the user data belongs to is not available while parsing the user data.
The stereo3D side data has to use the same indirection over the private
context as pan scan information and A53 captions.Bug-Id:632
-
Determining size of data[0] in AVFrame of FFMPEG
27 mars 2015, par user2742299I am relatively new to FFMPEG andII am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :
size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;
memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?
Thanks
-
Using ffmepg library for decoding H264 data [on hold]
24 juin 2019, par MoufidThis is the first time I work in video processing tools.
The gool is to decode h264 data and display video (or images).I found that ffmpeg library could handle those kind of issue.
But the problem that I have not found :
- example of code using ffmpeg library to decode h264 data
- h264 input data to test the program with.
Could you please help.