
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 (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (11254)
-
avfilter/chromaber_vulkan : use FF_ARRAY_ELEMS instead of magic number
19 novembre 2021, par Wu Jianhua -
avfilter/avgblur_vulkan : use FF_ARRAY_ELEMS instead of magic number
19 novembre 2021, par Wu Jianhua -
How to set the reference frame number correctly in ffmpeg x265
8 mai 2020, par luodonghui1234I have a problem when using x265 in ffmpeg. The following code is that I use x265 params to set the reference frame number of P frame. I have checked the x265 document and set the — ref parameter to achieve the purpose I want, but it is invalid. The resolution of the encoded P frame header to num_negative_pics is always 2. I need to set this number to 1, that is to say, any P frame only needs to refer to the previous frame.



m_cVideoCodeCtxt->flags |= AV_CODEC_FLAG_CLOSED_GOP;
m_cVideoCodeCtxt->rc_max_rate = m_iRate;
m_cVideoCodeCtxt->rc_min_rate = (int)m_iRate / 2;
m_cVideoCodeCtxt->rc_buffer_size = m_iRate;
m_cVideoCodeCtxt->bit_rate = (int)m_iRate;

m_cVideoCodeCtxt->width = 1920; 
m_cVideoCodeCtxt->height = 1080; 
m_cVideoCodeCtxt->time_base = { 1, 30 };
m_cVideoCodeCtxt->framerate = { 30 ,1};
m_cVideoCodeCtxt->frame_number = 1; 
m_cVideoCodeCtxt->gop_size = 30; 
m_cVideoCodeCtxt->max_b_frames = 0; 
m_cVideoCodeCtxt->thread_count = 4;
m_cVideoCodeCtxt->pix_fmt = pix_fmt;
m_cVideoCodeCtxt->codec_type = AVMEDIA_TYPE_VIDEO;
m_cVideoCodeCtxt->codec_id = m_fVideoFmCtxt->video_codec_id;
int ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "preset", "ultrafast", 0);
ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "tune", "zerolatency", 0);

CString cstrX265Parms = L"";
cstrX265Parms.Format(L"keyint=%d:ref=1:no-open-gop=1:weightp=1:b_pyramid=1:weightb=0:cutree=0:rc-lookahead=0:bframes=0:scenecut=0:b-adapt=0:repeat-headers=1:max-merge=1", m_iFrameRate);
USES_CONVERSION;
char* cX265Parms = W2A(cstrX265Parms);
ret = av_opt_set(m_cVideoCodeCtxt->priv_data, "x265-params", cX265Parms, 0);




Is there a problem with my code ? Or need to cooperate with other parameter settings