Can you point bout, with screenshots, which are the priority texts that require a bigger font? I am not promising anything, because I am sure that increasing the font will break the layout...
You can probably see it from here. The characters in the transponder data are really tiny on a 4K screen. I’d say the graph looks fine.
I’d just add that the software works perfectly well even like this! :)
Hi VMA, and thanks for the brilliant work! I’ve noticed that this type of scan is much more accurate than BLScan2 for a 6903. One question: I have a 4K screen and the text looks very small. Do you think there’s a way to make it bigger? Perhaps in a configuration file?
The trick also works on EBS Pro (logically based on Streamreader) - TBS6903. On transponder 11555 V 30000 at 62 est, by setting LOF SW to 11550, I get a signal improvement of about 0.2-0.3 db.
This is possible using VMA Stream Reader and VMA Transport Stream Analyser using the Macro language. The included sample macros do this already and can be fairly easily adjusted. But this requires compatible TBS tuners.
The VMA Enigma2 Client Pro is not able to do this, mainly because OpenWebIF does not provide, to my knowledge, the required API for such remote control.
Perhaps you can better explain what you want to achieve with what available hardware.
Thank you for your reply. I use a TBS6903 and it already works very well with the software. So now I need to learn how to use the macros! :)
I am intrigued by this statement. What would be the best time for this satellite? And what are the reasons for identifying it? Unlike Nilesat 102, it does not have an inclined orbit. I am asking because I would like to understand and apply the same logic to other satellites.
Excuse me, I would like to understand clearly. I am very interested in the version of the software that allows automatic logging with integrated screenshots. I would like to emphasise that my requirement would be to automatically perform a horizontal and vertical scan of a satellite every few minutes at night and record the results (with related screenshots). Is this possible with the licensed version or even with the free version? I am using the software but have not been able to find this feature. Perhaps I just need some help :) Thanks in advance!
I wanted to improve the system, I share with you the two improved files. - The ahk file for autohotkey with a start menu, which allows you to choose whether to start the script immediately and from a certain time, how often to run it and when it should end. The above applies, you must enter the correct coordinates for the button and you must put the correct path to EBSPro.exe. - The .bat file to generate the report, with the possibility of selecting how many hours back scans it should take and with grouping by frequency (or rather by similar frequencies, with rounding)
🛰️ Guide on Automate EBS Pro Scans + Reports with AutoHotkey and SQLite (with the help of ChatGPT :) )
If you use EBS Pro to scan satellite transponders, here’s how to automate everything: ✅ Start scans on a schedule ✅ Click the "Start" button automatically ✅ Generate daily reports with channel names
@echo off
setlocal
rem Path to database and output file
set "DB_PATH=%~dp0data.db"
set "OUTPUT_FILE=%~dp0report.txt"
rem Get UNIX timestamp for 24 hours ago
for /f "usebackq delims=" %%i in (`powershell -Command "[int]((Get-Date).AddHours(-24) - (Get-Date '1970-01-01')).TotalSeconds"`) do set "TIMESTAMP=%%i"
rem Query the database
sqlite3 "%DB_PATH%" ".mode list" ".separator |" ".output %OUTPUT_FILE%" "SELECT datetime(datetime, 'unixepoch', 'localtime') AS 'Date/Time', id AS 'Sat ID', freq AS 'Frequency', CASE pol WHEN 0 THEN 'H' WHEN 1 THEN 'V' ELSE 'N/A' END AS 'Pol', sr AS 'SR', mod AS 'Mod', fec AS 'FEC', info AS 'Channels' FROM Reports WHERE datetime >= %TIMESTAMP% ORDER BY datetime;" ".exit"
echo Report saved to %OUTPUT_FILE%
pause
Display More
🧪 Sample Output (report.txt)
Code
2025-05-18 02:33:00|0070|11013123|H|29901031|2|3|Rai 1 HD, Rai 2, Rai 3
2025-05-18 03:03:00|0070|11096158|H|27500999|1|2|Canale 5, Rete 4, Italia 1
🔁 Automation Workflow
You can now:
Task
Tool
Auto-scan every 45 min
scan.ahk (AutoHotkey)
Generate report daily
generate_report.bat
Run both silently
Task Scheduler
📦 File Structure Example
Code
C:\ScanAutomation\
├── EBSpro.exe
├── scan.ahk ← AutoHotkey script (scanning)
├── generate_report.bat ← Text report output
├── sqlite3.exe ← SQLite command-line tool
├── data.db ← Log file created by EBS Pro
└── report.txt ← Output report (auto-generated)
(in attachment you'll find zip with pre-made files)
📎 Annex — Beginner’s Guide to Using AutoHotkey (for EBS Pro Automation)
If you’ve never used AutoHotkey before, don’t worry — it’s extremely simple once you get the hang of it. This annex explains:
What AutoHotkey is
How to install it
How to run your script
How to stop it
How to edit it
🧩 What is AutoHotkey?
AutoHotkey is a free automation tool for Windows. It lets you simulate mouse clicks, keystrokes, and automate tasks like opening apps, clicking buttons, and more.
In our case, you’ll use it to:
Automatically open EBS Pro (if not already running)
Simulate a click on the Start Scan button
Repeat this action on a schedule (every 5, 30, or 45 minutes)
Thank you for your help. I solved it in a slightly more cumbersome but working way. 1. I created a script with autohotkey that every 30 to 45 minutes starts a scan 2. EBSpro generates a data.db file with the scan info. Via Chatgpt I created a .bat that analyses the data.db (via sqlite3) and creates a report displaying the results of the scans of the last 12 hours. If anyone is interested I can give further technical details.
Hi everyone, I’m currently using EBS Pro with a TBS5925 card and I’m really into feed hunting. I was wondering if there’s a way to automate blind scans during the night — say, every 30 minutes — and save the results to log files for later analysis.
Ideally, I’d like to:
Run blind scans automatically at set intervals (e.g., every 30 minutes)
Save transponder and channel name results to separate log files
Keep this running unattended during the night
Has anyone already done something like this with EBS Pro? Is there a way to script it or control it via command line or scheduled tasks?
Any tips, scripts, or ideas would be greatly appreciated!
Hello everyone First of all a greeting from Italy, this is the first post I am making in this forum. After many years I started to have fun with feed searching again, with a tbs5925, the latest version of ebspro and a usals motorised system - 100 cm dish. I see that over time other tbs sat cards have come out, some also capable of receiving the S2X standard. Based on your experience, is it worth upgrading? Unfortunately, due to a technical problem, I can only use a minipc, so I can only use USB cards, no PCI-e. Thanks for any feedback you can give me.