
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (36)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (13072)
-
Revision 202 : Fixed generation of Windows 64bit packages.
15 juin 2010, par marc.noirotChanged Paths :
Modify /trunk/CMakeLists.txt
Fixed generation of Windows 64bit packages. -
I need a compact c/c++ code for motion vectors extraction from mp4 file without frame decoding [on hold]
23 mars 2018, par AndyreyI have searched a lot of answers on this kind of question. Many of them point out to code, presuming frame decoding :
DCT coefficient and motion vector extraction in encoded domain ;
https://github.com/vadimkantorov/mpegflow ;
https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/extract_mvs.c.I implemented these codes in my program and saw they decode video frames, and then use frame side data for extracting motion vectors.
Others give command lines for executing bynaries :
Motion Vector extraction from encoded video file
or just gives reference to huge set of library files with no idea what to do with them.
What I badly need : code for extracting motion vectors from mp4 with no frame decoding (no pixel domain restoring). Is it possible ?
From my 3rd reference I used code like next, where I suspect frame decoding happens :
while (ret >= 0)
{
ret = avcodec_receive_frame(video_dec_ctx, frame);
/*I omit some exclusion processing*/
if (ret >= 0)
{
int i;
AVFrameSideData *sd;
video_frame_count++;
sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS);
if (sd)
{
const AVMotionVector *mvs = (const AVMotionVector *)sd->data;
for (i = 0; i < sd->size / sizeof(*mvs); i++)
{
const AVMotionVector *mv = &mvs[i];
printf("%d,%2d,%2d,%2d,%4d,%4d,%4d,%4d,0x%"PRIx64"\n",
video_frame_count, mv->source,
mv->w, mv->h, mv->src_x, mv->src_y,
mv->dst_x, mv->dst_y, mv->flags);
}
}
av_frame_unref(frame);
}
} -
avformat/mov_chan : make iso_channel_position table more compact
3 juin 2024, par Marton Balint