
Recherche avancée
Autres articles (104)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
Sur d’autres sites (11118)
-
How to decode stream data via ffmpeg library [closed]
23 juillet 2024, par Steffen RoeberI found this example on GitHub : avio_read_callback.c. Unfortunately, it is a very simplified example because it reads the whole input file into memory and processes it at once.


Does anyone have a better example of how to use avio_alloc_context with the read callback and how to handle incoming data block by block ? Specifically, I'm looking for details on :


- 

- The appropriate size for avio_ctx_buffer_size
- The correct return value in the read callback if there isn't enough data
- Handling situations where more memory is needed after some data has already
been copied, such as when avformat_open_input fails initially








I have an H.264 stream that works sometimes, depending on the buffer sizes, but I occasionally experience data drops.


-
ffmpeg amix : process pcm data stream realtime
29 décembre 2020, par YouCLI am building an exe with ffmpeg libs. In this exe, I got 2 3 pcm data streams from lower level sdk, I need to mix/merge these data to an audio file on the fly. Now I am trying
amix
filter, my questions are :

- 

- How to send raw pcm data to ffmpeg
filter graph
by hand instead of frames from decoder as usual ? - One of the pcm data streams starts and ends randomly. If I set 3
source filter
s, is it going to work ?






- How to send raw pcm data to ffmpeg
-
How to do reprocessing H264 data to image/video
3 octobre 2017, par somethingunexpectedI have been working on a project which blows my mind.
First of all, I have an IP camera that streams H264 data. I am able to stream it with its RTSP url via VLC/ffmpeg/python (rtsp ://ip:port/PSIA/Streaming/channels/2 ?videoCodecType=H.264). So, there is nothing to worry about streaming.
However, on the project, camera is connected to the another system. This system gives the H264 data via ethernet to my PC, so camera is not connected directly to the PC.
The system gives the data in every 10 ms at 1000 bytes. For example, if incoming data is 800 bytes, it adds 200 null bytes.What I can do is to extract these null bytes and take the raw data via a socket. For latency, I use thread module so there is no data leakage.
What I gotta do is to turn these raw H264 data to an image sequence or a video that can be displayed via VLC, ffmpeg, Classic Media Player etc.
I preferrebly want to write my code in Python and every operation has to be in real-time. So, any help would be appreciated.