Log in

View Full Version : QTReader


stephen22
29th May 2023, 11:53
Anyone got QTReader to work in Windows 10? I've followed the Importing Media advice but QTReader reports an error and doesn't specify the nature of the error apart from a number 80004005. The .mov file is from a Canon Ixus camera. Any wrinkles?

loadvfapiplugin ("D:\Videos\Avisynth\plugins\QTreader.vfp","qtreader")
QTreader("D:\Pictures\150___05\MVI_0641.MOV")

poisondeathray
29th May 2023, 15:54
For MOV, MP4, ISO base media, you can use LSmashVideoSource, and it doesn't require indexing

https://github.com/HomeOfAviSynthPlusEvolution/L-SMASH-Works/releases


LSmashVideoSource("D:\Pictures\150___05\MVI_0641.MOV")

stephen22
29th May 2023, 17:27
Thanks that does it.

StainlessS
30th May 2023, 02:34
Some ISO file containers [All good for LSmashVideoSource(), maybe I missed some out]


# Requires RT_Stats
Function IsISOFileName(String s) {s=RT_GetFileExtension(s) Return(s==".mov"||s==".mp4"||s==".m4v"||s==".3gp"||s==".3g2"||s==".mj2"||s==".dvb"||s==".dcf"||s==".m21")}


From here:- https://forum.doom9.org/showthread.php?p=1874022#post1874022