
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (61)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9252)
-
Custom Reading Callback Function for FFMPEG I/O
19 septembre 2015, par Joe AllenI need to create a custom callback function that can read contents of a file in the form of a
std::string
into auint8_t * buf
. I tried multiple different methods found around the internet but it works on some file and breaks the application on others.Here is the function definition for the callback for the reading function :
static int readCallback(void* opaque, uint8_t * buf, int buf_size)
Here is how I am calling the
readCallback
function from the code :uint8_t * avio_ctx_buffer = NULL;
avio_ctx_buffer = (uint8_t *) av_malloc(avio_ctx_buffer_size);
avio_ctx = avio_alloc_context(avio_ctx_buffer, avio_ctx_buffer_size,0, &audio, &readFunction1, NULL, NULL);audio
is a variable that contains the audio file in the form of astd::string
-
Is is possible to create custom shapes with ffmpeg ?
7 mai 2021, par nardoI am trying to create a xstack layout with ffmpeg commands and from what I have seen online it is only possible to create rectangles with all the videos merge them into one video. However, I am trying to create a layout with custom shapes with X and Y coordinates.




Would this be possible with ffmpeg or do I need another library or open source code base to create this ?


-
Writing to a custom output with FFmpeg AVIOContex
3 septembre 2015, par Joe AllenSo I have been reading about using AVIO struct to be able to load from a custom source. Here are the posts I have been reading :
How can libavformat be used without using other libav libraries ?
Reading a file located in memory with libavformat
But in each of these posts talk about loading data from a different source.
What about if you want to write your converted data to a different source for instance ? How would you go about it ? Ideally, I want to avoid as much file I/O as possible.