
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (37)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6260)
-
FFmpeg : how to make video out of slides and audio
17 juillet 2014, par Muhammad UmerSo i have several images some png and some jpgs. And i have mp3 audio. I want to make a video file don’t care what format.
So i want either :
A video made up of xyz size meaning images are centered and cropped if they go beyond dimensions coupled with audio in mp3 format..
or just one image centered or and cropped, still image, video with audio.
I have tried copying and pasting things and even modifying them after reading documents but in the end i got a blank video with audio and huge file that took forever to complete.
I have windows 7.
-
copy_block : Change type of array stride parameters to ptrdiff_t
26 août 2016, par Diego Biurrun -
How can I use ffmpeg's swscale to convert from NV12 to RGB32 ?
22 avril 2013, par AsikSay I have an NV12 frame in memory as an array of bytes. I know :
- its Width and Height
- its Stride (total width of a line including padding), which is the same for Y and UV components as per NV12 specification
- I know where Y begins, U begins at Y + (Stride * Height), and V begins at U + 1 (interleaved with U).
Now this is what I have so far :
SwsContext* context = sws_getContext(frameWidth, frameHeight, AV_PIX_FMT_NV12, frameWidth, frameHeight, AV_PIX_FMT_RGB32, 0, nullptr, nullptr, nullptr);
sws_scale(context,So I don't know what the parameters to sws_scale should be :
- srcSlice : a pointer to the array of bytes ? It should apparently be a
pointer to a pointer, but what I have is just a single-dimensional
array of bytes. - srcStride : apparently expects an array of strides, but I have just one stride for the entire file. Should I pass an array with just
one element ? - srcSliceY : an offset to the first byte I guess ? Should be 0 then.
- srcSliceH : the frame height I guess
- dst : once again, pointer to a pointer, but my destination output is actually just another array of bytes...
- dstStride : Width * 4 I guess ?
Any help appreciated.