
Recherche avancée
Autres articles (49)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Les images
15 mai 2013 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (3751)
-
Streaming x264 with packet loss
6 octobre 2014, par user2629511I write the program where I use x264 as the coder.
I use the following parameters :av_opt_set (codecContextH264[numberCoder]-> priv_data, "profile", "baseline", 0);
av_opt_set (codecContextH264[numberCoder]-> priv_data, "preset", "ultrafast", 0);
av_opt_set (codecContextH264[numberCoder]-> priv_data, "tune", "zerolatency", 0);
codecContextH264[numberCoder]-> bit_rate =bitrate;
codecContextH264[numberCoder]-> bit_rate_tolerance=bitrate-5000;
codecContextH264[numberCoder]-> width = w;
codecContextH264[numberCoder]-> height = h;
codecContextH264[numberCoder]-> time_base.den = fps;
codecContextH264[numberCoder]-> time_base.num = 1;
codecContextH264[numberCoder]-> pix_fmt = PIX_FMT_YUV420P;
codecContextH264[numberCoder]-> gop_size = fps*3;
codecContextH264[numberCoder]-> keyint_min = fps*3;
codecContextH264[numberCoder]-> max_b_frames = 0;
codecContextH264[numberCoder]-> slices = (int) (w*h)/1500+1;I use only I and P frames.
What x264 settings I shall use that could lose P frames ?
Perhaps x264 has no such opportunity ?!
I read that if to use a "base" profile, it is possible to lose P frames...
Help please. -
Laravel Queue Timeout
25 juin 2021, par TeldarI'm running Laravel queue with that command :



/usr/bin/php7.2 artisan queue:listen --timeout=0




But the process keeps stopping at 300 seconds with that error :



Symfony\\Component\\Process\\Exception\\ProcessTimedOutException(code: 0): The process [...] exceeded the timeout of 300 seconds




I've also tried to set timeout in job's class :



public $timeout = 5000;




Anyone know what to do ? This process is for video encoding so a bit long running.



Thx !


-
How to convert ffmpeg raw stdout to video
20 juin 2018, par Данил ВагаповI use ffmpeg to capture video from my webcam and stream it via netcat.
ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 -f avi pipe:1 | nc -l -p 5000
I wanna display the stream on my surface view, but I still don’t know how to do it.
I use socket to get the data from netcat.
What’s the simpliest way to convert and display this data ?