
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (34)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (4280)
-
iOS, how to convert mp4 file into ts (transport stream) without ffmpeg ?
23 décembre 2016, par Vasyl Khmilas I described in title, I need to convert mp4 file to ts file, but without using ffmpeg library. Is it possible to do by native API ? Where should I look to ?
-
encapsulating H.264 streams variable framerate in MPEG2 transport stream
2 mai 2012, par user1058600Imagine I have H.264 AnxB frames coming in from a real-time conversation. What is the best way to encapsulate in MPEG2 transport stream while maintaining the timing information for subsequent playback ?
I am using libavcodec and libavformat libraries. When I obtain pointer to object (*pcc) of type AVCodecContext, I set the foll.
pcc->codec_id = CODEC_ID_H264;
pcc->bit_rate = br;
pcc->width = 640;
pcc->height = 480;
pcc->time_base.num = 1;
pcc->time_base.den = fps;When I receive NAL units, I create a AVPacket and call av_interleaved_write_frame().
AVPacket pkt;
av_init_packet( &pkt );
pkt.flags |= AV_PKT_FLAG_KEY;
pkt.stream_index = pst->index;
pkt.data = (uint8_t*)p_NALunit;
pkt.size = len;
pkt.dts = AV_NOPTS_VALUE;
pkt.pts = AV_NOPTS_VALUE;
av_interleaved_write_frame( fc, &pkt );I basically have two questions :
1) For variable framerate, is there a way to not specify the foll.
pcc->time_base.num = 1 ;
pcc->time_base.den = fps ;
and replace it with something to indicate variable framerate ?2) While submitting packets, what "timestamps" should I assign to
pkt.dts and pkt.pts ?Right now, when I play the output using ffplay it is playing at constant framerate (fps) which I use in the above code.
I also would love to know how to accommodate varying spatial resolution. In the stream that I receive, each keyframe is preceded by SPS and PPS. I know whenever the spatial resolution changes.
IS there a way to not have to specify
pcc->width = 640 ;
pcc->height = 480 ;
upfront ? In other words, indicate that the spatial resolution can change mid-stream.Thanks a lot,
Eddie -
mpeg packetized stream into transport stream
23 janvier 2017, par lukstackI have some questions related to the multiplexing of mpeg PES streams (packetized) into mpeg TS.
Why the DTS and PTS value are included in the PES header and PCR value in the transport stream header ?
What if we want to play somehow just PES stream then we have no PCR value needed for playout ?
If the PCR is created by multplekser (ts header) not encoder, then how multplekser know the corelation with PTS,DTS of the coded stream ?
Thanks for all answers.