
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (40)
-
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 (...) -
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 -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (6620)
-
Why my log printed many times using c api of ffmpeg decoder v2.8 which should be printed once when the callback return value is 1
30 juillet 2019, par user10960024Documentation said when the callback functor interrupt_cb return 1, the blocking operation will be aborted. However, my program echo the log many times which should be printed only once log before it quit. How can I fix it ?
AVFormatContext* formatContext = libffmpeg::avformat_alloc_context();
formatContext->interrupt_callback.callback = interrupt_cb;
formatContext->interrupt_callback.opaque = formatContext;
int interrupt_cb(void *ctx)
{
if (...)
{
LOG(WARNING) << "decoder timeout!"; // it print many times
return 1;
}
return 0;
}I expect the output would be printed only once.
-
combine video and audio .webm files based on wallclock times
30 juillet 2021, par ZachI have a node server recording webrtc streams as separate video/audio files via ffmpeg.
I'm running ffmpeg via node's


child_process.spawn('ffmpeg', commandArgs);



Unfortunately, when I try to combine video and audio files later on, I don't know when ffmpeg created the first frame of each file, resulting in out of sync faces and voices :(


Here's my command line args for piping the stream into ffmpeg


'-loglevel',
 'debug',
 '-reorder_queue_size',
 '0',
 '-protocol_whitelist',
 'pipe,udp,rtp',
 '-fflags',
 '+genpts',
 '-f',
 'sdp',
 '-i',
 'pipe:0',
 '-map',
 '0:v:0',
 '-c:v',
 'copy',
 '-use_wallclock_as_timestamps',
 '1',
 '-timestamps',
 'mono2abs',
 '-flags',
 '+global_header',
 './recordings/video_1627600996166.webm'



I was thinking that it might be possible to set the timestamps of packets to the linux's clock times, and tried a bunch of flags (-timestamps abs, -timestamps mono2abs, -use_wallclock_as_timestamps 1) but nothing seemed to change the result in the file. (I also have tried moving the time commands all around).


packet|codec_type=video|stream_index=0|pts=0|pts_time=0.000000|dts=0|dts_time=0.000000|duration=N/A|duration_time=N/A|convergence_duration=N/A|convergence_duration_time=N/A|size=14568|pos=552|flags=K_



Time always starts at 0.


Any help figuring out how to get accurate times from my recorded audio/video .webm files so I can accurately combine them would be amazing.


Thanks so much :)


-
Revision 21042c7154 : vp8 : Allow for on/off control of UV temporal denoiser. Use noise_sensitivity le
15 juillet 2014, par Marco PaniconiChanged Paths :
Modify /examples/vpx_temporal_svc_encoder.c
Modify /vp8/common/onyx.h
Modify /vp8/encoder/denoising.c
Modify /vp8/encoder/denoising.h
Modify /vp8/encoder/pickinter.c
Modify /vp8/encoder/rdopt.c
vp8 : Allow for on/off control of UV temporal denoiser.Use noise_sensitivity level for enabling UV denoiser.
Change-Id : Ib208786a6fdf654981bcd96a3cf44e8e678025c1