Re: [Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-27 Thread COEXSI
> -Original Message- > From: live-devel-boun...@ns.live555.com [mailto:live-devel- > boun...@ns.live555.com] On Behalf Of Ross Finlayson > Sent: mercredi 27 octobre 2010 14:37 > To: LIVE555 Streaming Media - development & use > Subject: Re: [Live-devel] Indexing of

Re: [Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-27 Thread Ross Finlayson
I think there are 2 smalls bugs involving integer overflow in the LiveMedia library: * In "MPEG2IndexFromTransportStream.cpp": u_int8_t pcr_frac = (u_int8_t)(256*(pcr-pcr_int)); must be replaced by: u_int8_t pcr_frac = (u_int8_t)(255*(pcr-pcr_int)); * In "MPEG2TransportStreamIndexFile.cp

Re: [Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-27 Thread COEXSI
> -Original Message- > From: Sébastien RAILLARD (COEXSI) [mailto:s...@coexsi.fr] > Sent: mercredi 27 octobre 2010 09:22 > To: 'LIVE555 Streaming Media - development & use' > Subject: RE: [Live-devel] Indexing of TS files for non MPEG2 video > streams &g

Re: [Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-27 Thread COEXSI
> -Original Message- > From: live-devel-boun...@ns.live555.com [mailto:live-devel- > boun...@ns.live555.com] On Behalf Of Ross Finlayson > Sent: mercredi 27 octobre 2010 02:18 > To: LIVE555 Streaming Media - development & use > Subject: Re: [Live-devel] Indexing of

Re: [Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-26 Thread Ross Finlayson
So, I've developed a small application (in .Net, so running on Microsoft Windows or it may also runs on Linux with Mono as no special library is needed). You can find it here: http://www.coexsi.fr/publications/live555-universal-indexer/ with some extra explanations. It creates a .tsx index file th

[Live-devel] Indexing of TS files for non MPEG2 video streams

2010-10-26 Thread COEXSI
Dear all, This is my first post in this mailing-list, I hope this will be relevant. I'm testing and evaluating the Live555 RTSP server for streaming TS files. Of course, as I would like to use H.264/MPAG4-AVC video stream, I can't index my TS files with the tool "MPEG2TransportStreamIndexer" prov