
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (30)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (4692)
-
Anomalie #3368 (Fermé) : Validation XML - Liens (links/href, etc.)
14 août 2016, par b bVoilà, j’ai annulé la modif en 3.2, 3.1 et 3.0 :
http://zone.spip.org/trac/spip-zone/changeset/99153
http://zone.spip.org/trac/spip-zone/changeset/99154
http://zone.spip.org/trac/spip-zone/changeset/99156On ferme :)
-
How can I make ffmpeg output proper SDP data for a data stream
8 juillet 2021, par Shalom CrownI have a program based on the FFMPEG libraries, to add KLV data to a video stream. When I try to sent the output to an RTSP server (rtsp-simple-server), I get a 400 response.


The apparent reason is that the SDP data for the KLV stream is missing the rtpmap.


I would like to add the missing data either by setting the proper parameters in the contexts, or by specifying the data explicitly.


This is the ANNOUNCE captured with Wireshark


ANNOUNCE rtsp://0.0.0.0:8554/test RTSP/1.0
Content-Type: application/sdp
CSeq: 2
User-Agent: Lavf58.29.100
Content-Length: 270

v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 127.0.0.1
t=0 0
a=tool:libavformat 58.29.100
m=video 0 RTP/AVP 96
b=AS:10000
a=rtpmap:96 H264/90000
a=fmtp:96 packetization-mode=1
a=control:streamid=0
m=application 0 RTP/AVP 97
b=AS:90
a=control:streamid=1



Code fragment for initializing the data stream :


AVStream* data_track = avformat_new_stream(muxer, nullptr);

if (data_track == nullptr) {
 LOG_ERROR << "failed to open data output stream";
 return nullptr;
}

muxer->oformat->video_codec = AV_CODEC_ID_H264;

AVCodec *klvEncoder = avcodec_find_encoder(AV_CODEC_ID_SMPTE_KLV);

if (klvEncoder == nullptr) {
 klvEncoder = avcodec_find_encoder(AV_CODEC_ID_BIN_DATA);
}

if (klvEncoder == nullptr) {
 klvEncoder = avcodec_find_encoder(AV_CODEC_ID_TEXT);
}

if (klvEncoder != nullptr) {
 klvEncoderContext = avcodec_alloc_context3(encoder);

 avcodec_parameters_from_context(data_track->codecpar, encoderContext);
} else {
 avcodec_parameters_copy(data_track->codecpar, pVideoStream->codecpar);
}

data_track->codecpar->codec_tag = KLV_ID_TAG;
data_track->codecpar->codec_type = AVMEDIA_TYPE_DATA;
data_track->codecpar->codec_id = AV_CODEC_ID_SMPTE_KLV;
data_track->codecpar->bit_rate = 90000;
data_track->codecpar->format = AV_SAMPLE_FMT_U8;
data_track->stream_identifier = KLV_ID_TAG;
data_track->id = 0x101;
data_track->time_base = video_track->time_base;
data_track->avg_frame_rate = video_track->time_base;



-
Revision 576c2bb021 : Fix bug in segment skip. Wrong max data size (skip has no data) and use of vp9_
7 juin 2013, par Paul WilkinsChanged Paths :
Modify /vp9/common/vp9_seg_common.c
Modify /vp9/decoder/vp9_detokenize.c
Modify /vp9/encoder/vp9_onyx_if.c
Fix bug in segment skip.Wrong max data size (skip has no data) and use of vp9_get_segdata()
when it should be vp9_segfeature_active().Change-Id : I1eb97d33df6e2a42cc589049f704266fe3639902