• Partners
  • Email Us
  • Product
    • Channels
      • Voice
      • Email
      • SMS
      • Chat
      • Messenger
      • WhatsApp
      • Omnichannel
    • Features
      • Predictive Dialer
      • VCC Live Pay
      • Outbound IVR
      • Inbound IVR
      • Voicemail Detection
      • Live Dashboards
      • ACD
      • Salesforce Integration
      • Dialogflow
  • Solutions
    • Customer Service
    • Sales Teams
    • Debt Collection
    • Virtual Call Center
  • Pricing
  • Resources
    • Blog
    • Case Studies
    • Ebooks
    • Courses
    • Webinars
    • Information Security
    • Learning Center
    • Developers
  • Company
    • About us
    • Careers
    • News
    • Partners
  • Partners
  • Email Us
+44 208 638 0169
GET STARTED
TutorialsMiscellaneousVoice File Tagging
  • Overview
    • Introduction
    • Legal Information
  • The Most Common Use Cases
    • Outbound Email Customization
    • IVR Settings - Use Cases
    • Outbound Calls - PPD
    • Incoming Calls - Setting up an IVR
    • The Main Agent KPIs
    • The Workflow of the Agent
    • Editing Scripts
    • Email Handling
    • Softphone Integration
    • Customize your Dashboard
    • Explore User-based Statistics
    • Create Custom KPIs
  • Getting Started
    • About This Chapter
    • First Steps
    • Creating a Simple Project
    • Creating a Simple Database
    • Setting up Users
    • The Basics of Inbound Projects
    • The Basics of Outbound Projects
    • The Basics of Measurement Tools
    • Introduction to Dispositions
    • The Basics of Call Recording Management
    • Getting Started with VCC Live Chat
    • Get to Know the Agent Workspace
    • Dynamic Email Contents
  • Communication Channels
    • About This chapter
    • Outbound Projects
      • Manual Dialer
      • Power and Predictive Dialing Modes
      • Outbound IVR
      • Robinson List
      • Outbound-Related Statistics
      • Measuring CSAT
    • Emails and Ticketing
      • Disposition-Triggered Emails
      • Dynamic Email Contents
      • Email Attachments - Basic, Dynamic and Conditional
      • Outbound and Inbound Emails
      • Email Statistics
      • Mass Email
    • SMS
      • Inbound SMS
      • Disposition-Triggered SMS
      • Dynamic SMS Contents
      • SMS Notifications
      • SMS Statistics
      • SMS Triggered Actions
      • Scheduled SMS Sending
      • Bulk Text Messaging
    • Inbound Robinson List
    • Quota Tool
  • Managing Users
    • Resource Management
      • Multi Project Management
      • Users, Rights and Teams
    • User Activity
      • Break Codes
      • User State Log
  • Security
    • About This Chapter
    • User Right Groups
    • Password Policies and Two-Factor Authentication
    • OAuth 2.0
    • IP Filtering
    • Database API
    • Functions to Help You Comply with Privacy Regulations
  • VCC Live Archiver
    • About This Chapter
    • Introduction to VCC Live Archiver
    • Setting up VCC Live Archiver
    • Using VCC Live Archiver
    • Commands and Command Options
    • CDR Log Headers
    • Switches (Deprecated)
  • Miscellaneous
    • About This Chapter
    • Salesforce Integration
    • VCC Live Pay IVR
    • Voice File Tagging
    • Replacing Transfer Process
Back to Support and Learning Center
English Hungarian

Voice File Tagging

Estimated reading time: 8 minutes | Target users: Supervisors

Voice file tagging is a powerful function that allows agents to mark specific parts of a conversation during a phone call. You can then download the marked parts of the call recording separately using the archiver.label software.

Read more about the archiver software in the VCC Live Archiver tutorial.

In this lesson, you will learn:

  • How to implement voice file tags into a datasheet or script

Recommended knowledge:

  • Basic knowledge of agent script management
  • Basic knowledge of archiver.label

1. Adding Voice File Tag Buttons to a Datasheet or Script

You need to add two button controls (one for adding a start tag, and one for adding an end tag) to an existing datasheet or script. These buttons will be used by agents to mark the beginning and end of voice file extracts.

Let’s start by opening a datasheet or script for editing.

  1. Log in to productname.label as an admin user.
  2. Select a project from the project list, then select script_editor.menu.label > tabs.menu.label or script.tab.label.
  3. Press Expand icon to expand the list, then select a datasheet or script for editing.

    We’ll add a button control and edit its code, so that an agent can use it to add a start tag during the conversation. The start tag indicates the beginning of a voice file extract.

  4. Drag and drop a controllerType.c-button.label control from the toolbar to the required location.
    Adding button control illustration
  5. Select the button control you just added to view the control’s properties located on the right.
  6. Enter “Add start tag” in the buttonLabel.label text field. This will be the button’s label.
  7. Enter “start_tag_button” in the name.label.value text field. This will be the button’s identifier.
  8. Press the launchCode.button.label button. A text editor software will open. This is where you add the function code to the button. Insert the following code:
    $('page_name','start_tag_button').afterSetData = function() {
     vcc.addVoicefileTag('start_tag',-1, true);
    };
    
  9. Save changes, then close the text editor software.

    Let’s add another button control, but this time to add an end tag. The end tag indicates the end of a voice file extract.

  10. Drag and drop a Button control from the toolbar to the required location.
  11. Select the button control you just added to see the control’s properties located on the right.
  12. Enter “Add end tag” in the Label text field. This will be the button’s label.
  13. Enter “end_tag_button” in the Indetifier for code editor text field. This will be the button’s identifier.
  14. Press the Edit code button. A text editor software will open. This is where you add the function code to the button. Insert the following code:
    $('page_name','end_tag_button').afterSetData = function() {
    vcc.addVoicefileTag('end_tag',0, true);
    };
    
  15. Save changes, then close the text editor software.
  16. Press upload.button.label to save and activate your datasheet or script.

2. Modifying Voice File Name Settings for Tagged Voice Files

You need to add a {part} parameter to your voice file name setting. Otherwise, the archiver won’t download the tagged voice file extracts.

  1. Log in to productname.label as an admin user.
  2. From the productname.label menu, select call_center.menu.label > settings.menu.label, then select the project.tab.label tab.
  3. Insert {part}/ at the beginning of the default_filename.label.value text field.
    Voice file Name Part illustration
  4. Press field_change.button.label.

Tip: Read about voice file name settings in the Downloading and Listening to Call Recordings section.


3. Downloading Voice File Extracts Using VCC Live Archiver

You need to use the “–parts” switch when executing the archiver to download tagged voice files.

Note: If you don’t use this switch, voice file extracts won’t be downloaded. Only complete voice files will be downloaded to the “Complete” folder.

  1. Use archiver.label to download voice file extracts. See Using VCC Live Archiver.
  2. To let the application know that you want to download only the tagged voice file extracts, you need to use the –parts switch. Read more about switches in the Using Switches section.

For example, to download voice file extracts, from between the “start_tag” and “end_tag” tags to the “VoiceFileExtracts” folder:

vccla-windows-386.exe --download --parts VoiceFileExtracts:start_tag-end_tag

Congratulations!

You’ve just learned how to use voice file tagging in productname.label.

Back to Support and Learning Center

Comments

Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.


There are no comments yet.

Click here to cancel reply.

Please note that by clicking on the Submit button, you agree to a member of VCC Live team contacting you with business offers. You can find detailed information on how we can establish contact with you in our Privacy Policy

  • Channels
    • Voice
    • Email
    • SMS
    • Chat
    • Messenger
    • Omnichannel
  • Main Features
    • Call Center Software
    • Predictive Dialer
    • VCC Live Pay
    • Outbound IVR
    • Inbound IVR
    • Voicemail Detection
    • Live Dashboards
    • ACD
    • Salesforce Integration
    • Dialogflow
  • Solutions
    • Customer Service
    • Sales Teams
    • Debt Collection
    • Virtual Call Center
  • Resources
    • Blog
    • Case Studies
    • Ebooks
    • Courses
    • Webinars
    • Information Security
    • Learning Center
    • Developers
    • Download
  • Company
    • About us
    • Careers
    • News
    • Partners
https://vcc.live/wp-content/uploads/2019/07/iso-cert-1.png https://vcc.live/wp-content/uploads/2019/07/iso-cert-2.png https://vcc.live/wp-content/uploads/2019/07/iso-cert-3.png
Social Media
https://vcc.live/wp-content/uploads/2019/07/linkedin.svg https://vcc.live/wp-content/uploads/2019/07/twitter.svg https://vcc.live/wp-content/uploads/2019/07/facebook-1.svg https://vcc.live/wp-content/uploads/2019/07/instagram-1.svg
Call us
Hungary
+36 19996400
UK
+44 2086380169
Germany
+49 3021782516
Poland
+48 123950886
Romania
+40 31706167
USA
+1 3024988337
Hungary
+36 19996400
UK
+44 2086380169
Germany
+49 3021782516
Poland
+48 123950886
Romania
+40 31706167
USA
+1 3024988337
  • Privacy Policy
  • Cookie Policy
  • Legal Statement
  • General Terms of Agreement
  • Magyar nyelvű jogi dokumentumok