
Recherche avancée
Autres articles (55)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (8100)
-
"Unknown Encoder 'libx264'" error while using FFMPEG
9 juillet 2018, par newuserI have followed the guide given here @ traq.ffmpeg. And everything goes smoothly. But when I try to run a command with FFMPEG to convert something to h.264, I get the error :
Unknown Encoder ’libx264’
I’m using Ubuntu 16.04 LTS.
-
avformat/flacenc : Only update streaminfo if it has changed
12 avril 2020, par Andreas Rheinhardtavformat/flacenc : Only update streaminfo if it has changed
An AVStream's codecpar is supposed to be filled by the caller before
avformat_write_header() ; if the CodecParameters change, the caller
should signal this via packet side data, but not touch the AVStream's
codecpar.The FLAC muxer checks for packet side data containing updated extradata,
yet if nothing has arrived by the time the trailer is written, the
already written extradata is overwritten by the very same extradata
again, unless the output is unseekable, in which case a warning that the
FLAC header can't be rewritten is emitted.This commit changes this by only trying to rewrite the extradata if a
new streaminfo arrived via packet side data. Only then is a warning
emitted in case the output is unseekable.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Is there a way to parse Hevc rtsp packets and find height and width in c++ application
2 août 2021, par dinesh47I have written a C++ application with processing of RTP video and Audio packet(Bitstream packets) but can't able to find a way to get height and width from VPs,SPs or PPs from every keyframe.
Note:I am using only pure c++ codes until encoding and writing the file part with ffmpeg lib


Need to know How to Extract it from that extra data for Memcopy it to add with start code.


Need to find Height and width with it(Parsing).


i have Written in case like the folowing :


byte *packet=&*(frameData);
int size =ptr->m_size;
boost::shared_ptr<byte> dst ;
int naltype = (packet[0] >> 1) & 0x3f;

switch(naltype)
{
case HEVC_NAL_VPS:
 m_vpsSize=(size)+4;
 m_vpsHeader[3]=1;
 memcpy(&m_vpsHeader[4],&packet[0],size); //need size and packet start and End dimension
 break;
case HEVC_NAL_SPS:
 m_spsSize=(size)+4;
 m_spsHeader[3]=1;
 memcpy(&m_spsHeader[4],&packet[0],size);//need size and packet start and End dimension
 break;
case HEVC_NAL_PPS:
 m_ppsSize=(size)+4;
 m_ppsHeader[3]=1;
 memcpy(&m_ppsHeader[4],&packet[0],size);//need size and packet start and End dimension
 break;
case 49:
 byte new_nal_header[2]={0};
 int startFU=packet[2]&0x80;
 int endFU = packet[2]&0x40;
 int fuType=packet[2] & 0x3f;
 new_nal_header[0] = (packet[0] & 0x81) | (fuType<<1);
 new_nal_header[1]=packet[1];

}
</byte>