문제

I record a series of small (10 sec) mov files from an iDevice. Are these files compatible with HLS media file format?

도움이 되었습니까?

해결책

The HLS media format is MPEG2 TS, which is different from the MOV file that you create from the recording.

It's easy to convert an MOV to M2TS with a tool like ffmpeg:

ffmpeg -i input.mov -vcodec copy -acodec copy output.ts
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top