FFmpeg does not convert BVR files anymore

Post Reply
Solarplex
Posts: 1
Joined: Sun Mar 02, 2025 2:41 pm

FFmpeg does not convert BVR files anymore

Post by Solarplex »

Hello,

Has anyone else had issues with converting BVR to MP4? I used to be able to use a powershell script from this forums on my BVR files to batch convert them to mp4s.

$ffmpeg_params = "-n -loglevel error -probesize 42 -i $source_dir\$oldvid -c:v libx264 -crf 30 $source_dir\$newvid"

Above was the ffmpeg command that was used. I suspect that since my BVR files are direct encode as HEVC that this would change to use libx265 but that doesnt seem to resolve the issue.

Command line for test: ffmpeg -probesize 42 -i "C:\BlueIris\New\Duo.20250228_150000.bvr" -c:v libx265 -crf 30 C:\BlueIris\Stored\test.mp4 -loglevel debug

Code: Select all

Debug log from FFMPEG when using : 
Splitting the commandline.
Reading option '-probesize' ... matched as AVOption 'probesize' with argument '42'.
Reading option '-i' ... matched as input url with argument 'C:\BlueIris\New\Duo.20250228_150000.bvr'.
Reading option '-c:v' ... matched as option 'c' (select encoder/decoder ('copy' to copy stream without reencoding)) with argument 'libx265'.
Reading option '-crf' ... matched as AVOption 'crf' with argument '30'.
Reading option 'C:\BlueIris\Stored\test.mp4' ... matched as output url.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument debug.
Successfully parsed a group of options.
Parsing a group of options: input url C:\BlueIris\New\Duo.20250228_150000.bvr.
Successfully parsed a group of options.
Opening an input file: C:\BlueIris\New\Duo.20250228_150000.bvr.
[AVFormatContext @ 0000019d293e96c0] Opening 'C:\BlueIris\New\Duo.20250228_150000.bvr' for reading
[file @ 0000019d293e9c80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000019d293e6f40] Statistics: 1048576 bytes read, 0 seeks
[in#0 @ 0000019d293e92c0] Error opening input: Invalid data found when processing input
Error opening input file C:\BlueIris\New\Duo.20250228_150000.bvr.
Error opening input files: Invalid data found when processing input
Post Reply