It is an ancient binary file extension, actually a video file created by Inter-Tel Web Conference software. It contains a screen recording video and voice audio, and also ca
"Linktivity stopped support on this app, http://linktivity.com even disappeared from the web..."
It seems they were bought out by Mitel Software so now everything is under the Mitel brand name.
"I just want to find a way to manipulate this file extension, a new good player for mobile and computer"
To open/edit those .lrec files with modern software you'll have to look at their :
I tried :
Export videos for mobile playback :
I've tried the desktop software. Unfortunately it does not accept external commands so there is no way to make a script that takes multiple lrecs and gives back multiple AVI.
The only option is to extract frames from .lrec bytes and use a tool like FFmpeg
to combine the images (since appears to do image grabs as frames) into one .MP4
video. MP4 is then playable on mobile devices.
Also any of your existing AVI files should be converted with FFmpeg
to MP4.
You can download FFmpeg for Windows here (just the big blue button, ignore other options).
ffmpeg.exe
file to some folder like c:\ffmpeg
and put your avi's there. cd C:\ffmpeg
to reach folder, then type :ffmpeg -i filename.avi filename.mp4
(replace filename with preferred for input and output)PATH
settings so that FFmpeg can be accessed from any folder (no need to move files to its own folder).PS:
I am still researching how to get the frames it's an akward format without the specs (bytes order is Big Endian but then entry values are filled as Little Endian, then also not sure whether to reverse every two or four bytes cos it's mixed up like that etc and the pixel bytes themselves seem to have compression but it's not JPEG more like ZIP or whatever). Only confirmed bytes so far are for video width and video height. It seems doable though if the .lrec only contains screen recordings.
After some research, I found that Media Player Classic can play .lrec
files. I don't know, if this helps you a bit.
For a own video player for your company, you would need the encoding infos or a decoder directly from Inter-Tel since they own the licences, without it you can't create one.
Edit: Deprecated info see comments.