Hi folks, hospital technician here.
We have a medical instrument that creates files ending in .cine. The instrument can be used to view the videos and export individual files to MP4 but I want to bulk convert the files on our (WIMP) server so they can be distributed and viewed on client PCs.
Trouble is I cannot open the file with any utility that should be able to do so (ffmpeg/ffplay, VLC, Handbrake and even Phantom CineViewer). I have looked at the file in binary-mode editor and see no identifiable headers.
So, is the format a true .cine file (how to tell?) and what, preferably free/open source Win-friendly, package can handle it & convert to MP4 in bulk?
The file (test data, ~50MB zipped) can be downloaded from Here
Cheers,
K.
+ Reply to Thread
Results 1 to 5 of 5
-
-
Even proprietory/raw files, which you have here, requires metadata - frame rate, frame size etc. - that player software reads to play back the file.
That metadata will be stored somewhere on the camera and a simple transfer of the raw file leaves it somewhat 'naked'. The export to .mp4 encapsulates that metadata.
It appears that the main software for these cameras - PCC - does allow for bulk export. -
Does this look something like what you expect?
[Attachment 60003 - Click to enlarge] -
The OP must have found something that works for him. Here's how I got the above video with AviSynth:
Code:RawSource("OD.Scan(2).cine", width=2048, height=256, pixel_type="Y8", index="0:0")
The basic ffmpeg command line to read the source is:
Code:ffmpeg -y -f rawvideo -pixel_format gray -framerate 25 -video_size 2048x256 -skip_initial_bytes 80 -i OD.Scan(2).cine -c:v mjpeg -q:v 2 output.mov
For batch processing you can convert all .cine files in a folder with:
Code:for %%F in (*.cine) do ( ffmpeg -y -f rawvideo -pixel_format gray -framerate 25 -video_size 2048x256 -skip_initial_bytes 80 -i "%%~dpnxF" -c:v mjpeg -q:v 2 "%%~dpnF.mov" )
-
Thanks jagabo,
I missed the notification of your reply - for umpteen months <8^)
It looks good, I'll investigate it soon and let you know how I do.
I hope you're still out there helping others. Many thanks for taking the time to help and my apologies for letting NHS life keep me from following this up.
Cheers,
K.
Similar Threads
-
tsMuxeR can't open .mp4 file with Dolby Vision
By spennis in forum Authoring (Blu-ray)Replies: 5Last Post: 5th Jul 2021, 02:34 -
MP4 file won't open, not much in MediaInfo
By koberulz in forum Newbie / General discussionsReplies: 13Last Post: 7th Jul 2018, 08:42 -
Free/Open source video capture software with schedule recorder
By monks19 in forum Capturing and VCRReplies: 0Last Post: 22nd Jun 2018, 01:33 -
Staxrip 'Failed to open source, try another source filter?'
By hanaluluelle in forum Video ConversionReplies: 0Last Post: 1st Mar 2017, 01:44 -
Mp4 file won't open and has no media info
By killercuddles in forum Video Streaming DownloadingReplies: 5Last Post: 21st Nov 2016, 06:12