Create media object

Action ID
actions.intent.CREATE_MEDIA_OBJECT
Description

Record video using the video recording function in an app. Determine capture modes (like "slow motion" or "time lapse") or the camera direction using the mediaObject.captureSetting.name and mediaObject.captureSetting.value intent parameters as a key-value pair. For example, a query to record slow motion video returns a key of CaptureMode and a value of CaptureModeSlowMotion.

This built-in intent uses enumerated values for some parameters. Parameters that follow this pattern are listed in Supported text field values below, with the enumerated parameter values they support.

Locale support

Functionality Locales
Preview creation using App Actions test tool en-US
User invocation from Google Assistant en-US

Example queries

Other supported fields

The following fields represent information that users often provide to disambiguate their needs or otherwise improve their results:

mediaObject.@type
mediaObject.captureSetting.@type
mediaObject.captureSetting.name
mediaObject.captureSetting.value

Supported text values by field





Inventory availability by field


Sample XML files

For information about the shortcuts.xml schema, see Create shortcuts.xml.

Handle BII parameters

shortcuts.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- This is a sample shortcuts.xml -->
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
  <capability android:name="actions.intent.CREATE_MEDIA_OBJECT">
    <intent
      android:action="android.intent.action.VIEW"
      android:targetPackage="YOUR_UNIQUE_APPLICATION_ID"
      android:targetClass="YOUR_TARGET_CLASS">
      <!-- Eg. name = "CameraFace" -->
      <parameter
        android:name="mediaObject.captureSetting.name"
        android:key="name"/>
      <!-- Eg. value = "CameraFaceFrontCamera" -->
      <parameter
        android:name="mediaObject.captureSetting.value"
        android:key="value"/>
    </intent>
  </capability>
</shortcuts>
      

actions.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- This is a sample actions.xml -->
<actions>
  <action intentName="actions.intent.CREATE_MEDIA_OBJECT">
    <fulfillment urlTemplate="myapp://custom-deeplink{?name,value}">
      <!-- e.g. name = "CameraFace" -->
      <!-- (Optional) Require a field eg.name for fulfillment with required="true" -->
      <parameter-mapping urlParameter="name" intentParameter="mediaObject.captureSetting.name" required="true" />
      <!-- e.g. value = "CameraFaceFrontCamera" -->
      <parameter-mapping urlParameter="value" intentParameter="mediaObject.captureSetting.value" />
    </fulfillment>

    <!-- Provide a fallback fulfillment with no required parameters. For example, to your app search or router deeplink -->
    <fulfillment urlTemplate="myapp://deeplink" />
  </action>
</actions>

Use inline inventory

shortcuts.xml

mediaObject.captureSetting.value is an intent parameter that supports inline inventory. By defining a <shortcut> for mediaObject.captureSetting.value, you can uniquely identify entities that are of interest to your app or restrict fulfillment to the set of supported entities.

In the following example, when the user query matches the value_one shortcut, Assistant provides the associated shorcut identifier, ID_ONE, as the URL parameter value to fulfillment.

If there is no inventory match, the text value received in the query for mediaObject.captureSetting.value is passed as-is.

<?xml version="1.0" encoding="utf-8"?>
<!-- This is a sample shortcuts.xml -->
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
  <capability android:name="actions.intent.CREATE_MEDIA_OBJECT">
    <intent
      android:targetPackage="YOUR_UNIQUE_APPLICATION_ID"
      android:targetClass="YOUR_TARGET_CLASS">
      <parameter
        android:name="mediaObject.captureSetting.name"
        android:key="name"/>
      <parameter
        android:name="mediaObject.captureSetting.value"
        android:key="value"/>
    </intent>
    </capability>
    <!-- Short and long labels must be @string resource. -->
    <shortcut
      android:shortcutId="ID_ONE"
      android:shortcutShortLabel="@string/shortcut_short_label"
      android:shortcutLongLabel="@string/shortcut_long_label">
      <capability-binding android:key="actions.intent.CREATE_MEDIA_OBJECT">
        <parameter-binding
          android:value="value"
          android:key="mediaObject.captureSetting.value"/>
      </capability-binding>
    </shortcut>
</shortcuts>
      

actions.xml

mediaObject.captureSetting.value is an intent parameter that supports inline inventory. By defining an <entity-set> for mediaObject.captureSetting.value, you can uniquely identify entities that are of interest to your app or restrict fulfillment to the set of supported entities.

In the following example, when the user query matches the value_one entity, Assistant provides the associated identifier, ID_ONE, as the URL parameter value to fulfillment.

If there is no inventory match, the text value received in the query for mediaObject.captureSetting.value is passed as-is.

<?xml version="1.0" encoding="utf-8"?>
<!-- This is a sample actions.xml -->
<actions>
  <action intentName="actions.intent.CREATE_MEDIA_OBJECT">
    <fulfillment urlTemplate="myapp://deeplink{?value}" >
      <!-- value = "ID_ONE" or "ID_TWO"  -->
      <!-- If no inventory match, value is a text value, such as "CameraFaceFrontCamera" -->
      <!-- (Optional) Use entityMatchRequired="true" to require inventory match for fulfillment -->
      <parameter-mapping urlParameter="value" intentParameter="mediaObject.captureSetting.value" />
    </fulfillment>

    <!-- Define parameters with inventories here -->
    <parameter name="mediaObject.captureSetting.value">
      <entity-set-reference entitySetId="valueEntitySet"/>
    </parameter>
  </action>

  <entity-set entitySetId="valueEntitySet">
  <!-- Provide an identifier per entity -->
    <entity identifier="ID_ONE" name="value_one" alternateName="@array/value_one_synonyms"/>
    <entity identifier="ID_TWO" name="value_two" alternateName="@array/value_two_synonyms"/>
  </entity-set>
</actions>

The url attribute associated with the entity can be used to determine the fulfillment URL if there is an inventory match. In the following example, when the user query matches the value_one entity, Assistant provides myapp://deeplink/one as the fulfillment URL.

  <?xml version="1.0" encoding="utf-8"?>
  <!-- This is a sample actions.xml -->
  <actions>
    <action intentName="actions.intent.CREATE_MEDIA_OBJECT">
      <!-- Use url from inventory match for deep link fulfillment -->
      <fulfillment urlTemplate="{@url}" />

      <!-- Provide a fallback fulfillment with no required parameters. For example, to your app search or router deeplink -->
      <fulfillment urlTemplate="myapp://deeplink" />

      <!-- Define parameters with inventories here -->
      <parameter name="mediaObject.captureSetting.value">
        <entity-set-reference entitySetId="valueEntitySet"/>
      </parameter>
    </action>

    <entity-set entitySetId="valueEntitySet">
      <!-- Provide a URL per entity -->
      <entity url="myapp://deeplink/one" name="value_one" alternateName="@array/value_one_synonyms"/>
      <entity url="myapp://deeplink/two" name="value_two" alternateName="@array/value_two_synonyms"/>
    </entity-set>
  </actions>
  

JSON-LD sample

The following JSON-LD sample provides some example values that you can use in the App Actions test tool:

{
  "@context": "http://schema.googleapis.com",
  "@type": "MediaObject",
  "captureSetting": {
    "@type": "PropertyValue",
    "name": "CameraFace",
    "value": "CameraFaceFrontCamera"
  }
}