
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (94)
-
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. -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6455)
-
lavfi/hue : add dynamic expression evaluation support
14 septembre 2012, par Jérémy Tranlavfi/hue : add dynamic expression evaluation support
-
Revision 1c7b1f9aec : Update to dynamic resize logic for 1pass CBR. Only do the check for resizing if
25 juin 2015, par MarcoChanged Paths :
Modify /vp9/encoder/vp9_ratectrl.c
Update to dynamic resize logic for 1pass CBR.Only do the check for resizing if the feature is selected
(i.e., resize_mode = RESIZE_DYNAMIC).And modify condition for checking to be resize_count >= window,
(since framerate can change).Change-Id : Idceb4e50956bb965a1492b4993b0dcb393c9be4d
-
How to get rid of dynamic FPS
4 mai 2019, par Ujuf66I’m doing a video from the screenshots. Screenshots are in the database and have dynamic FPS (1-3 FPS). How to make one video file with constant FPS ?
before performing this function "av_packet_rescale_ts" I tried on the fly to change the values from 1 to 3 :
st^.codec.time_base.den := 1 - 3
This is the basic cycle of encoding of one picture :
repeat
fillchar(pkt, sizeof(TAVPacket), #0);
av_init_packet(@pkt);
(* encode the image *)
ret := avcodec_encode_video2(st^.codec, @pkt, frame, got_packet);
if (ret < 0) then
begin
writeln(format('Error encoding video frame: %s', [av_err2str(ret)]));
exit;
end;
if (got_packet > 0) then
begin
(* rescale output packet timestamp values from codec to stream timebase *)
av_packet_rescale_ts(@pkt, st^.codec.time_base, st^.time_base);
pkt.stream_index := st^.index;
log_packet(oc, @pkt);
(* Write the compressed frame to the media file. *)
av_interleaved_write_frame(oc, @pkt);
end;
inc(frame.pts);
until (av_compare_ts(frame.pts, st^.codec^.time_base, 1, av_make_q(1, 1)) >= 0);after FPS change (st^.codec.time_base.den), screenshots are not recorded in a video file,
if I don’t change the value (st^.codec.time_base.den), the video speeds up and slows down