
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (107)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (10122)
-
using FFmpeg, how to decode H264 packets
28 mars 2017, par JunI’m new to FFmpeg struggling to decode H264 packets which can be obtained as an array of uint8_t.
After many of investigations, I think it should be able to just put the array into an AVPacket like the below
AVPacket *avpkt = (AVPacket *)malloc(sizeof(AVPacket) * 1);
av_init_packet(avpkt);
avpkt->data = ct; // ct is the array
avpkt->length =....and decode by avcodec_decode_video2(). A part of the code is like
...
codec = avcodec_find_decoder(CODEC_ID_H264);
gVideoCodecCtx = avcodec_alloc_context();
gFrame = avcodec_alloc_frame();
avcodec_decode_video2(gVideoCodecCtx, gFrame, &frameFinished, packet);
...I guess I set all required properties properly but this function is returning only -1 :(
I just found the -1 is coming from
ret = avctx->codec->decode(avctx, picture, got_picture_ptr, avpkt) ;
in the avcodec_decode_video2() ;
Actually, what I’m wondering is if I can decode H264 packets (without RTP header) by avcodec_decode_video2().
Thanks for the help in advance.
/////////// added
OK, I’m still trying to find a solution. What I’m doing now is the below
** the H264 stream in this RTP stream is encoded by FU-A
-
receive a RTP packet
-
look if the second byte of the RTP header is > 0 which means it’s the first packet (and possibly will be followed)
-
see if the next RTP packet has > 0 at its second byte also, then it means the previous frame was a complete NAL or if this is < 0, the packet should be appended to the previous packet.
-
remove all RTP header of the packets so it has only like FU indicator | FU header | NAL
-
try play it with avcodec_decode_video2()
but it’s only returning -1..... am I supposed to remove FU indicator and header too ??
any suggestion will be very appreciated
thanks in advance.
-
-
How to gain volumes of specific bands of audio files using ffmpeg ?
10 mai 2019, par Ko OhhashiI want increase or decrease volume of specific frequency bands with ffmpeg.
I think bandreject and bandpass filter can do similar thing.
But is there any way to reject 80% of energy of specific bands ?Thanks in advance ?
-
How to stream raw H264 ? [closed]
31 mars 2023, par Alexander LazarenkoI don't know anything about streaming, so don't judge me harshly.


The program receives bytes from TCP stream, processes them and adds to byte array. This array contains raw H264 frames.


If they are saved and then broadcasted, the broadcast will be interrupted. Is there something I can do to avoid restarting broadcast ?


Thanks in advance