
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (110)
-
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 ;
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (17450)
-
Re-streaming RTSP with higher FPS
4 février 2021, par AndBondStyleI have RTSP stream with very low and non-constant FPS (varying between 0.2 ... 0.5). It is generated using
-skip_frame
flag to reduce network and CPU usage as much as possible :

ffmpeg -skip_frame nointra -i -vsync 2 -f rtsp 



As a consequence, it takes a very long time (1 ... 3 minutes) to connect to that stream and see first meaningful image. I want this stream to work with generic players without any tweaks, so my decision was to re-stream it with higher FPS (10, to be exact) :


ffmpeg -i -vf "fps=fps=10,setpts=N/(10*TB)" -f rtsp 



Not entirely sure how that command is working, but it somehow did the trick and reduced connection time to about 5 seconds. However, I suspect that it's outputting frames in bursts, which is not ideal. For example, if original low-fps stream contains 2 frames which are 3 seconds apart, my re-stream command (probably) does the following :


- 

- When the first input frame comes, output a bunch of frames as fast as possible
- Don't output anything for an entire 3 seconds
- When the second frame comes, output 3 * 10 = 30 frames as fast as possible
- Sleep again until new input frame shows up...










Is there a way to make my re-stream command output frames evenly (with a constant FPS) ? Or maybe there's another way to reduce RTSP connection (buffering ?) time ?


-
Ffmpeg speed up image extractio from higher quality video [closed]
29 octobre 2020, par ExpressingxI'm using
ffmpeg and mage
to create thumbnails for our web client. This is current fastest implementation I've found. However if the video quality is higher (e.g. full hd) it still takes a lot of time for 15 min video duration.

Mage is used to create sprite image from the generate images and the
.vtt
file is manually created from the code. Those 2 are fast, so I have no concerns with them.

Ffmpeg command


ffmpeg.exe -loglevel panic -i video.mp4 -q:v 8 -vf "select=not(mod(n\,30)),scale=120:80" -vsync 0 -frame_pts 1 .\test\frame-%d.jpg



I'm generating the jpegs with their frame time as name so I can parse and correctly display them in the client.


Is there a way to make it faster ?


-
How do I concat two video mp4 files, each of which has an audio of different sample rates with ffmpeg
14 août 2020, par GeoI have two videos : video1.mp4 and video2.mp4 in the configured txt file, both videos have mp3 audios :
video1.mp4 has : Audio : mp3, 32000 Hz, mono, fltp, 48 kb/s
video2.mp4 has : Audio : mp3, 24000 Hz, mono, fltp, 32 kb/s
I need to keep the different sample rates since I need to change the pitch to make it sound different from the real voice of the person, now I tried to merge the two videos by concatenating them :


ffmpeg -safe 0 -f concat -segment_time_metadata 1 -i videoconf.txt -vf select=concatdec_select -af aselect=concatdec_select,aresample=async=1 -y videoout.mp4


but I got a lot of errors like these :


[aac @ 0x730e491e00] channel element 2.12 is not allocated


index.js:81 Error while decoding stream #0:1 : Invalid data found when processing input


index.js:81 [aac @ 0x730e491e00] TYPE_FIL : Input buffer exhausted before END element found


index.js:81 Error while decoding stream #0:1 : Invalid data found when processing input


......


So how can I concatenate multiple videos with different audio sample rates inside each video ?
By the way, when the sample rates are the same for all the audios inside each video, the concat works like a charm.


Thanks