
Recherche avancée
Autres articles (106)
-
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 (...) -
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 ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (16490)
-
Encoding raw video data using C++ [closed]
6 décembre 2020, par LakshyaI have raw video data ( array of unsigned chars ). Which is data to represent one frame.
I have many frames like this.(Actually these are the frames of a video which I have already decoded.)


How can I encode it using Gstreamer or FFMPEG or something else. Programming language should be C++.


I am expecting some example code.


-
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