<p dir="ltr"><br>
On May 22, 2016 2:01 PM, "William Jacoby" <<a href="mailto:bonelifer@gmail.com">bonelifer@gmail.com</a>> wrote:<br>
><br>
> On 5/22/2016 12:46 PM, Ian Evans wrote:<br>
>><br>
>> Thought I'd fork this from the recent json grabber threads so as not to confuse things with an edge case.<br>
>><br>
>> I currently have an OTA source for North America and a few HLS sources for 2 North American HLS channels and one UK HLS channel. Currently handled with one SD run and one Atlas run.<br>
>><br>
>> If I switch the whole shebang over to Schedules Direct, do I just configure one source to run the grabber and leave the other sources without a grabber as the listings data for both US/Canada and UK will be downloaded together in one daily run?<br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> mythtv-users mailing list<br>
>> <a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>
>> <a href="http://lists.mythtv.org/mailman/listinfo/mythtv-users">http://lists.mythtv.org/mailman/listinfo/mythtv-users</a><br>
>> <a href="http://wiki.mythtv.org/Mailing_List_etiquette">http://wiki.mythtv.org/Mailing_List_etiquette</a><br>
>> MythTV Forums: <a href="https://forum.mythtv.org">https://forum.mythtv.org</a><br>
><br>
> No you'd have seperate sources for them in Myth:<br>
><br>
><br>
> Configure<br>
> tv_grab_sd_json --configure --config-file /media/FILE/FOLDER/us.conf<br>
> tv_grab_sd_json --configure --config-file /media/FILE/FOLDER/uk.conf<br>
> tv_grab_sd_json --configure --config-file /media/FILE/FOLDER/canada.conf<br>
><br>
> Actual update<br>
><br>
> #! /bin/bash<br>
> tv_grab_sd_json --days 1 --config-file /media/FILE/FOLDER/us.conf --output us.xml<br>
> tv_grab_sd_json --days 1 --config-file /media/FILE/FOLDER/uk.conf --output uk.xml<br>
> tv_grab_sd_json --days 1 --config-file /media/FILE/FOLDER/canada.conf --output canada.xml<br>
> mythfilldatabase --file --sourceid 7 --xmlfile /var/tmp/us.xml<br>
> mythfilldatabase --file --sourceid 5 --xmlfile /var/tmp/uk.xml<br>
> mythfilldatabase --file --sourceid 4 --xmlfile /var/tmp/canada.xml</p>
<p dir="ltr">Is the bash file something that has to be run by cron? Or is there a way to tie it into SD's automatic suggested run times? <br>
</p>