
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (9702)
-
Unable to get current time in TCL. can i use flush here ?
30 novembre 2017, par M. D. Punable to get current time for the bellow code :
proc a {} {
for {set i 0} {$i < 3} {incr i} {
puts " $i "
set imagetime [clock format [clock seconds] -format %Y%m%d_%H%M%S]
set videotime [clock format [clock seconds] -format %Y%m%d_%H%M%S]
exec ffmpeg -f dshow -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/Image_$imagetime.jpg >& c:/test/image_$imagetime.txt &
after 15000
exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/video_$videotime.avi >& c:/test/video_$videotime.txt &
after 15000
}
}
athe output is :
the problem here is, even though the variable for taking video time and image time is different, it is tacking same time for video and image.
any reason or solution for this ????
can i use flush command ???
can i work with following code :
proc a {} {
for {set i 0} {$i < 3} {incr i} {
puts " $i "
set time [clock format [clock seconds] -format %Y%m%d_%H%M%S]
exec ffmpeg -f dshow -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/Image_$time.jpg >& c:/test/image_$time.txt &
after 15000
exec ffmpeg -f dshow -t 00:00:10 -i "video=Integrated Webcam" -s 1280x720 -benchmark c:/test/video_$time.avi >& c:/test/video_$time.txt &
after 15000
}
}
aany answer ??
-
FFMPEG : embed current time in milliseconds into video [closed]
5 juin, par stevendesuI would like to embed the computer's local time in milliseconds into a stream using FFMPEG.



I can embed the local time in seconds using drawtext like so :



ffmpeg -i <input /> -vf "drawtext=text='%{localtime\:%T}'" -f flv <output>
</output>



Looking through the documentation for drawtext, doing some tests, and Googling around, it seems like
localtime
andgmtime
don't provide milliseconds — just seconds. However thepts
options does have milliseconds :


ffmpeg -i <input /> -vf "drawtext=text='%{pts\:hms}'" -f flv <output>
</output>



I also found out that
pts
supports an offset, so I was able to use something like this to display local time (kind of) :


ffmpeg -i <input /> -vf "drawtext=text='%{pts\:hms\:$(date +%s.%N)}'" -f flv <output>
</output>



This had two problems :



- 

- It displayed something like
17499:17:29
for the time... I found a (rather complex) way to work around this - It uses the server's current time when you first run the ffmpeg command as the offset — not the server's current time when ffmpeg actually starts decoding video. I noticed ffmpeg had about a 2-second startup time, causing the clock to be off by roughly 2 seconds







Is there a way to modify my solution, or an entirely separate solution, that can embed server local time in milliseconds into the stream ?


- It displayed something like
-
How to modify x264 source code to get motion search time [closed]
21 octobre 2017, par Yicheng LiI am a new member of stack overflow, I hope you guys can help me solve this problem.
I am now using x264 with ffmpeg to encode some raw video, I was asked how much time the motion search would cost in libx264 video coding. Therefore, I need to modify the code, I tried put the clock around the switch sentence in the encoder/me.c
clock startclock end
After compiling the source code and run a test,
it shows that the time is very small and it seems I am actually getting the time each macro block spent on motion search.So, how should I modify the x264 source code to get the time duration in motion search.
Big Thanks.