Just doing some render tests with bitrate but it's kinda annoying to zoom and move things around in Photoshop and click tabs. Any tool to do this?
+ Reply to Thread
Results 1 to 6 of 6
-
-
I use AviSynth, VirtualDub, and Microsoft's Magnifier tool. Typical script:
Code:v0 = WhateverSource("source.ext").Subtitle("source") v1 = WhateverSource("encoded1.ext").Subtitle("encoded1") v2 = WhateverSource("encoded2.ext").Subtitle("encoded2") Interleave(v0,v1,v2,v0)
-
-
My favourite for comparing two videos is VapourSynth Multiviewer. It keeps the frame as well as zoom level (it uses nearest neigbour resizing which makes it perfect for detail comparison) and position when switching between clips. For single screenshots, you could use https://slowpics.org/
-
-
First, you obviosuly need a working VapourSynth installation. Then, in your script, load the two videos and output one of them, run the script, then change the output node to the other video, and run again (every time you run a script, its output will be previewed in a new viewer, so you can compare more than 2 as well).
Code:import vapoursynth as vs from vapoursynth import core src1 = core.ffms2.Source(r"<path to file 1") #this loads a video; for images, use this instead: src1 = core.imwri.Read(r"<path to file>") src2 = core.ffms2.Source(r"<path to file 2") src1.set_output() # after executing the script the first time, change this to src2.set_output()
Similar Threads
-
looking for a tool to compare the quality of two videos
By Johannesbeere in forum Newbie / General discussionsReplies: 1Last Post: 30th Jan 2019, 05:03 -
MSU Codec Comparison 2017 Part 5 - AV1 - Comparison results
By KarMa in forum Latest Video NewsReplies: 9Last Post: 3rd Mar 2018, 09:28 -
H265 - Any tool to make a "smart rendered" cut?
By Seeker320 in forum EditingReplies: 2Last Post: 4th Oct 2015, 20:48 -
Screenshot Capturing Tool
By TrueShasha in forum Newbie / General discussionsReplies: 3Last Post: 8th Sep 2014, 19:41 -
How to capture MiniDV cassettes if your camera snaps old cassettes and brok
By avz10 in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 6Last Post: 7th Jul 2014, 04:10