Forum Replies Created
-
AuthorPosts
-
MilkyKeymaster
I don’t believe that BAE can go any higher than 48k (so-called “DVD quality”), but I am seeking clarification of this.
MilkyKeymasterThanks for your interesting thoughts, Peter. I cannot endorse, nor deny any of your comments, but I can say that Leif is still well and truly aware of any suggestions that come via this forum, as well as industry input.
Another project he was working on is close to completion, so let’s be positive that there will be some more activity and development in the New Year.MilkyKeymasterI can almost guarantee that your stocking will go unfilled.
I happen to know that Leif is entertaining family over the Xmas period, so I doubt that he will even go near his office.Once the family have departed in the New Year, there is some hope that his life will get back to “normal”.
MilkyKeymasterProvided that BAE can “see” the device as an input or output, it should work.
In my private listening, I have this audio chain:-
Laptop based playout software > BAE Pipeline > Schiit Eitr USB sound device > Spdif to sound system Digital in.
In this case, The pipeline is the input to BAE and the output device is the Eitr.
October 29, 2021 at 1:36 pm in reply to: BAE v1.42 – Thanks and a mic input question -Realtek ALC 882 Win10 #16670MilkyKeymasterWelcome to the forum and thank you.
Is it possible that you have the “what you hear” option selected on the Soundblaster? That will map the mic through to the output, and therefore into the BAE pipeline. Bottom line is that anything appearing in the output will be processed through BAE, so, either the SB, or Windows Mixer is blending the mic into the mix.
MilkyKeymasterI have recently migrated my son’s laptop to Windows 11, and can report that BAE happily made the transition without a problem.
MilkyKeymasterThank you, MrKlorox! I had a feeling when I said before that I had no knowledge of command-line options, that I HAD read something somewhere about it. Well spotted.
MilkyKeymasterI edited my original post to include the “code” option, and it definitely looks better.
I’m not aware of any command line options to launch BARemote and open to a particular page.
Maybe AHK could be your friend again. Unless you have several copies of BA1, there would only be one default connection showing, so, using Window Spy, you could plot a mouse click position over the “Connect” button and it should automatically connect.
MilkyKeymasterGlad you got it sorted! I copied and pasted the code from my test program, so I was sure it should work, but the forum software tampered with my code.
If you are familiar with AHK, you could define some buttons to execute the code, and even interrogate the current status and display a message.
MilkyKeymasterThe computer name should not include the brackets. What happens if you type http://IP address or computer name:8282 into a browser? It should open the webserver page, where you can scroll through all the command options.
BA1 has an inbuilt webserver at port 8282.
MilkyKeymasterYou just need two little batch programs.
Bypass_OFF.bat would have the following line in it.
REM Set Bypass Processing option to OFF curl --silent --output nul http://{YOUR_PC_NAME_HERE}:8282/parameter/hd1/proc/bypass_proxy=0
Bypass_ON.bat would have this.
REM Set Bypass Processing option to ON curl --silent --output nul http://{YOUR_PC_NAME_HERE}:8282/parameter/hd1/proc/bypass_proxy=1
If you are using AHK you could execute the CURL line using RunWait, like this.
RunWait, curl --silent --output nul http://OTSBOX:8282/parameter/hd1/proc/bypass_proxy=0,, hide
to get the current status is a little trickier, but you could use a command to write the status to a file.
; Get current status of Bypass FileDelete, C:\OtsLabs\BypassStatus.txt URLDownloadToFile, http://OtsBox:8282/parameter/hd1/proc/bypass_proxy?get, C:\OtsLabs\BypassStatus.txt FileReadLine, BypassStatus, C:\OtsLabs\BypassStatus.txt, 1
You could then test the value of the field BypassStatus. 1 = Bypass ON, 0 = Bypass OFF.
MilkyKeymasterWell, I (for one) care, and I am sure that there are other coders who can learn from your example.
Thank you for contributing.MilkyKeymasterI hear all the doubters out there, and I have passed on this dissent to the Company. What you may not know is that Leif’s long-time business partner, Keith Edwards, passed away suddenly about a year or so ago. He was in charge of maintaining the website, issuing licences and upgrades, all of the financial management and even support for this forum. His loss was a major setback at a very difficult time in Leif’s career.
Keith’s son, John, has now taken over, but it has been a very steep learning curve for him, and things have had to be prioritised. I have drawn his attention to the fact that the BAE version available from the store is not the one that Leif updated because of the Windows update, and I will remind him again now.
As for Leif, I am in contact with him, but he is kept very busy with a personal AND a professional project, both of which are nearing completion. He will surface at some stage, but I wouldn’t expect much before Xmas.
MilkyKeymasterExcellent! I use AHK quite a bit, including to set/unset various things in BA1, but actually Run or RunWait to the curl line similar to the previous examples. That gives me a return code, plus I can specify “Hide” in the options, so you don’t see a box flash up at all. The response isn’t instantaneous, but pretty close to it.
For instance, this line will send a toggle command to turn bypass processing on or off
RunWait, curl --silent --output nul http://otsbox:8282/parameter/hd1/proc/bypass_proxy+=1,,hide
MilkyKeymasterAs I read that code, you are GETTING the current value of the volume, but you are not PUTTING a new value to change it.
-
AuthorPosts