
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (9156)
-
avformat/concatdec : fix cur_dts based duration calculation with nonzero stream start_time
22 novembre 2018, par Marton Balint -
Revision 75272c97cb : Merge "Add a conservative RD based active map in vp9."
11 mars 2014, par Alex ConverseChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_rdopt.c
Modify /vp9/vp9_cx_iface.c
Merge "Add a conservative RD based active map in vp9." -
Merging multiple mjr files into webm file based on timestamp of creation with FFMPEG
2 novembre 2020, par Sankalpa SarkarI am trying to combine multiple mjr files into a single webm file with blank gaps in the middle, based on certain timestamps. As an illustration, suppose I have three clips A (running from 3-3.10), B (running from 3.15-3.30) and C (3.35-3.50).


To combine these, I would like to have a singular merged webm file with A running from 3 to 3.10, followed by a blank screen from 3.10-3.15, then B from 3.15 to 3.30, followed by a blank screen from 3.30 to 3.35 and then C from 3.35 to 3.50. Thus the entire video must be from 3 to 3:50 with the specifications.


So far, I have to obtain the filename and date/time from the directory as and when they are created to determine the specific timestamps. For the same, I am using this code snippet :


FANAME=\/bin/ls -1 *video.mjr | grep "$AGENTID" | sort -t- -k5 | head -1\
AGENTSTAT=`stat -c %y $FANAME`
ATIME=`date +%s -d"$AGENTSTAT"`



Running a loop through all the files, how do I obtain this functionality ?