Wind

Ten top simple field recording tips from Cities and Memory; includes:

You might think that’s only a gentle breeze, and it can’t possibly do anything to your recording, but IT WILL. Even a light wind sounds like someone’s ripped your mic in half, and will render your recording unusable. Use wind shields, use shelter, avoid wind at all costs.

The recording here is a classic example of it: riding our bicycles by the metal fence surrounding the Charlottetown Event Grounds on Saturday, I noticed the the gusty winds were making beautiful music through the slats. So I pulled out my phone and pressed “record,” trying to shield it from the wind. I failed. So you’ll have to take my word for it.

See also diy (do it yourself) from Quiet American.

Link provenance: William Denton to Radio Apogee to this exhortation to make field recordings of decent quality.

Add new comment

Plain text

  • Allowed HTML tags: <b> <i> <em> <strong> <blockquote> <code> <ul> <ol> <li>
  • Lines and paragraphs break automatically.

Ten top simple field recording tips from Cities and Memory; includes:

You might think that’s only a gentle breeze, and it can’t possibly do anything to your recording, but IT WILL. Even a light wind sounds like someone’s ripped your mic in half, and will render your recording unusable. Use wind shields, use shelter, avoid wind at all costs.

The recording here is a classic example of it: riding our bicycles by the metal fence surrounding the Charlottetown Event Grounds on Saturday, I noticed the the gusty winds were making beautiful music through the slats. So I pulled out my phone and pressed “record,” trying to shield it from the wind. I failed. So you’ll have to take my word for it.

See also diy (do it yourself) from Quiet American.

Link provenance: William Denton to Radio Apogee to this exhortation to make field recordings of decent quality.

About a year ago, when Amazon unleashed the ability for third-party developers to create skills for its Echo speaker devices, the first one I created was a skill that allowed you to ask questions about Prince Edward Island’s electricity load and generation.

But I never took the skill to certification (the review process by which Amazon certifies a skill and makes it available to everyone), and so while I continued to use it myself in “developer mode” on our Echo, nobody else could.

I decided to follow through on the last few bits of the skill development a couple of weeks ago, so that others could benefit. And at the end of last week I received a notification that the skill is now live for all Echo users in the U.S. and Canada.

This means that, if you own an Amazon Echo device, you can now ask it things like this:

  • Alexa, ask PEI Power for a summary
  • Alexa, ask PEI Power about the wind
  • Alexa, ask PEI Power for the load
  • Alexa, ask PEI Power for the peak load in 2014
  • Alexa, ask PEI Power for the peak load in December 2017
  • Alexa, ask PEI Power for the peak load yesterday.

Behind the scenes, this skill looks like this:

{
  "languageModel": {
    "intents": [
      {
        "name": "AMAZON.CancelIntent",
        "samples": []
      },
      {
        "name": "AMAZON.HelpIntent",
        "samples": []
      },
      {
        "name": "AMAZON.StopIntent",
        "samples": []
      },
      {
        "name": "GetLoad",
        "samples": [
          "the load"
        ],
        "slots": []
      },
      {
        "name": "GetPeak",
        "samples": [
          "the peak on {Date}",
          "peak on {Date}",
          "peak {Date}",
          "peak load on {Date}",
          "the peak load on {Date}",
          "highest load on {Date}",
          "maximum load on {Date}",
          "the maximum load on {Date}",
          "high load on {Date}",
          "the high load on {Date}",
          "the highest load on {Date}",
          "the peak load {Date}"
        ],
        "slots": [
          {
            "name": "Date",
            "type": "AMAZON.DATE"
          }
        ]
      },
      {
        "name": "GetSummary",
        "samples": [
          "a summary",
          "the report",
          "a report",
          "an update"
        ],
        "slots": []
      },
      {
        "name": "GetWind",
        "samples": [
          "the wind"
        ],
        "slots": []
      }
    ],
    "invocationName": "p. e. i. power"
  }
}

That’s a JSON representation of the skill on the Amazon end; when an Echo device sends a query, Amazon tries to figure out which “utterance” (like “an update” or “a report” or “the wind”) the user is looking for, sends a request to a PHP script on my server that queries the same load and generation data I scrape from the Province of PEI website for other purposes, and my server then returns a script for the Echo to read back to the user.

It’s fundamentally a pretty simple ecosystem to develop skills for; there are some fiddly bits on the initial setup my skill got kicked back to me several times for seemingly minor inconsistencies like “you called the skill p. e. i. power but your sample utterance used the phrase p.e.i. power,” but I managed to resolve those quickly.

If you have an Echo, please take this skill for a ride and let me know what you think.

Add new comment

Plain text

  • Allowed HTML tags: <b> <i> <em> <strong> <blockquote> <code> <ul> <ol> <li>
  • Lines and paragraphs break automatically.

About a year ago, when Amazon unleashed the ability for third-party developers to create skills for its Echo speaker devices, the first one I created was a skill that allowed you to ask questions about Prince Edward Island’s electricity load and generation.

But I never took the skill to certification (the review process by which Amazon certifies a skill and makes it available to everyone), and so while I continued to use it myself in “developer mode” on our Echo, nobody else could.

I decided to follow through on the last few bits of the skill development a couple of weeks ago, so that others could benefit. And at the end of last week I received a notification that the skill is now live for all Echo users in the U.S. and Canada.

This means that, if you own an Amazon Echo device, you can now ask it things like this:

  • Alexa, ask PEI Power for a summary
  • Alexa, ask PEI Power about the wind
  • Alexa, ask PEI Power for the load
  • Alexa, ask PEI Power for the peak load in 2014
  • Alexa, ask PEI Power for the peak load in December 2017
  • Alexa, ask PEI Power for the peak load yesterday.

Behind the scenes, this skill looks like this:

{
  "languageModel": {
    "intents": [
      {
        "name": "AMAZON.CancelIntent",
        "samples": []
      },
      {
        "name": "AMAZON.HelpIntent",
        "samples": []
      },
      {
        "name": "AMAZON.StopIntent",
        "samples": []
      },
      {
        "name": "GetLoad",
        "samples": [
          "the load"
        ],
        "slots": []
      },
      {
        "name": "GetPeak",
        "samples": [
          "the peak on {Date}",
          "peak on {Date}",
          "peak {Date}",
          "peak load on {Date}",
          "the peak load on {Date}",
          "highest load on {Date}",
          "maximum load on {Date}",
          "the maximum load on {Date}",
          "high load on {Date}",
          "the high load on {Date}",
          "the highest load on {Date}",
          "the peak load {Date}"
        ],
        "slots": [
          {
            "name": "Date",
            "type": "AMAZON.DATE"
          }
        ]
      },
      {
        "name": "GetSummary",
        "samples": [
          "a summary",
          "the report",
          "a report",
          "an update"
        ],
        "slots": []
      },
      {
        "name": "GetWind",
        "samples": [
          "the wind"
        ],
        "slots": []
      }
    ],
    "invocationName": "p. e. i. power"
  }
}

That’s a JSON representation of the skill on the Amazon end; when an Echo device sends a query, Amazon tries to figure out which “utterance” (like “an update” or “a report” or “the wind”) the user is looking for, sends a request to a PHP script on my server that queries the same load and generation data I scrape from the Province of PEI website for other purposes, and my server then returns a script for the Echo to read back to the user.

It’s fundamentally a pretty simple ecosystem to develop skills for; there are some fiddly bits on the initial setup my skill got kicked back to me several times for seemingly minor inconsistencies like “you called the skill p. e. i. power but your sample utterance used the phrase p.e.i. power,” but I managed to resolve those quickly.

If you have an Echo, please take this skill for a ride and let me know what you think.

About This Blog

Photo of Peter RukavinaI am . I am a writer, letterpress printer, and a curious person.

To learn more about me, read my /nowlook at my bio, read presentations and speeches I’ve written, or get in touch (peter@rukavina.net is the quickest way). You can subscribe to an RSS feed of posts, an RSS feed of comments, or receive a daily digests of posts by email.

Search