Quote:
	
	
		| 
					Originally Posted by UserQ  Thx, for the nice app.
 Is it possible to record in another format? MVK, MP4 etc.?
 | 
	
 TS is the video stream file format used by MFC.
You can easily re-mux (without transcoding) the TS file to a MP4 file with FFmpeg.
ffmpeg -i 
input.ts -acodec copy -bsf:a aac_adtstoasc -vcodec copy 
output.mp4
The new MP4 file can be played in VLC smoothly.