
Recherche avancée
Autres articles (27)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (5004)
-
Is encoding and streaming images into a video in under 30 ms realistic at all ?
25 septembre 2020, par Hamza GhizaouiSo, a client camera would be sending
20 FPS
4000 x 3000 pixel images per second.

The client want it to be streamed in under
30 ms
upon receiving via a web-browser with a 1920 x 1080 resolution .

Here is how we approached the problem :


Image received => openCV resizes it to 1920 x 1080 => image piped to FFMPEG => ffmpeg encode it to H.264 using Nvec hardware acceleration => FFMPEG sends it via UDP-packets to a Node.js server => the Node.js server serves it to client (using React as a front-end there)


The encoding time requires circa
12 ms
using my best options while keeping the client quality standards.

Downsizing the image requires
10 ms
- this leaves circa8 ms
for the rest

Is it doable at all or should I look for another approach ?


-
decoding of APE (Monkey's Audio) using FFmpeg
19 juillet 2013, par Imran.vaticI am developing a player which plays different audio formats,I have successfully played mp3,acc,wav,ogg,alac,flac formats. But now stuck on APE or Monkey's Audio format, I am using a open source library FFmpeg for decoding.Can someone tell me how to decode APE format,I am successful in creating the packets,storing in a buffer and passing it to FFmpeg in the same fashion as I did for other formats,but FFMpeg is not able to decode those packets.Can someone tell me what wrong I am doing ? What should be the buffer size in case of ape that needs to be passed to ffmpeg.Also header parsing, The decode function of ffmpeg is avcodec_decode_audio3.
-
Remove terminal opened by ffmpeg-python
28 février 2021, par Omid KiI have this program that combines audio and video together and for that I use ffmpeg and ffmpeg-python. The program works really well but when I try to make an exe version, naturally, it pops up a terminal and shows the ffmpeg functioning. I saved the file as .pyw instead of .py so that no window will pop up but it still happens. I also saw another post on how to make the terminal disappear in subprocess but I am using ffmpeg-python and cannot control how subprocess is used unless I modify the source which I do not intend to. Is there anyway to make the terminal window disappear without modifying the source ?