
Recherche avancée
Autres articles (37)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 ) (...)
Sur d’autres sites (7596)
-
Revision 67257 : Encore un gros jet d’améliorations : - correction d’un énorme bug sur la ...
29 octobre 2012, par eric@… — LogEncore un gros jet d’améliorations :
correction d’un énorme bug sur la pattern des archives qui fonctionnait par miracle depuis la nuit des temps
les actions de sauvegarde et nettoyage auto sont décorrélées et possèdent leur propre cron et propre configuration
correction d’items de langue
nettoyage des fonctions inutiles et inclusion là ou il faut pour les squelettes
incrément de version
-
Why Ffmpeg boxblur working slowly with non square area ?
29 mai 2021, par Dmitri DmitrievI've got a problem with ffmpeg boxblur if I want to blur ellipse area. No problem if you have 1 or 5 intervals for blurring, but if you have 90min movie and 150 intervals, it may be working > 6 hours. No problem with square blurring even if you have > 150 intervals, but I use ellipse. How do I do it ?


Truncated command (original too long) :




ffmpeg -y -i /data/www/records/streams/ftp/1100921_test.mp4 -loop 1 -i /tmp/tmpmajq7xhk/mask_for_1100921_test_1.png -loop 1 -i /tmp/tmpmajq7xhk/mask_for_1100921_test_2.png -loop 1 -i /tmp/tmpmajq7xhk/mask_for_1100921_test_3.png -loop 1 -i /tmp/tmpmajq7xhk/mask_for_1100921_test_4.png -loop 1 -i /tmp/tmpmajq7xhk/mask_for_1100921_test_5.png ..... -filter_complex "[0]crop=353:373:685:58, boxblur=20:enable='between(t,189.441341,189.781339)'[1] ;[0][1]overlay=685:58:enable='between(t,189.441341,189.781339)'[2] ;[0]crop=353:373:674:93, boxblur=20:enable='between(t,189.781339,189.901336)'[3] ;[2][3]overlay=674:93:enable='between(t,189.781339,189.901336)'[4] ;[0]crop=353:373:671:125, boxblur=20:enable='between(t,189.901336,190.001332)'[5] ;[4][5]overlay=671:125:enable='between(t,189.901336,190.001332)'[6] ;[0]crop=353:373:671:154, boxblur=20:enable='between(t,190.001332,190.09133)'[7] ;[6][7]overlay=671:154:enable='between(t,190.001332,190.09133)'[8] ;[0]crop=353:373:656:183, boxblur=20:enable='between(t,190.09133,190.151327)'[9] ;[8][9]overlay=656:183:enable='between(t,190.09133,190.151327)'[10] ;[0]crop=353:373:668:213 ..... -map 0:a -c:v h264_nvenc -c:a copy -movflags +faststart /data/www/records/streams/ftp/1100921_test.mp4_out.mp4




-
Docker ffmpeg nginx rtmp image fails to record livestream
12 octobre 2020, par user8453321building a react native app that recieves an RTMP stream and then records the stream and i am using a docker container that executes an ffmpeg command to record the livestream https://github.com/danielgormly/nginx-rtmp-ffmpeg-docker. I also have ffmpeg installed on my computer and if i start livestream and run the ffmpeg or rtmpdump command in the terminal it records the stream but somehow the recording fails to record automatically even though there is an ffmpeg exec command on the nginx config file along with a path my nginx.conf file looks like this :


worker_processes auto;
rtmp_auto_push on;
events {}
rtmp {
 server {
 listen 1935;
 listen [::]:1935 ipv6only=on;

 application hls {
 live on;
 hls on;
 record all;
 record_path /recordings;
 record_unique on;
 # exec ffmpeg -i rtmp://192.168.43.14/live/$name -vcodec copy -acodec copy /recordings/$name.mp4;
 on_publish http://192.168.43.14/api/user/live-stream-begin;
 on_publish_done http://192.168.43.14/api/user/live-stream-begin;
 on_done http://192.168.43.14/api/user/live-stream-begin;
 on_play http://192.168.43.14/api/user/live-stream-begin;
 on_play_done http://192.168.43.14/api/user/live-stream-begin;
 on_update http://192.168.43.14/api/user/live-stream-begin;
 }
 }
}