Activity › Forums › Adobe Media Encoder › Auto Shutdown PC after encoding done
-
Auto Shutdown PC after encoding done
Posted by Marco Meswara on September 22, 2012 at 4:34 amGuys,
Is there a bat file or adobe javascript file that we can use to shutdown the PC after encoding is done?
Best Regards,
MarcoMarco Meswara replied 13 years, 7 months ago 2 Members · 2 Replies -
2 Replies
-
John Lijo
September 22, 2012 at 8:12 amHi marco
Search google and you will auto shutdown scripts ,like shutdown in 4 hours 5 hours etc. Encoder tells the time needs to finish rendering.Auto shut down in Xx hours that what i do.
Hi
Take a look at https://blufishmotion.com/
I’m affordable and work easily remotely.
I do Stereoscopic 3d conversion,Rotoscoping, Motion graphics ,2K, 4k Motion Graphics Rendering Services, video & audio editing at reasonable price and less time.
Connect to me on jonlijo@blufishmotion.comThanks
john BlufishMotion
https://blufishmotion.com/Contact me +919818783046
-
Marco Meswara
September 25, 2012 at 7:58 amBro,
I have developed a simple script ( batch file *.bat)) that will check if encoding is still being done ( every 60+ secs ) and if the process is over, it will shutdown the PC. I tried to keep the code very very simple so that others can improve it.
For now , i have tested this on Windows 7 SP1 – 64 bits and it works well.
Here is the code, copy and paste it into notepad – i named it AutoPowerOff-AdobeMediaEnCoder.bat
…..code below ………
@echo off
echo.
date /t
time /t
echo.:StartMonitoring
echo.
echo.
echo.
color 0f
echo Start monitoring Adobe Media Encoding Process
echo Check every 60 secs via KeepMonitoringping 127.0.0.1 -n 60 > nul
Goto Check:KeepMonitoring
echo.
echo.
echo.
color 0fecho Continue Monitoring Adobe Media Encoding Process – every 60s
ping 127.0.0.1 -n 60 > nul
Goto Check:Check
echo.
echo.
echo.
color 0e
echo Checking If Encoding Process Over ?
echo.
echo.
color 0a
tasklist | find /i “PProHeadless.exe”IF ERRORLEVEL 1 GOTO AutoPowerOFF
IF ERRORLEVEL 0 echo. && echo Encoding Still In Progress && GOTO KeepMonitoring:AutoPowerOFF
echo.
echo.
echo.
color 0cecho Process PProHeadless.exe does not exist anymore
echo Assume Encoding DONE
echo PC Poweroff Initiatedecho.
echo.
echo ShutDown PC After 60 secshutdown /s /t 60
:END
…. end of code …..
Regards,
Marco.
p.s – posted this in some other thread…
Its good to consolidate. Will monitor that thread.
Reply to this Discussion! Login or Sign Up