If you've been referred to this page it's because EIT scraping of your season/episode information is not working for your country/satellite and you want to improve it.
You do not need to be a programmer to help. Simply documenting what you see and expect will help.
So, we need specific examples of what you see as your title/subtitle/description. They need to be copied+pasted since spaces and commas are significant. Screen-grabs are useful, but we can't reproduce the characters from them easily.
If your tvheadend dialog says "S13, E11. Lorem Ipsum (R)" then we need that exactly, with the comma, full stop, and spaces. So you would write:
"summary" : "S13, E11. Lorem Ipsum (R)"
Then we need to know what it means! In many cases we can guess, but some descriptions are very complicated for us. So, in the above example season is 13 and episode is 11 so you write (with the quotation marks being important):
"season" : "13", "episode" : "11"
Put it all together and add a comma after the summary text and braces around the whole lot and you have:
{
"summary" : "S13, E11. Lorem Ipsum (R)",
"season" : "13", "episode" : "11"
}
Congratulations! You've just documented the scraping for you region.
Please choose examples where season and episode are different. So, S1E1 is bad since season and episode are the same number.
Write a lot of extra examples. Create some examples that might be mis-interpreted such as where episode and season numbers are in a different order.
If a test is showing something difficult then include a comment:
{
"comment" : "Episode is at the end instead of next to season.",
"summary" : "S13. Lorem Ipsum Ep 11. (R)",
"season" : "13", "episode" : "11"
}
Then, include a couple of piece of extra information so we know what this is for.
"language" : "en",
"location" : "uk",
"description" : "DVB-T/DVB-S configuration for UK using Freeview and Freesat",
"eitgrabber" : ["uk_freeview", "uk_freesat", "eit"]
Finally, any information you post may be added to the codebase to ensure there are no problems in the future. If you don't want this then please do not post.
Don't worry too much if you put a space around the colons or not, or maybe miss a comma, or not sure exactly what information to write. As long as the information is mostly readable we can take a look, but we don't promise anything!
If you are a developer then you can run the tests yourself through the test harness in support/eitscrape_test.py. This can be run on any machine that has python and does not need to have access to the tvheadend server.