
Recherche avancée
Autres articles (109)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (13705)
-
Revision 9068bce4e7 : Put iterative motion search under speed control Enable iterative motion search
3 juin 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Put iterative motion search under speed controlEnable iterative motion search for compound inter-inter prediction
of block sizes 4x4/4x8/8x4 only when best coding quality is selected.
The iterative motion search provides about 0.1% gains for derf and
stdhd at this point, at the expense of longer runtime.Change-Id : Idc03e7f827e51f1bb8d269bc3752ee297a6bbfe5
-
How add Custom Prefix segment inside of m3u8 playlist using ffmpeg ip rtsp
23 novembre 2022, par Maruf SmBasically


ffmpeg -i "rtsp ://admin:pass@ip:port/cam/realmonitor ?channel=1&subtype=1" -hls_time 10 -hls_list_size 3 -hls_delete_threshold 3 -hls_flags delete_segments "streaming.m3u8"
using this argument i got


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:21
#EXTINF:10.000000,
streaming21.ts
#EXTINF:10.000000,
streaming22.ts
#EXTINF:10.000000,
streaming23.ts
#EXTINF:10.000000,
streaming24.ts
#EXTINF:3.760000,
streaming25.ts
#EXT-X-ENDLIST



now i want output or m3u8 play list like


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:21
#EXTINF:10.000000,
http://127.0.0.1/output/streaming21.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming22.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming23.ts
#EXTINF:10.000000,
http://127.0.0.1/output/streaming24.ts
#EXTINF:3.760000,
http://127.0.0.1/output/streaming25.ts
#EXT-X-ENDLIST



-
FFMPEG, the penultimate image from the .txt file doesn't show in the video
25 octobre 2019, par ArmKhI’m trying to create a video from the images using
ffmeg
. Actually, the creating of the video works but there is a small problem. I have a text file with the names of the images (paths) which I’m using in the video. The file looks like thisfile 'image1.jpg'
file 'image2.jpg'
file 'image3.jpg'
file 'image4.jpg'
file 'image5.jpg'And the ffmeg command is following
ffmpeg -y -r 1/5 -f concat -safe 0 -i imagenames.txt -i some_audio.mp3 -c:v libx264 -vf fps=30 -pix_fmt yuv420p -t 30 output.mp4
This video should keep the frame on every image for 5 seconds. But the problem is the penultimate image
( image4 in this case )
is not being shown in the video. So, it keeps onimage3
10 seconds and moves toimage5
So, the video in seconds looks like this
[image1] -> [image2] -> [image3] -> [image4] -> [image5]
5sec 5sec 10sec 0sec 5secAnd the problem is not with the
image4
exactly. In case of swappingimage3
andimage4
, the video will skipimage3
[image1] -> [image2] -> [image4] -> [image3] -> [image5]
5sec 5sec 10sec 0sec 5secHope you’ll have any suggestions to fix this issue