
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (32)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (5870)
-
Set H264 high quality encoding in FFMPEG
25 décembre 2015, par hiitigerI’m working on a function, using ffmpeg to encode a serial images to a MP4 file.
I use H264 codec, and want to have a high quality output.Other things now goes well, but the video quality looks obvious loss.
After some Google, I set codec context like this
video_st = avformat_new_stream(oc, 0);
....
pVideoCodec = avcodec_find_encoder(fmt->video_codec); //AV_CODEC_ID_H264
....
avcodec_get_context_defaults3(video_st->codec, pVideoCodec);
video_st->codec->codec_id = fmt->video_codec;
video_st->codec->width = m_outWidth;
video_st->codec->height = m_outHeight;
video_st->codec->time_base.den = m_fps;
video_st->codec->time_base.num = 1;
video_st->codec->pix_fmt = AV_PIX_FMT_YUV420P;
AVDictionary *param = nullptr;
av_dict_set(&param, "qp", "0", 0);
av_dict_set(&param, "preset", "medium", 0);I also try to set bit_rate. But all turned out to be bad.
I want a visually loss less output video.
So what parameters should I set or anything else did I missed ?
-
avutil/pixfmt : improve definition of AVColorRange
18 septembre 2020, par Jan Ekströmavutil/pixfmt : improve definition of AVColorRange
As it was brought up that the current documentation leaves things
as specific to YCbCr only, ICtCp and RGB are now mentioned.
Additionally, the specifications on which these definitions of
narrow and full range are defined are mentioned.This way, the documentation of AVColorRange should now match how
most people seem to read interpret it at this point, and thus
flagging RGB AVFrames as full range is valid not only according to
common sense, but also the enum definition. -
ffmpeg first key frame pts negative
16 juin 2020, par KeithFirst start the following rtsp sink :



ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv=print_section=0 -rtsp_transport tcp -rtsp_flags listen -i rtsp://localhost:1554




Then in another window, start the rtsp source :



ffmpeg -hide_banner -f lavfi -i color -f rtsp rtsp://localhost:1554




Result :



-0.005000
0.475000






How do I get the first key frame to start at 0 ? Isn't that what it should be ?





I have tried things like



-copyts -start_at_zero
 setpts=PTS-STARTPTS
 -avoid_negative_ts make_zero




This sink :



ffprobe -loglevel error -show_streams -rtsp_transport tcp -rtsp_flags listen -i rtsp://localhost:1554




displays :
 start_pts=-540

 start_time=-0.006000