
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 (43)
-
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 ;
-
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 -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6593)
-
avcodec/vlc : Attempt to free buf after use in ff_vlc_init_multi_from_lengths()
13 septembre 2023, par Michael Niedermayeravcodec/vlc : Attempt to free buf after use in ff_vlc_init_multi_from_lengths()
Fixes : use after free
Fixes : 62153/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MAGICYUV_fuzzer-4702814909366272Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
List of free TCP ports in C++ without using bind() with port=0
8 mai 2016, par userDtrmI need to create a set of dynamic ffmpeg instances that listens to a port that is available within a C++ program. The ffmpeg instances are created using a command identified as
ffmpeg -i tcp://ip:port?listen ...
, where the port number should be an available free port. Then ffmpeg command is executed usingexecv()
within a c++ program.Therefore, I need to find a free port which is currently available without using
bind()
withport=0
. As I understand, thebind()
will bind the port when trying to check if the port is available.Please let me know if there is a way to implement this within C++.
Thanks.
-
Libav - how to correctly free memory leaking with av_write_frame
20 avril 2017, par golstarI am using LIBAV on Ubuntu to save user’s video stream(RTP VP8) on server in WebM format.
The problem is, memory is leaking when using av_write_frame. Memory usage is constantly growing (equally with the webm file size) and is never freed after finishing the video recording. The only way to free the memory(RAM) is deleting the WebM file from the storage (HD) afterwards.I have 2 questions :
- Is it possible to free the memory consumed by
av_write_frame
during runtime ? I am freeing thepacket.data
correctly. Memory usage is not growing whenav_write_frame
line is commented. -
What is the correct way to close the file ? This is what I’m doing (it does not free the memory) :
av_write_trailer(fctx);
avcodec_close(vStream->codec);
avio_close(fctx->pb);
avformat_free_context(fctx);
- Is it possible to free the memory consumed by