This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA2EG-17: TDA2EG-17: Split time for H.264 encode

Part Number: TDA2EG-17
Other Parts Discussed in Thread: TDA2

Hi,

I try to make DVR use case on TDA2 platform.

Record capture to h.264 file by Encode link.

I using system command to get 1 minute file.

                System_linkControl(chainsObj.ucObj.NullLinkID, SYSTEM_CMD_STOP, NULL, 0, (Bool)TRUE);
                System_linkControl(chainsObj.ucObj.EncodeLinkID, SYSTEM_CMD_STOP, NULL, 0, (Bool)TRUE);
                System_linkControl(chainsObj.ucObj.EncodeLinkID, SYSTEM_CMD_START, NULL, 0, (Bool)TRUE);
                System_linkControl(chainsObj.ucObj.NullLinkID, SYSTEM_CMD_START, NULL, 0, (Bool)TRUE);

But only first file will be normal. Other files can not play on PC (VLC media player)

How to split h.264 encode result ?

Thanks.