-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No output is produced with defaults #18
Comments
One thing you can try is to navigate into If I remember correctly, Microsoft SmartScreen will silently block executables when you try to run them through a shell. So clicking on it from explorer should trigger up the SmartScreen pop-up to allow you to click You should also re-clone and run the |
Just re-downloaded it and ran install.bat. Everything appeared to install correctly again. Windows defender is not enabled on the system I'm testing this on, so there was no smart screen warning when double clicking it. However, I did get the dll missing errors, which I don't get when running from the shell. Unfortunately, even after clicking through these errors, running the |
Make a copy of @echo off
TITLE Av1 Encode
cls
setlocal enabledelayedexpansion
:: Set path
set "AV1=%~dp0"
:: Correct path
cd "%AV1%"
:: Set the base path variable
set PATH=%AV1%\..\..\dependencies
:: Append paths
for /D %%G in ("%AV1%\..\..\dependencies\*") do (
set PATH=!PATH!;%%G
)
:: Append vapoursynth.dll path
set PATH=!PATH!;%AV1%\..\..\dependencies\vapoursynth64\Lib\site-packages
av1an -h
PAUSE Save and run it. It should output the help text, which would mean that the dll files were found. If so start reducing the arguments in -e svt-av1 You can also try a different input file. |
The only output I get is "press any key to continue": I see a crash dump (.dmp file) was created in appdata local. Same thing if I double click the batch file instead of run it from Powershell. Could it be that something on my system path is interfering with this? I have ffmpeg on my system path, for example. |
The edited script should have output the help text followed by I think it's not finding the dll files. See if the dll files exist, for each one that popped up. It should be found in these directories: \dependencies\vapoursynth64\Lib\site-packages\
\dependencies\vapoursynth64\
\dependencies\ffmpeg-7.0.2\ System path could be interfering, but I read the encode script again, and I'm pretty sure it omits current path while its running. Since I have no clue about the crash dump file. Didn't find it in appdata local. |
I downloaded the zip archive just today, ran
install.bat
(it looked like everything downloaded correctly), and then put a video file (HEVC) into theav1an-winscript\scripts\av1an-batch\input
directory. I ran theencode.bat
file with the defaults but no file was produced in the output folder. This was the console output:If I copy that command and try to run it directly, I get absolutely no console output at all:
This is the contents of the
last_run
file:This is the contents of the
params.txt
file:Any idea what I'm doing wrong? Here's what the directory structure looks like in case you notice anything off:
The text was updated successfully, but these errors were encountered: