Understand Audio Field | Zoho Creator Help

Understand audio field

Understand audio field

  • When accessed via your iOS devices' browsers, you can upload audio files but you cannot  record  them via the audio field. This is because media objects are not supported by iOS.
  • When accessed via Safari browser, you can upload audio files but you cannot  record  them via the audio field. This is because media objects are not completely supported in Safari.

The audio field enables your users to submit an audio input through your form, either by recording or by uploading an audio file that's stored in their device (computer, phone, or tablet). The following is how an audio field looks on a form:

  • When a user accesses from a web browser:

  • When a user accesses from a phone or tablet:

Size limits

  • When a user accesses from a web browser, the audio field accepts a file of up to 30 minutes and doesn’t exceed 50 MB
  • When a user accesses from an iPhone or iPad device, the audio field accepts a recorded audio of the duration set in your web browser and doesn’t exceed 50 MB. Once the timer is up, the audio recording stops automatically.
  • When a user accesses from an Android device, the audio field accepts a recorded audio of the duration set in your web browser and doesn’t exceed 50 MB. Once the timer is up, the audio recording stops automatically.
Note: If you want to upload an audio file, you can use the  file upload  field.

The audio that your users submit through your form are stored in your account and are counted towards your account’s total storage limit. Visit your account's  usage details  page to view its current storage details.

Uploaded audio's name

When your users upload an audio file to this field, the file's name is set in the following format:

<unique_number>_<uploaded_file_name>
  • The file's name is prepended by an underscore (_) and a system-generated number that uniquely identifies that file in your account
  • The file's name will automatically be trimmed when it exceeds 150 characters
  • Whitespaces and other special characters, excepting hyphens (-), will be replaced by an underscore (_).

On accessing from on a web browser

The following is an example of how an audio field looks when a user accesses from a web browser. Two icons appear in the audio field, as shown below. Your users can:

Upload an audio file

To upload an audio file, your user can click the  Upload  icon in the audio field. This will launch the file browser where your user can select the required file. Alternatively, your user can drag and drop an audio file in the field.

With regard to uploading an audio file when accessing from a web browser, there are some format limitations:

Web browser Supported formats
Internet Explorer mp3
Chrome mp3, wav, aac, m4a
Firefox mp3, wav, aac, m4a

If your user uploads an audio that's longer than the allowed duration that's set for that audio field, Zoho Creator will alert as follows. The following image shows an audio field that's set to accept an audio of up to 5 minutes.

If you user uploads a file that's not an audio, Zoho Creator will alert:

Record an audio

  1. Select  Audio . This will display the recording screen within the pop-up window.
  2. Click the  Microphone  icon, displayed at the bottom of the pop-up window. This will start the recording.
    • If it is the first time your user is accessing the audio field, they will be prompted to grant permission to use the computer's microphone.
    • They can either  Allow  or  Block .
    • If they select  Block , they will be prompted with the message  Allow access to media . They won't be able to record an audio till they  Allow  access to the microphone.
  3. Click  Allow . This will start the recording immediately, and replace the  Microphone  icon with the  Stop  icon.
  4. Click the  Stop  icon to stop recording. Alternatively, the recording will automatically stop when it reaches the allowed duration (set for that audio field).
  5. Click the  Play  icon to play the recorded audio.
  6. Click  Retake  to record again. This will clear the prior recording and display the  Microphone  icon, thereby letting the user start recording an audio again.
  7. Click the  Check mark  button (displayed at the bottom of the pop-up window), once done recording. This will close the pop-up window and display the recorded audio in the audio field.

On accessing from a phone or tablet

When your users access the audio field on a phone or tablet, they can only record an audio. Uploading an audio file is not supported. The following given is what happens when your users tap on the audio field:

  1. If it the first time your user is accessing the audio field, they will be prompted to grant permission to use the device's microphone.
    • Tap  Ok  to grant permission.
    • If your user taps  Don't Allow , they won't be able to proceed with recording an audio. Until they grant this access (in the app's permissions in the device's settings) they won't be able to record an audio for the audio field.
  2. Tap  Ok . This will display a prompt at the screen's bottom.
  3. Tap  Start Recording . This will display a 3-second timer and start counting it down. This is to let the user get ready for the audio recording.
  4. (Once the timer finishes, the audio recording begins)
    • Time Elapsed  is displayed in the center of the device's screen.
    • The recording limit (allowed duration set for that audio field) is displayed below the  Time Elapsed .
  5. Tap the  Pause  icon to pause the recording. Tap the  Microphone  icon to resume recording the audio.
  6. Tap  Cancel , displayed on the top-left of the device's screen, to cancel the audio recording.
    • Tap  Discard Recording  to confirm this cancellation.
    • Tap  Cancel  to retain the recorded audio.
  7. Tap  Done , displayed on the top-right on the screen, once done recording. Alternatively, the recording will automatically stop when it reaches the allowed duration (set for that audio field). This will close the audio recording screen and the recorded audio will appear in that audio field.
  8. Tap on the audio field, then
    • Tap  Play Recording  to hear the recorded audio.
    • Tap  Record Again  to record the audio again. This will discard the prior audio recording.
    • Tap  Remove Recording  to remove the recorded audio.
    • Tap  Cancel  to retain the recorded audio as input in that audio field.

Features

You can perform the following customizations for the user experience of the audio field on a form:

URL to download an audio

An audio stored in the audio field can be downloaded using the following URL:

https://<domain>/<account_owner_name>/<appLinkName>/<reportLinkName>/<fieldLinkName>/download/filename

where,

  • domain  will be DC specific—for example, you'll need to use  creatorexport.zoho.com  if your account is in Zoho's US data center, and  creatorexport.zoho.eu  if in the EU data center.
  • account_owner_name  contains the user name of the Creator application's account owner and the link name of the application.
  • reportLinkName  is the link name of the report where the uploaded audio has been shown. (To know the report link name, click on  Report Settings ->Summary  from the edit mode of the report to get the reportLinkName).
  • fieldLinkName  is the  link name  of the corresponding audio field. Click  here  to learn more about the script name for a field.
  • fileName  is the corresponding file's name.  Learn more

For example, imagine that you've built an  Order management  application. In this application, you have created a form named  Feedback , where you collect feedback from your users via multi line and audio fields. You have given the choice of selection to your users to submit the feedback as text or record it as an audio. When you access the  Feedback  report, you may want to download the audio feedback files. To do this, you can configure a custom action such that when you click the button  Download audio , the audio file is downloaded. This custom action has the above URL format constructed as follows:

BaseURL = " https://creatorexport.zoho.com" + zoho.appuri + "<reportLinkName>/<fieldLinkName>/download" + input.<fieldLinkName>; 
openURL( BaseURL, “window type”);

where,

  • BaseURL  is a variable that refers to the URL you have constructed
  • zoho.appuri  returns the application details in the format:
     /<account_owner_name>/<application_link_name>/
  • input.<fieldLinkName>  returns the  filename  of each file stored in the corresponding audio field
  • The  invokeUrl  Deluge task is used to redirect the user to the specified URL. This URL can be opened in the same window, new window, parent window, popup window, or iframe.

Now, when you access the  Feedback  report, you can see the  Download audio  button:

In the above image, Megan is the <account_owner_name> and order-management is the <application_link_name>

Tip: This URL format can be used to download files from the field upload, image, audio, video, and signature fields.


    Zoho CRM Training Programs

    Learn how to use the best tools for sales force automation and better customer engagement from Zoho's implementation specialists.

    Zoho CRM Training
      Redefine the way you work
      with Zoho Workplace

        Zoho DataPrep Personalized Demo

        If you'd like a personalized walk-through of our data preparation tool, please request a demo and we'll be happy to show you how to get the best out of Zoho DataPrep.

        Zoho CRM Training

          Create, share, and deliver

          beautiful slides from anywhere.

          Get Started Now


            Zoho Sign now offers specialized one-on-one training for both administrators and developers.

            BOOK A SESSION








                                You are currently viewing the help pages of Qntrl’s earlier version. Click here to view our latest version—Qntrl 3.0's help articles.




                                    Manage your brands on social media

                                      Zoho Desk Resources

                                      • Desk Community Learning Series


                                      • Digest


                                      • Functions


                                      • Meetups


                                      • Kbase


                                      • Resources


                                      • Glossary


                                      • Desk Marketplace


                                      • MVP Corner


                                      • Word of the Day


                                        Zoho Marketing Automation

                                          Zoho Sheet Resources

                                           

                                              Zoho Forms Resources


                                                Secure your business
                                                communication with Zoho Mail


                                                Mail on the move with
                                                Zoho Mail mobile application

                                                  Stay on top of your schedule
                                                  at all times


                                                  Carry your calendar with you
                                                  Anytime, anywhere




                                                        Zoho Sign Resources

                                                          Sign, Paperless!

                                                          Sign and send business documents on the go!

                                                          Get Started Now




                                                                  Zoho TeamInbox Resources



                                                                          Zoho DataPrep Resources



                                                                            Zoho DataPrep Demo

                                                                            Get a personalized demo or POC

                                                                            REGISTER NOW


                                                                              Design. Discuss. Deliver.

                                                                              Create visually engaging stories with Zoho Show.

                                                                              Get Started Now







                                                                                            You are currently viewing the help articles of Sprints 1.0. If you are a user of 2.0, please refer here.

                                                                                            You are currently viewing the help articles of Sprints 2.0. If you are a user of 1.0, please refer here.



                                                                                                  • Related Articles

                                                                                                  • Understand Lookup Field

                                                                                                    Understand Lookup Field The lookup field enables you to create a relationship between forms. Using this relationship you will be able to lookup data from another form in the same application or from a form in a different application in your Zoho ...
                                                                                                  • Understand file upload field

                                                                                                    The File Upload field enables your users to upload a file while submitting their data through your form. Your users can select the file either from their device (in the device's local storage) or from any of cloud storage services we support. The ...
                                                                                                  • Set duration for audio field

                                                                                                    Set duration for audio field Refer to this page to learn about the Audio field. Open the form builder. Select the audio field. Navigate to the Field Properties > Duration section on the right. Set a duration of up to 30 minutes: If you set a duration ...
                                                                                                  • Understand image field

                                                                                                    When accessed via your iOS devices' browsers, you can upload images and attach image URLs but you cannot capture them via the image field. This is because media objects are not supported by iOS. When accessed via Safari browser, you can upload images ...
                                                                                                  • Understand video field

                                                                                                    When accessed via your iOS devices' browsers, you can upload video files but you cannot record them via the video field. This is because media objects are not supported by iOS. When accessed via Safari browser, you can upload video files but you ...
                                                                                                    Wherever you are is as good as
                                                                                                    your workplace

                                                                                                      Resources

                                                                                                      Videos

                                                                                                      Watch comprehensive videos on features and other important topics that will help you master Zoho CRM.



                                                                                                      eBooks

                                                                                                      Download free eBooks and access a range of topics to get deeper insight on successfully using Zoho CRM.



                                                                                                      Webinars

                                                                                                      Sign up for our webinars and learn the Zoho CRM basics, from customization to sales force automation and more.



                                                                                                      CRM Tips

                                                                                                      Make the most of Zoho CRM with these useful tips.



                                                                                                        Zoho Show Resources