<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Can automation script editor call and shuffle a YouTube music playlist in Home Automation</title>
    <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/628061#M47067</link>
    <description>&lt;P&gt;&lt;SPAN&gt;People who love watching videos online know about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://loklokapps.net/loklok-for-ios/" target="_self"&gt;&lt;STRONG&gt;Loklok ios app&lt;/STRONG&gt;&lt;/A&gt;&lt;SPAN&gt;. It’s famous for having many different videos from all over the world. You can find movies, TV shows, documentaries, and anime on Loklok. It’s one of the best apps for watching videos because it has many options from different movie industries.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jun 2024 22:56:08 GMT</pubDate>
    <dc:creator>Jorden1122</dc:creator>
    <dc:date>2024-06-25T22:56:08Z</dc:date>
    <item>
      <title>Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/448174#M19711</link>
      <description>&lt;P&gt;Is there any way in the new automation script editor to call a YouTube music playlist, shuffle it and then play it on the speaker that the automation was started from? I would like to create a bedtime routine that is triggered when I turn off my bedroom light switch. It would dim lights and play a playlist but Unfortunately with the basic google home routine I can't use the light switch as a starter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers, Geoff&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jul 2023 11:56:39 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/448174#M19711</guid>
      <dc:creator>Geoff18</dc:creator>
      <dc:date>2023-07-09T11:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452503#M19970</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;I am trying to script an automation for you, but I can't guarantee that it will work perfectly on the first attempt.&amp;nbsp; Would you be more specific with the light dimming action? Over what duration do you want the lights to fade from current brightness level to off? The range options are between 5 minutes and 1 hour. &amp;nbsp;Taking advice from this post at the Google Assistant Help Community, the automation will first play the playlist and then shuffle it.&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.google.com/assistant/thread/163145398/google-assistant-refuses-to-shuffle-named-playlist" target="_blank" rel="noopener"&gt;https://support.google.com/assistant/thread/163145398/google-assistant-refuses-to-shuffle-named-playlist&lt;/A&gt;&lt;/P&gt;&lt;P&gt;This is what I have done so far:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# ------------------------------------------------------------------------------------------ #
# Lines starting with “#” are comments and will be ignored by the automation.
# Indentation determines hierarchy within the script.
# Visit g.co/home/script-editor-docs for full documentation.
# ------------------------------------------------------------------------------------------ #

metadata:
  name: Untitled # Choose a short name that summarizes important starters and actions, like “Sunset lights”.
  description: Scripted automation # Write a detailed description that includes everything the automation does, like “At sunset, on weekdays, close blinds, turn on lights to 50%, and play the sunset playlist on certain speakers.”

automations:
  # “starters” and “actions” are required; “conditions” are optional.
  # Use Ctrl + Space to see autocomplete suggestions.

  # ---- STARTERS ---- #
  # Starters describe events that will start the automation.
  # To add more than one starter, duplicate the "- type" section under "starters".
  # If you add multiple starter events, any one of them happening will start the automation
  starters:
    - type: device.state.OnOff
      state: off
      # [available operators: is, isNot]
      is: true
      device: Light (Bedroom) - Bedroom

  # ---- ACTIONS ---- #
  # Actions will start when a starter event takes place and all conditions are met.
  # Actions will start in the order they appear in the script and with any delay specified.
  # To add more than one action, duplicate the "- type" section under "actions".
  actions:
    - type: assistant.command.OkGoogle
      okGoogle: Play &amp;lt;playlist name&amp;gt; on YouTube Music
      devices: &amp;lt;select speaker name - location&amp;gt;
    - type: device.command.MediaShuffle # Shuffle the current playlist.
      devices: &amp;lt;select speaker name - location&amp;gt;
    - type: device.command.LightEffectSleep
      duration: &amp;lt;set duration&amp;gt;
      devices: &amp;lt;select speaker name - location&amp;gt;  &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jul 2023 20:20:55 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452503#M19970</guid>
      <dc:creator>DWB1973</dc:creator>
      <dc:date>2023-07-16T20:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452807#M19983</link>
      <description>&lt;P&gt;Hey mate, thank you so much for this. I was really stuck on the part of getting a playlist to play and then shuffle it. I didn't realise that you could put basically any ok google command in there so this should solve the music side of things.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was hoping to dim my bedside lamp from say 50% to 0% over 5 minutes. Do I just need to put a command saying turn the light to 50% and then a pause of 30 seconds, then a command to tun it to 45% and then another pause and so on until it is 0%?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 06:52:45 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452807#M19983</guid>
      <dc:creator>Geoff18</dc:creator>
      <dc:date>2023-07-17T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452958#M20000</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Do I just need to put a command saying turn the light to 50% and then a pause of 30 seconds, then a command to tun it to 45% and then another pause and so on until it is 0%?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;No, the&amp;nbsp;LightEffectSleep command is already programmed to decrementally dim the lights over a designated period of time. I have added the command to adjust light brightness before it begins the dimming segment of the automation. Try this one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  # ---- STARTERS ---- #
  # Starters describe events that will start the automation.
  # To add more than one starter, duplicate the "- type" section under "starters".
  # If you add multiple starter events, any one of them happening will start the automation
  starters:
    - type: device.state.OnOff
      state: off
      # [available operators: is, isNot]
      is: true
      device: &amp;lt;select device name - location&amp;gt;

  # ---- ACTIONS ---- #
  # Actions will start when a starter event takes place and all conditions are met.
  # Actions will start in the order they appear in the script and with any delay specified.
  # To add more than one action, duplicate the "- type" section under "actions".
  actions:
    - type: assistant.command.OkGoogle
      okGoogle: Play &amp;lt;playlist name&amp;gt; on YouTube Music
      devices: &amp;lt;select speaker name - location&amp;gt;
    - type: device.command.MediaShuffle # Shuffle the current playlist.
      devices: &amp;lt;select device name - location&amp;gt;
    - type: device.command.BrightnessAbsolute # Adjust device absolute brightness.
      brightness: 50
      devices: &amp;lt;select device name - location&amp;gt;
    - type: device.command.LightEffectSleep
      duration: 5min
      devices: &amp;lt;select device name - location&amp;gt;  &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may want to add a schedule condition, so the automation will only run during certain times of the day (bedtime) instead of every time the bedside lamp is turned off. Also, its probably a good idea to choose a volume level that you want the playlist to be played.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 14:48:30 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/452958#M20000</guid>
      <dc:creator>DWB1973</dc:creator>
      <dc:date>2023-07-17T14:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/454912#M20102</link>
      <description>&lt;P&gt;Omg thank you so much for showing me how this works. As you can probably tell I'm just learning all this stuff and tbh the only programming I've ever done in the past was making a triangle draw shapes on a commodore 64 back in primary school.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll test this out when I get a day to myself.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for all your help, it's been amazing and very educational&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 22:22:00 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/454912#M20102</guid>
      <dc:creator>Geoff18</dc:creator>
      <dc:date>2023-07-19T22:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/455287#M20137</link>
      <description>&lt;P&gt;You're welcome, glad I was able to help.&lt;/P&gt;&lt;P&gt;I found an error and fixed it; the only valid key for&amp;nbsp;device.state.OnOff is 'on'. Here's an updated rough draft for you to finish.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;metadata:
  name: Untitled # Choose a short name that summarizes important starters and actions, like “Sunset lights”.
  description: Scripted automation # Write a detailed description that includes everything the automation does, like “At sunset, on weekdays, close blinds, turn on lights to 50%, and play the sunset playlist on certain speakers.”

automations:
  # “starters” and “actions” are required; “conditions” are optional.
  # Use Ctrl + Space to see autocomplete suggestions.

  # ---- STARTERS ---- #
  # Starters describe events that will start the automation.
  # To add more than one starter, duplicate the "- type" section under "starters".
  # If you add multiple starter events, any one of them happening will start the automation
  starters:
    - type: device.state.OnOff
      state: on
      # [available operators: is, isNot]
      is: false
      device: Device Name - Room Name

  condition:
    type: time.between
    # Optional. Accepts either clock time (10:00:00 AM, with seconds optional, or in a 24 hour format), or 'sunrise' or 'sunset', with an optional offset ('sunrise+10m', for instance)
    before: 
    # Optional. Accepts either clock time (10:00:00 AM, with seconds optional, or in a 24 hour format), or 'sunrise' or 'sunset', with an optional offset ('sunrise+10m', for instance)
    after: 
    # Optional. Days of the week to apply condition on.
    weekdays:
      - MON
      - TUE
      - WED
      - THU
      - FRI
      - SAT
      - SUN
  # ---- ACTIONS ---- #
  # Actions will start when a starter event takes place and all conditions are met.
  # Actions will start in the order they appear in the script and with any delay specified.
  # To add more than one action, duplicate the "- type" section under "actions".
  actions:
    - type: device.command.SetVolume # Set the volume of a given device.
      volumeLevel: Set volume level (1-100)
      device: Speaker Name - Room Name
    - type: assistant.command.OkGoogle
      okGoogle: Play playlist name on YouTube Music
      device: Speaker Name - Room Name
    - type: device.command.MediaShuffle # Shuffle the current playlist.
      device: Speaker Name - Room Name
    - type: device.command.BrightnessAbsolute # Adjust device absolute brightness.
      brightness: 50
      device: Device Name - Room Name
    - type: device.command.LightEffectSleep
      duration: 5min
      device: Device Name - Room Name&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TimeBetweenState&lt;/STRONG&gt; guidance:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.home.google.com/automations/schema/reference/standard/time_between_state" target="_blank"&gt;https://developers.home.google.com/automations/schema/reference/standard/time_between_state&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 16:34:09 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/455287#M20137</guid>
      <dc:creator>DWB1973</dc:creator>
      <dc:date>2023-07-20T16:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/458934#M20365</link>
      <description>&lt;P&gt;Thank you so much again, I got this working and its awesome. the script even helped me write another rule for syncing my virtual door lock switch in Smartthings and the actual door lock switch in home. I'm starting to get the hang of it all. now google just need to make an easy GUI like sharptools&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 06:59:17 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/458934#M20365</guid>
      <dc:creator>Geoff18</dc:creator>
      <dc:date>2023-07-26T06:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/460643#M20470</link>
      <description>&lt;P&gt;SharpTools, eh?&amp;nbsp; Now I know you're a&amp;nbsp;connoisseur of home automations.&amp;nbsp; I like their GUI layout as well, and possibly someday we can hope that the GH script editor will be similar.&amp;nbsp; By the way, if your question was answered - please mark the accepted answer.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2023 01:34:38 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/460643#M20470</guid>
      <dc:creator>DWB1973</dc:creator>
      <dc:date>2023-07-29T01:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/460742#M20472</link>
      <description>&lt;P&gt;Done. Thanks again for all the help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2023 07:03:53 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/460742#M20472</guid>
      <dc:creator>Geoff18</dc:creator>
      <dc:date>2023-07-29T07:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/534893#M35160</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;While the new automation script editor doesn't have native YouTube playlist integration, you can achieve your bedtime routine by using &lt;A href="https://www.capcutgeeks.com/capcut-for-chromebook/" target="_self"&gt;CapCut video editor for Chromebook&lt;/A&gt;. First, create a video with a dark screen or soothing visuals. Then, set it to play when the bedroom light switch is turned off, along with your desired music playlist on your speaker. This way, you can create a custom bedtime experience that suits your needs.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Oct 2023 12:26:49 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/534893#M35160</guid>
      <dc:creator>shelleyoguera</dc:creator>
      <dc:date>2023-10-28T12:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/602515#M45113</link>
      <description>&lt;P data-unlink="true"&gt;&lt;SPAN&gt;Although the latest script automation tool lacks built-in support for YouTube playlists, you can still craft a personalized bedtime ambiance using the idle office tycoon codes&amp;nbsp; . Start by producing a video featuring calming imagery or a simple dark screen. Next, configure the system to play this video in response to turning off the bedroom lights, simultaneously initiating a relaxing music playlist on your speaker. This method allows you to tailor a unique nighttime setting that aligns with your preferences.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 05:52:24 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/602515#M45113</guid>
      <dc:creator>Jorden1122</dc:creator>
      <dc:date>2024-03-04T05:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/616691#M46406</link>
      <description>&lt;P&gt;An automation script editor typically doesn't have direct control over YouTube playlists, which means it can't shuffle them without using third-party APIs or applications. To achieve playlist shuffling or calling from an automation script, you would need a combination of a YouTube API and an automation tool, which could require significant coding and setup.&lt;/P&gt;&lt;P&gt;Regarding the "&lt;A href="https://ssstok.net/" target="_self"&gt;TikTok downloader&lt;/A&gt;," be aware that downloading content from platforms like TikTok may violate their terms of service and copyright laws, so it's essential to ensure any download is legal and respects the rights of content creators. If you want to download TikTok content, there are specific tools available, but use them cautiously and ethically.&lt;/P&gt;&lt;P&gt;When using automation tools, ensure you're adhering to YouTube's and other platforms' policies and respecting copyright laws. If you need to shuffle a YouTube playlist, consider using YouTube's built-in features or third-party applications designed specifically for that purpose, but ensure these applications comply with YouTube's terms of service and copyright guidelines.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Apr 2024 11:15:27 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/616691#M46406</guid>
      <dc:creator>GPatricia</dc:creator>
      <dc:date>2024-04-29T11:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/616693#M46407</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Yes, automation script editors can interact with YouTube to some extent, but their ability to call and shuffle a YouTube music playlist is typically limited by YouTube's API restrictions and the capabilities of the automation tool. If you use a script editor to control YouTube, you would need to integrate with YouTube's API, which has specific requirements for handling playlists.&lt;/P&gt;&lt;P&gt;A straightforward way to shuffle a YouTube playlist is through the YouTube app or website, where you can enable the "shuffle" option for a playlist. For automation, tools like Selenium or Puppeteer can interact with web pages, but these approaches might not support all YouTube functionalities due to security and user-interaction constraints.&lt;/P&gt;&lt;P&gt;If you want to create an automated script to manage YouTube playlists, you need to use the YouTube Data API, which allows limited interaction with playlists. To use this API, you need to set up a developer account, obtain appropriate permissions, and use the correct API endpoints. Note that the API's capacity to manage playlists and shuffle tracks is more restricted than direct user interaction on YouTube.&lt;/P&gt;&lt;P&gt;Regarding "hair food oil," that's unrelated to the question of automation scripts and YouTube playlists. However, if you wanted information about &lt;A href="https://hairfoodoil.com/" target="_self"&gt;hair food oil&lt;/A&gt;, I'd suggest looking into its benefits for hair health and common types of oils used in hair care.&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Apr 2024 11:18:46 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/616693#M46407</guid>
      <dc:creator>GPatricia</dc:creator>
      <dc:date>2024-04-29T11:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/627718#M47042</link>
      <description>&lt;P&gt;Yes, you can use the new automation script editor to play a shuffled YouTube music playlist on your speaker when you turn off your bedroom light switch. Use the `media_player.play_media` service for this. Unfortunately, Google Home routines can't use light switches as triggers, so you'll need to set this up in Home Assistant or a similar platform.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jun 2024 04:33:00 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/627718#M47042</guid>
      <dc:creator>Harry625</dc:creator>
      <dc:date>2024-06-24T04:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/628061#M47067</link>
      <description>&lt;P&gt;&lt;SPAN&gt;People who love watching videos online know about the&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://loklokapps.net/loklok-for-ios/" target="_self"&gt;&lt;STRONG&gt;Loklok ios app&lt;/STRONG&gt;&lt;/A&gt;&lt;SPAN&gt;. It’s famous for having many different videos from all over the world. You can find movies, TV shows, documentaries, and anime on Loklok. It’s one of the best apps for watching videos because it has many options from different movie industries.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jun 2024 22:56:08 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/628061#M47067</guid>
      <dc:creator>Jorden1122</dc:creator>
      <dc:date>2024-06-25T22:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can automation script editor call and shuffle a YouTube music playlist</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/655346#M49408</link>
      <description>&lt;P&gt;Yes, you're right that the basic Google Home routines don’t yet support using a light switch as a trigger. However, with the new automation script editor in the Google Home app, there’s a potential workaround using advanced scripting.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 09:49:38 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Can-automation-script-editor-call-and-shuffle-a-YouTube-music-playlist/m-p/655346#M49408</guid>
      <dc:creator>benkorton33</dc:creator>
      <dc:date>2024-11-12T09:49:38Z</dc:date>
    </item>
  </channel>
</rss>

