Home › Forums › Breakaway Audio Enhancer › Garbled Audio After Reboot
- This topic has 3 replies, 3 voices, and was last updated 7 years ago by AmyGrrl.
-
AuthorPosts
-
November 16, 2017 at 10:32 pm #3374AmyGrrlMember
So I installed the trail version of this to give it a try. Using it on a Laptop with on board IDT audio. Running Windows 10. Installed it and it works great no problems. Then I reboot my Laptop and the audio is completed garbled/messed up. To fix it I can just close Breakaway and restart it and it work perfectly fine again until the next reboot. Not sure what I can do to fix this.
As a temporary fix I wrote a batch file that waits a minute after starting up. Then opens Breakaway, Closes Breakaway, Then opens Breakaway again. I can share this batch file if anyone is interested.
November 16, 2017 at 10:54 pm #5730MilkyKeymasterDo you close BA1 before rebooting? I have found that Breakaway doesn't play too nicely if the laptop is put to sleep and then woken up UNLESS BA is shut down beforehand. I realise in some boot-up situations, you might not be able to shut down programs elegantly, but, if you can, this is the best option.
An alternative to your batch file would be to have a scheduled task that starts BA1 on logon, and then another task that starts your playout software at logon, but with a delay.
November 17, 2017 at 1:25 am #5731ddtopParticipant[quote author=AmyGrrl link=topic=5504.msg19362#msg19362 date=1510871545]
So I installed the trail version of this to give it a try. Using it on a Laptop with on board IDT audio. Running Windows 10. Installed it and it works great no problems. Then I reboot my Laptop and the audio is completed garbled/messed up. To fix it I can just close Breakaway and restart it and it work perfectly fine again until the next reboot. Not sure what I can do to fix this.As a temporary fix I wrote a batch file that waits a minute after starting up. Then opens Breakaway, Closes Breakaway, Then opens Breakaway again. I can share this batch file if anyone is interested.
[/quote]Hello,
Try this, (https://www.tenforums.com/tutorials/4189-turn-off-fast-startup-windows-10-a.html) hope help. Use first option – keep in mind that, the startup is slower with this changes.///Best.
November 17, 2017 at 4:02 am #5732AmyGrrlMemberI don't have a UEFI Bios. So not sure that fast booting applies to me. I did disable it any ways to give it a try and it made no difference.
With my batch file I made. I disable the normal startup in the task manager. Then I just put the batch file in the breakaway folder and then made a shortcut to it. Then I dragged the shortcut to Startup in the menu/folder. Then restart and let it to its thing. The batch file will automatically start minimized. Then I have 3 timers I can set. How long to wait before starting Breakaway. How long to wait before closing breakaway. Then how long to wait to restart breakaway. Its kind of awesome how it works. So you can play around with the timers depending how your boot cycle goes. Do you wait until everything is done loading before the starting the sequence. Depending on when you close out breakaway during the boot sequence it can take much longer to close breakaway fully and if you attempt to start breakaway before it full closes it will mess up. So you need to play around with it and find out what setting work best for your computer.
Here's what I made in case someone else finds it useful. The time is in seconds. Have mine set to 80, 15, 15.
code :<br />@ECHO Off<br />TITLE Starting Breakaway<br />REM ------------------------------------<br />REM This Script Will Minimize The Window<br />REM ------------------------------------<br /><br />if not "%minimized%"=="" goto :minimized<br />set minimized=true<br />start /min cmd /C "%~dpnx0"<br />goto :EOF<br />:minimized<br /><br />@ECHO Off<br />ECHO =============================================<br />ECHO Breakaway Audio Enhancer Audio Fix By AmyGrrl<br />ECHO =============================================<br />ECHO.<br /><br />ECHO -----------------------------------------<br />ECHO Waiting To Start Breakaway Audio Enhancer<br />ECHO -----------------------------------------<br />TIMEOUT /T 80 /NOBREAK<br />ECHO.<br />CD %programfiles(x86)%\Breakaway<br />START breakaway.exe<br /><br />TITLE Closing Breakaway<br />ECHO -----------------------------------------<br />ECHO Waiting To Close Breakaway Audio Enhancer<br />ECHO -----------------------------------------<br />TIMEOUT /T 15 /NOBREAK<br />ECHO.<br />CD %programfiles(x86)%\Breakaway<br />TASKKILL /IM breakaway.exe<br />ECHO.<br /><br />TITLE Starting Breakaway<br />ECHO -----------------------------------------<br />ECHO Waiting To Start Breakaway Audio Enhancer<br />ECHO -----------------------------------------<br />TIMEOUT /T 15 /NOBREAK<br />ECHO.<br />CD %programfiles(x86)%\Breakaway<br />START breakaway.exe<br /><br />EXIT<br />
-
AuthorPosts
- You must be logged in to reply to this topic.