<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">On 5/22/2016 12:46 PM, Ian Evans wrote:<br>
    </div>
    <blockquote
cite="mid:CABiY0=g+xvYgDizN6HnEfnvc8rq6o505YQcWVevQ1J8_fUNN7w@mail.gmail.com"
      type="cite">
      <p dir="ltr">Thought I'd fork this from the recent json grabber
        threads so as not to confuse things with an edge case. </p>
      <p dir="ltr">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. </p>
      <p dir="ltr">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? </p>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
mythtv-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a>
<a class="moz-txt-link-freetext" href="http://lists.mythtv.org/mailman/listinfo/mythtv-users">http://lists.mythtv.org/mailman/listinfo/mythtv-users</a>
<a class="moz-txt-link-freetext" href="http://wiki.mythtv.org/Mailing_List_etiquette">http://wiki.mythtv.org/Mailing_List_etiquette</a>
MythTV Forums: <a class="moz-txt-link-freetext" href="https://forum.mythtv.org">https://forum.mythtv.org</a>
</pre>
    </blockquote>
    <p>No you'd have seperate sources for them in Myth:</p>
    <p><br>
    </p>
    <p>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</p>
    <p>#! /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<br>
    </p>
  </body>
</html>