
Recherche avancée
Autres articles (18)
-
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 : (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (3283)
-
Simulating TV noise
6 janvier 2024, par AlexanderI have googled a bit but was never able to find an answer. What should be my first approach to simulate a video and audio noise from TV on screen ? I mean, when my TV antenna is removed but the TV is still on (like they show in Japanese horror movies sometimes). I can use ffmpeg or any other technique but what is the simplest possible form of the signal ?


-
Simulating TV noise
16 février 2017, par Alexander KulyakhtinI have googled a bit but was never able to find an answer. What should be my first approach to simulate a video and audio noise from TV on screen ? I mean, when my TV antenna is removed but the TV is still on (like they show in Japanese horror movies sometimes). I can use ffmpeg or any other technique but what is the simplest possible form of the signal ?
-
How to use AVPacket as local variable(or said temporary variable)
27 août 2020, par pangomy program receive a aac audio stream from net,and use ffmpeg to decode the stream,so I must pack the stream data to a AVPacket struct,I use a local variable to do this, the code like below :


bool OnRecvAACStream(const char * audioDataPtr,int audioDataSize,int64_t tBeg,int64_t tDura)
{
 AVPacket pkt_tmp; // local varible
 av_init_packet(&pkt_tmp);
 pkt_tmp.data = audioDataPtr;
 pkt_tmp.size = audioDataSize;
 pkt_tmp.pts = tBeg;
 pkt_tmp.duration = tDura;
 
 if (avcodec_send_packet(m_codec_ctx, &pkt_tmp) < 0)
 {
 assert(false);
 return false;
 }
 while (avcodec_receive_frame(m_codec_ctx, m_dec_frame) == 0)
 {
 // read out dec audio data
 ...
 }
 
 retur true;
}




I just use av_init_packet() to init the local varible, av_packet_unref() and av_packet_free() are not called,so is it valid ? is there any memory leak problem ?