
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 (62)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (8780)
-
Revision fabc783695 : Fix an overflow issue in SSE2 forward ADST The step that sums three input sampl
13 novembre 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/x86/vp9_dct_sse2.c
Fix an overflow issue in SSE2 forward ADSTThe step that sums three input samples could potentially cause the
intermediate result go beyond 16 bit limit, when operating as the
second 1-D transform. This commit fixes the issue.Change-Id : Iaf512449ac2d25ddd8a806d760afab362c62a516
-
publish chromium rendered view to ffmpeg/libav
21 février 2014, par user3337537I would like to publish chromium rendered view to ffmpeg/libav stream instead of showing it on the operating window system.
Also plugins like flash should be included in the stream. I don't know much about chromium rendering yet.I know there are command like "ffmpeg -f x11grab -s 1280x720" ... But i would like to do this right from chrome to publish mutliple tabs at the same time.
How would you estimate the development effort for that ?
-
Cut the stream at specific clock time in FFMPEG
14 juin 2017, par FearhunterI use the following command from ffmpeg to cut my live stream from VLC :
ffmpeg -i InputStreamURL -acodec aac -strict -2 -vcodec libx264 -hls_wrap 100 -f hls -hls_time 20 /var/www/html/ts/1.m3u8
Now I want to cut the stream at a specific time like for example 09:00 am till 12:00 PM. I was reading about the
segment muxer
in the FFMPEG documentation. I read the following command :segment_atclocktime 1|0
If set to "1" split at regular clock time intervals starting from 00:00 o’clock. The time value specified in segment_time is used for setting the length of the splitting interval.
For example with segment_time set to "900" this makes it possible to create files at 12:00 o’clock, 12:15, 12:30, etc.Default value is "0".
Is there a other command to specify a timestamp to record the stream ? This is my my interface I am gonna build :
The scenario is :
1 : enter stream URL
2 : begin time = 15:00 pm
3 : end time = 17:00 pm
4 : pieces = 3Conclusion :
15:00 - 17:00 = 2 hours
2 hours * 3600 = 7200 seconds
7200 / 3 = 2400 seconds for each sliced videoHow can I use segment_atclocktime for this scenario ?