Skip to content

Commit

Permalink
Merge pull request #186 from sciencehistory/fix_metadata_test
Browse files Browse the repository at this point in the history
slightly different metadata expected with newer ffmpeg version
  • Loading branch information
jrochkind authored Jan 7, 2025
2 parents 10fdad7 + 086ebe3 commit 358a4a9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions spec/characterization/ffprobe_characterization_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@

let(:normalized_output) do
{
"width" => 224,
"height" => 168,
"frame_rate" => 15.0,
"duration_seconds" => 2.006,
"audio_codec" =>"aac",
"video_codec" => "h264",
"audio_bitrate" => 369135,
"video_bitrate" => 105848,
"bitrate" => 484466,
"audio_sample_rate" => 48000,
"audio_channels" => 6,
"audio_channel_layout" => "5.1"
"width"=>224,
"height"=>168,
"frame_rate"=>15.0,
"duration_seconds"=>2.005,
"audio_codec"=>"aac",
"video_codec"=>"h264",
"audio_bitrate"=>369135,
"video_bitrate"=>105848,
"bitrate"=>484708,
"audio_sample_rate"=>48000,
"audio_channels"=>6,
"audio_channel_layout"=>"5.1"
}
end

Expand Down

0 comments on commit 358a4a9

Please sign in to comment.