
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (103)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6894)
-
whats the difference between “&” and multiple terminals in Linux Multiprocessing [closed]
11 mai 2022, par Ma XIaoyuI am using Linux for multi-task processing. Specifically, calling ffmpeg multiple times to transcoding multi source videos.


Strangely, when I am using :
“
ffmpeg-cmds01 &
ffmpeg-cmds02 &
ffmpeg-cmds03 &
……
”
The ffmpeg process often get errors and stop after a few hours.


However, if I open several terminals and using each terminal for only one ffmpeg cmd( i.e., terminal#1 only run ffmpeg-cmd01 ; ternimal#2 only for ffmpeg-cmd02, etc.) The transcoding procedure can last for dozens of days and no errors are reported.


Could anyone kindly help us to analysis what’s there differences ? Opening multiple terminals is too difficult for managing especially when the number of video streams are up to 300+.


Thanks a lot for help !


-
Fix a .WAV header
28 décembre 2018, par Mattia MuraA Ransomware crypted all my files a little time ago, I started studying a way to come over that and I discovered that the ransomware only changes the code of each files up until Offset no.100000. This helped me recovering many of my files just copying and pasting those code lines on the corrupted files from other files with a similiar .ext that werent’t damaged. It has been easy with huge video files and also with some audio files like .3gp or .mp3, but I’m having big issues with a .wav file of 152 MB containing some important audio from an interview.
I am using HxD to manipulate the code and ffmpeg to fix some of the parts of my files after this copy/paste process. I’ve already tried to fix everything with vlc but it gave me no results
HERE is the beginning of the file, that doesn’t have any ordinary .wav header anymore because of the encryption.
And HERE you can see the difference between offset FFFF0 and 100000, to give you a clearer idea.
Basically I should change the code of the file up until the Offset number 100000, or anyway I should make it work despite those crypted lines. Do you know any way to solve this issue ? Thanks a lot and be patient, is my first question here !
-
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);
}
}