
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (69)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (9348)
-
TV Screen gittery while sending Stream using FFMPEG Android
24 septembre 2019, par ArvindI am getting issue while i am sending the stream to wowza using FFMPEG on RTMP
issue is stream working good sending to wowza but issue is while sending its making android tv screen gittery probable what i found this is because its taking time on transcoding and UI thread gets hanglet me show you my command :
-i - -strict experimental -acodec aac -ac 1 -ar 44100 -vcodec libx264 -pix_fmt yuv420p -g 8 -vb 26k -profile:v main -preset ultrafast -r 8 -f flv -threads 0 -async 1 -vsync 1 rtmp://origin.cdn.wowza.com:1935
and below some log :
D/From the FFMPEG: frame= 51 fps= 13 q=40.0 size= 85kB time=00:00:06.52 bitrate= 107.0kbits/s dup=6 drop=273 speed=1.61x
09-24 03:27:42.094 2189-2189/com.addwatchhdmi.app D/Execute onProgress: frame= 51 fps= 13 q=40.0 size= 85kB time=00:00:06.52 bitrate= 107.0kbits/s dup=6 drop=273 speed=1.61x -
ffplay - Two videos (.mp4), one display screen and just a few seconds to display them together [closed]
1er juillet 2024, par Gabe MataI have two videos (.mp4), one display screen and just a few seconds to display them together.


I am able to displayed them together on a split screen via ffmpeg and then opening the output file. The problem is that it takes a long time (3 minutes).


Here is the Code : (first code)


ffmpeg -i _20180114094126_flightvideo_cam1.mp4 \
 -i _20180114094126_flightvideo_cam2.mp4 \
 -filter_complex " \
 [0:v]crop=1280:360:0:0[v0]; \
 [1:v]scale=1280:-1,crop=1280:360:0:0[v1];\
 [v0] [v1]vstack[v]" \
 -map [v] \
 -vcodec libx264 \
 -pix_fmt yuv420p \
 -preset ultrafast \
 6000screen_take1.mkv 



On the other hand, when using ffplay I am able to modify one video at the time and play it right away :


$ ffplay -i _20180114094126_flightvideo_cam1.mp4 -vf scale=425:-2 



How can I have the same outcome as the first code above, but display it on my screen right away(without waiting for the output file to be created, 3 minutes in this case) ?


Please let me know if this is not clear.


-
videoFilter - draw text between one time and between another time
30 décembre 2017, par JklfWell I know we can use drawText for a time range using
"enable=between(t, 1, 3)" (between 1 sec and 3sec)
but how can I add
"and draw text between 45 sec to 50 sec".
I can’t find out how to add another between condition.