Senior Design Project

Size: px
Start display at page:

Download "Senior Design Project"

Transcription

1 Senior Design Project Project short-name: YouTalkWeSign ( ) Final Report Abdurrezak Efe, Yasin Erdoğdu, Enes Kavak, Cihangir Mercan Supervisor: Hamdi Dibeklioğlu Jury Members: Varol Akman, Mustafa Özdal

2 Contents 1. Introduction 2. System Overview 3. Final Status 4. Final Architecture and Design 4.1 GUI Tier 4.2 Application Logic Tier 4.3 Storage Tier 5. Tools and Technologies used 6. Impact of Engineering Solutions 6.1 Global Impact 6.2 Social Impact 6.3 Economic Impact 7. Contemporary Issues 8. References 1

3 1. Introduction YouTalkWeSign is a web application which is designed to serve people with hearing impairments or deafness. Through an on-screen avatar, the app translates the spoken words in YouTube videos into sign language. The app can be run by replacing the "youtube" word in the video address with "youtalkwesign". Therefore, our website is For example, when user makes this request to our website: we generate the sign language from the text transcript of the video. Then, we display it on the bottom right corner of the video. Hence, the video and the sign language avatar are played simultaneously. 2. System Overview YouTalkWeSign has a good-looking and attractive user interface. It is user friendly and easy to use. Trending videos link is available at our website s sidebar and the users are able to see what the trend among deaf people is. Also, users are able to search for a video with keywords just like they do at the YouTube. In addition, users can register to our website to benefit from keeping track of their watch history and hearted videos by giving us a username, a valid address and a password. For some of the videos, content providers are uploading the subtitles besides the video that they have uploaded. Besides, for some of the videos, YouTube has a speech-to-text subtitles functionality. For these two types of videos, we simply get the speech text from the YouTube. Then, we translate this text to the sign language. Hence, users are able to watch the video with the corresponding translation instantly. However, for some of the videos, there is no way we can see subtitles. For these videos, we first convert speech to text. Then, we translate this text to the sign language. While we are doing this conversion, we are aiming to make the conversion to the sign language as much as fast because we do not want our users to wait a lot. For this purpose, we are also willing to make our server stronger with higher CPU. While translating, our translator avatar s speed will change dynamically. The requested video by the user may have different speech intensities in different time periods. Hence, avatar speed will be adjusted accordingly. 3. Final Status Our Project is live at or at All the features are available for users to explore. These features are: 2

4 Users can watch any video from YouTube with sign language translation by replacing the "youtube" part before the ".com" with "youtalkwesign. Users can change video settings such as sound and full screen in application website just like they do at the YouTube. Users can pause the video. When it is paused, the avatar will also be paused. They play and pause simultaneously. Users can open and close subtitle under the avatar with the icon near the play/pause. Users can change the background of an avatar. Users can drag and drop the avatar. 3

5 Users are able to see trending videos regarding view counts at our website (from the sidebar). Users are able to search for a video with keywords just like they do at the YouTube (from the navbar). Also, while doing that, they will not be distracted from the video they play currently. The search results will come under the page because our application is one-page application. In these search results below, the videos that have green tick have the subtitles available so they have instant conversion. However, the videos that have red tick have no subtitles so they need speech-to-text conversion first. 4

6 If user clicks on a video with a red X symbol, that means, we need to convert speech to text first. For this period, user will see this screen: Users can register to our website to benefit from keeping track of their watch history and hearted videos by giving us a username, a valid address and a password (from the button at the navbar). After a successful registration, the system redirects user to the home page as logged in. Registered users can log in to the website with their username and password at any time and become authenticated. 5

7 Authenticated users can see their watch history. Authenticated users can heart a video. They can see their hearted videos. Finally, they can remove heart from a hearted video. User with username sa s hearted list: 6

8 4. Final Architecture and Design For YouTalkWeSign, we choose the three-tier architectural style which will organize our subsystems into three layers: GUI, Application Logic and Storage. YouTalkWeSign s 3-tier architecture is below. (Full resolution: ) 4.1 GUI Tier The GUI tier consists of HTML/CSS pages that are powered by Javascript and Thymeleaf Java template engine. For the design of the web pages, Bootstrap v4 beta is used. 7

9 Therefore, our website is full responsive and has a consistent design. In addition, for the purpose of being a dynamic webpage, we have benefited from jquery a lot. Also, the icons that are used in our website is from the Font Awesome library. 4.2 Application Logic Tier Our application logic tier consists of Controller/Service pairs. In this logic, first, request (GET or POST) from the user comes to the related controller and controller catches it. Then, controller calls its service class to get the job done. (Full resolution: ) At this package, AboutUsController is responsible for showing our project s information to the user when clicked to About Us. HistoryController is responsible for keeping user s watched videos at the database. LoginController is responsible for authentication. RegisterController is responsible for authorization. MainController is responsible for displaying the video with the corresponding sign language translation. It is the most important one because its job starts by getting the transcript of the video. Then, it prepares the words that are spoken in the video with the signs of them. Then, it administers the GUI to make video and avatar play simultaneously. HeartedController is responsible for keeping user s hearted videos at the database. TrendingController decides the most watched videos at our website and keeps them at the database. SearchController is responsible for bringing search results with regard to keyword. 4.3 Storage Tier At this tier, first of all, all videos have a transcript besides their youtube id, title and thumbnail image url. Transcript consists of a list of Text objects. Each text object has a start time and duration from that time and the text that is spoken at this time interval. Then, the Text object will have a list of words which keeps words along with their sign video URLs. In addition, Users relation with the videos will be kept at database; their histories and hearteds. 8

10 Example Transcript: 5. Tools and Technologies Used For front-end of the web application, we use: Thymeleaf (Java template engine) Bootstrap v4 (for a responsive and a good-looking design) jquery v3.2.1 (for being a one-page app with ajax calls) For back-end of the web application, we use Java technologies: Spring Boot (auto configured version of Spring MVC) Spring Security (JDBC authentication and authorization) Spring Data JPA (database operations with MySQL [login, register, history, hearted and trending videos]) For the implementation of the web application, we use: Eclipse IDE Oxygen Version Apache Maven (for a dependency management). Our server will be in a Digital Ocean droplet. Apache Tomcat 8 will be our web application manager where we will deploy our application. YouTube transcripts are in XML format. For parsing it, we use JAXB. We have a database that includes 6000~ words. These words are at their simple forms. For example, if schools word passes in the YouTube video, there is no schools at our database, but there is school. For this purpose, we need to convert words that passes in YouTube video to their simpler forms. For our search feature, we use YouTube Search API. For giving alerts as a toaster, we use toaster library: User can set the sound of a video. For this slider, we use: For right click context menu on the avatar, we use: 9

11 For converting Youtube video format from mp4 to wav file, we use: FFmpeg software Jave (Java Audio Video Encoder) library For generating transcript for videos without subtitles, we use: Google Cloud Speech-to-Text API Google Cloud Platform For adding cartoon effect on avatar video frames, we use: OpenCv library for Python Pillow library for Python For concatenating video frames to create video again, we use: Moviepy library for Python 6. Impact of Engineering Solutions 6.1 Global Impact The main target of the YouTalkWeSign project is to serve people with hearing impairments and deafness.there are 466 million people who disabling hearing loss around the world.[1] These people mostly uses sign languages to communicate with each other and other people. There are many different sign languages which specific to world languages such as english, portuguese, arabic and turkish. However, the most common sign language is American Sign Language(ASL) among people. There are lots of applications to serve these people about sign language. Yet, none of them has a great success for global impact on people with using ASL. YouTalkWeSign aims to have a global impact by creating usable, common and efficient platform. YouTalkWeSign is basically web application to convert voice or subtitles to sign language. It is working compatible with Youtube which is one of the most common social platform around the world. Therefore, YouTalkWeSign can have huge global impact on people from different cultures. Since, in today's world, Youtube is one of the top social networks in the world. People from everywhere can watch and upload video on Youtube. With using YouTalkWeSign web application, people can watch video on youtube with avatar who translates to sign language. It is working for only English language, but it can be used for any video in any language in the future. Thanks to these updates, global impact of YouTalkWeSign will be improved. 6.2 Social Impact YouTalkWeSign is web application for sign language translation and it is working compatible with Youtube social media. Owing to this, it has a indisputable impact in the social lives of the people. By translating video voice or subtitles to sign language, it enables people from all over the world who have hearing impairments to watch any video with sign language 10

12 translation. Most of these people have no awareness about most of Youtube videos. There are various type of videos on Youtube such as news, tv shows, movies, talks and tutorials. Most of them have no subtitles. Even if some of them have subtitles, people with having hearing impairments do not prefer reading subtitles while they are watching video at the same time. With using YouTalkWeSign, people will be able to watch any video with sign language translation. YouTalkWeSign can make any video as understable and easy to watch for those people. 6.3 Economic Impact YouTalkWeSign can have economic impact as increasing number of video views and making any advertisement video more accessible. With making any video on Youtube understandable for people who have hearing impairments, YouTalkWeSign can provide videos on Youtube with increasing view number. Moreover, Youtube has many advertisement videos, therefore, YouTalkWeSign can convey them to more people. Thanks to these, YouTalkWeSign can increase number of customers for advertisement videos and it can increase profits and earnings. 7. Contemporary Issues The language of YouTalkWeSign is selected English since it is most used language in the world. Additionally, the sign language we used is American Sign Language(ASL) as the number of people with hearing disability that know ASL is about 500K according to Ethnologue s 2013 report, making it the fourth most common sign language. Our tool makes use of Youtube as Youtube is the largest online video streaming service out there and they provide transcripts for a lot of videos which makes our service faster and reliable. Since our tool works with Youtube, it definitely needs internet connection. Some problems may occur when number of users increase and our tool comes in a point of bottleneck for generating transcripts for demanded videos. Nevertheless, once we generate a transcript for a video, we store the signature and the transcript for the next time. 8. References [1] Deafness and hearing loss, World Health Organization. [Online]. Available: [Accessed: 03-May-2018]. [2] Anon, (2018). [online] Available at: /deaf-sign-language [Accessed 3 May 2018]. 11

Senior Design Project

Senior Design Project Senior Design Project Project short-name: YouTalkWeSign Low-Level Design Report Abdurrezak Efe, Yasin Erdoğdu, Enes Kavak, Cihangir Mercan Supervisor:Hamdi Dibeklioğlu Jury Members: Varol Akman, Mustafa

More information

EDUCATIONAL TECHNOLOGY MAKING AUDIO AND VIDEO ACCESSIBLE

EDUCATIONAL TECHNOLOGY MAKING AUDIO AND VIDEO ACCESSIBLE EDUCATIONAL TECHNOLOGY MAKING AUDIO AND VIDEO ACCESSIBLE Videos integrated in courses must be accessible by all users. An accessible video includes captions, that is a transcript of the audio description

More information

Use the following checklist to ensure that video captions are compliant with accessibility guidelines.

Use the following checklist to ensure that video captions are compliant with accessibility guidelines. Table of Contents Purpose 2 Objective 2 Scope 2 Technical Background 2 Video Compliance Standards 2 Section 508 Standards for Electronic and Information Technology... 2 Web Content Accessibility Guidelines

More information

Florida Standards Assessments

Florida Standards Assessments Florida Standards Assessments Assessment Viewing Application User Guide 2017 2018 Updated February 9, 2018 Prepared by the American Institutes for Research Florida Department of Education, 2018 Descriptions

More information

Thrive Hearing Control Application

Thrive Hearing Control Application Thrive Hearing Control Application Apple Advanced Current Memory Thrive Virtual Assistant Settings User Guide Connection Status Edit Memory/Geotag Body Score Brain Score Thrive Wellness Score Heart Rate

More information

Elemental Kinection. Requirements. 2 May Version Texas Christian University, Computer Science Department

Elemental Kinection. Requirements. 2 May Version Texas Christian University, Computer Science Department Elemental Kinection Requirements Version 2.1 2 May 2016 Elemental Kinection Requirements i Revision History All revision history listed below. Version Change Summary Date 1.0 Initial Draft 10 November

More information

Thrive Hearing Control Application

Thrive Hearing Control Application Thrive Hearing Control Application Android Advanced Current Memory Thrive Assistant Settings User Guide Connection Status Edit Memory/Geotag Body Score Brain Score Thrive Wellness Score Heart Rate Mute

More information

Thrive Hearing Control App User Guide for Apple. Congratulations on your journey to better hearing

Thrive Hearing Control App User Guide for Apple. Congratulations on your journey to better hearing Thrive Hearing Control App User Guide for Apple Congratulations on your journey to better hearing Table of Contents Introduction.........................................4 Pairing/Connecting...................................5

More information

ACCESSIBILITY FOR THE DISABLED

ACCESSIBILITY FOR THE DISABLED ACCESSIBILITY FOR THE DISABLED Vyve Broadband is committed to making our services accessible for everyone. HEARING/SPEECH SOLUTIONS: Closed Captioning What is Closed Captioning? Closed Captioning is an

More information

Instructor Guide to EHR Go

Instructor Guide to EHR Go Instructor Guide to EHR Go Introduction... 1 Quick Facts... 1 Creating your Account... 1 Logging in to EHR Go... 5 Adding Faculty Users to EHR Go... 6 Adding Student Users to EHR Go... 8 Library... 9 Patients

More information

Captioning Your Video Using YouTube Online Accessibility Series

Captioning Your Video Using YouTube Online Accessibility Series Captioning Your Video Using YouTube This document will show you how to use YouTube to add captions to a video, making it accessible to individuals who are deaf or hard of hearing. In order to post videos

More information

On Demand Video Remote Interpreting

On Demand Video Remote Interpreting On Demand Video Remote Interpreting Interpreter User Guide thebigword.com 1 Contents What is On Demand Video Remote Interpreting (VRI)? What do I Need to Deliver a Good On Demand VRI Experience? What are

More information

BECOMING A MEDIASITE CAPTIONING PROVIDER

BECOMING A MEDIASITE CAPTIONING PROVIDER Introduction Mediasite provides students and employees an invaluable learning tool to watch and replay video and rich media on their own terms anytime, anywhere. Closed captions enhance that experience

More information

ACCESSIBILITY FOR THE DISABLED

ACCESSIBILITY FOR THE DISABLED ACCESSIBILITY FOR THE DISABLED Vyve Broadband is committed to making our services accessible for everyone. HEARING/SPEECH SOLUTIONS: Closed Captioning What is Closed Captioning? Closed Captioning is an

More information

User Guide V: 3.0, August 2017

User Guide V: 3.0, August 2017 User Guide V: 3.0, August 2017 a product of FAQ 3 General Information 1.1 System Overview 5 1.2 User Permissions 6 1.3 Points of Contact 7 1.4 Acronyms and Definitions 8 System Summary 2.1 System Configuration

More information

Phonak RemoteControl App. User Guide

Phonak RemoteControl App. User Guide Phonak RemoteControl App User Guide Getting started The RemoteControl App is developed by Phonak, one of the world`s leading companies in hearing technology. Read this user instructions thoroughly in order

More information

Before the Department of Transportation, Office of the Secretary Washington, D.C

Before the Department of Transportation, Office of the Secretary Washington, D.C Before the Department of Transportation, Office of the Secretary Washington, D.C. 20554 ) In the Matter of ) Accommodations for Individuals Who Are ) OST Docket No. 2006-23999 Deaf, Hard of Hearing, or

More information

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4

Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview, page 1 Shortcut Keys for Cisco Unity Connection Administration, page 1 Other Unity Connection Features, page 4 Overview Cisco Unity Connection supports various shortcut s and features that provides

More information

Kinomap Trainer app is set for fitness machines including exercise bikes, ellipticals and cross trainers, treadmills and rowers.

Kinomap Trainer app is set for fitness machines including exercise bikes, ellipticals and cross trainers, treadmills and rowers. Kinomap Trainer app is set for fitness machines including exercise bikes, ellipticals and cross trainers, treadmills and rowers. Version 1.1 1 With Kinomap Fitness, ride more than 100,000 km of geolocated

More information

Member 1 Member 2 Member 3 Member 4 Full Name Krithee Sirisith Pichai Sodsai Thanasunn

Member 1 Member 2 Member 3 Member 4 Full Name Krithee Sirisith Pichai Sodsai Thanasunn Microsoft Imagine Cup 2010 Thailand Software Design Round 1 Project Proposal Template PROJECT PROPOSAL DUE: 31 Jan 2010 To Submit to proposal: Register at www.imaginecup.com; select to compete in Software

More information

Interact-AS. Use handwriting, typing and/or speech input. The most recently spoken phrase is shown in the top box

Interact-AS. Use handwriting, typing and/or speech input. The most recently spoken phrase is shown in the top box Interact-AS One of the Many Communications Products from Auditory Sciences Use handwriting, typing and/or speech input The most recently spoken phrase is shown in the top box Use the Control Box to Turn

More information

Elluminate and Accessibility: Receive, Respond, and Contribute

Elluminate and Accessibility: Receive, Respond, and Contribute Elluminate and Accessibility: Receive, Respond, and Contribute More than 43 million Americans have one or more physical or mental disabilities. What s more, as an increasing number of aging baby boomers

More information

TruHearing app - Tinnitus Manager user guide

TruHearing app - Tinnitus Manager user guide TruHearing app - Tinnitus Manager user guide Introduction Congratulations on downloading your TruHearing app. The app is made to enhance your hearing experience and enable you to get more out of your hearing

More information

SHOEBOX Audiometry Pro. Quickstart Guide. SHOEBOX Audiometry Pro

SHOEBOX Audiometry Pro. Quickstart Guide. SHOEBOX Audiometry Pro Quickstart Guide 1 Introduction Welcome to your SHOEBOX Audiometry system! This quickstart guide will help you get SHOEBOX up and running, so you can quickly and easily conduct your first tests. Once you

More information

WFS. User Guide. thinkwhere Glendevon House Castle Business Park Stirling FK9 4TZ Tel +44 (0) Fax +44 (0)

WFS. User Guide. thinkwhere Glendevon House Castle Business Park Stirling FK9 4TZ   Tel +44 (0) Fax +44 (0) WFS User Guide thinkwhere Glendevon House Castle Business Park Stirling FK9 4TZ www.thinkwhere.com Tel +44 (0)1786 476060 Fax +44 (0)1786 47609 Table of Contents WHAT IS A WEB FEATURE SERVICE?... 3 Key

More information

CROS System Initial Fit Protocol

CROS System Initial Fit Protocol CROS System Initial Fit Protocol Our wireless CROS System takes audio from an ear level microphone and wirelessly transmits it to the opposite ear via Near-Field Magnetic Induction (NFMI) technology, allowing

More information

A Communication tool, Mobile Application Arabic & American Sign Languages (ARSL) Sign Language (ASL) as part of Teaching and Learning

A Communication tool, Mobile Application Arabic & American Sign Languages (ARSL) Sign Language (ASL) as part of Teaching and Learning A Communication tool, Mobile Application Arabic & American Sign Languages (ARSL) Sign Language (ASL) as part of Teaching and Learning Fatima Al Dhaen Ahlia University Information Technology Dep. P.O. Box

More information

User Instruction Guide

User Instruction Guide User Instruction Guide Table of Contents Logging In and Logging Out of MMSx 1 Creating a TPN (Terminal Profile Number) 2 Single Merchant 2 From Navigation Bar 2 From Home Page Link 4 Multiple Merchants

More information

Unitron Remote Plus app

Unitron Remote Plus app Unitron Remote Plus app User Guide A Sonova brand Getting started Intended use The Unitron Remote Plus app is intended for hearing aids users to adjust certain aspects of Unitron hearing aids through Android

More information

Audit Firm Administrator steps to follow

Audit Firm Administrator steps to follow Contents Audit Firm Administrator steps to follow... 3 What to know before you start... 3 Understanding CaseWare Cloud in a nutshell... 3 How to do the once off set up for the Audit Firm or Organisation...

More information

Discover the Accessibility Features of Smartphones! A Wireless Education Seminar for Consumers who are Deaf and Hard-of-Hearing

Discover the Accessibility Features of Smartphones! A Wireless Education Seminar for Consumers who are Deaf and Hard-of-Hearing Discover the Accessibility Features of Smartphones! A Wireless Education Seminar for Consumers who are Deaf and Hard-of-Hearing Who We Are Ben Lippincott Project Director Consumer and Industry Outreach

More information

Making Sure People with Communication Disabilities Get the Message

Making Sure People with Communication Disabilities Get the Message Emergency Planning and Response for People with Disabilities Making Sure People with Communication Disabilities Get the Message A Checklist for Emergency Public Information Officers This document is part

More information

Making YouTube Videos Accessible through Closed Captioning and Community Contributions

Making YouTube Videos Accessible through Closed Captioning and Community Contributions Making YouTube Videos Accessible through Closed Captioning and Community Contributions Emily Manson and Taylor Thomas April 23-24, 2018 Presentation Link: http://bit.ly/2u2ggec Learning Objectives 1. Participants

More information

Quick guide to connectivity and the ReSound Smart 3D app

Quick guide to connectivity and the ReSound Smart 3D app Quick guide to connectivity and the ReSound Smart 3D app 2 Content Compatibility: Hearing aids and mobile devices...4 Get started with your iphone, ipad or ipod touch...6 Pair with your ReSound Smart Hearing

More information

Qualys PC/SCAP Auditor

Qualys PC/SCAP Auditor Qualys PC/SCAP Auditor Getting Started Guide November 15, 2017 COPYRIGHT 2011-2017 BY QUALYS, INC. ALL RIGHTS RESERVED. QUALYS AND THE QUALYS LOGO ARE REGISTERED TRADEMARKS OF QUALYS, INC. ALL OTHER TRADEMARKS

More information

Departmental ADA Coordinators Academy. Session II A April 5, 2016 Effective Communication: The Basics

Departmental ADA Coordinators Academy. Session II A April 5, 2016 Effective Communication: The Basics Departmental ADA Coordinators Academy Session II A April 5, 2016 Effective Communication: The Basics Presented by the San Francisco Mayor s Office on Disability Today s Learning Objectives: Define effective

More information

GN Hearing app - Tinnitus Manager user guide

GN Hearing app - Tinnitus Manager user guide GN Hearing app - Tinnitus Manager user guide Introduction Congratulations on downloading your app. The app is made to enhance your hearing experience and enable you to get more out of your hearing aids.

More information

Creating YouTube Captioning

Creating YouTube Captioning Creating YouTube Captioning Created June, 2017 Upload your video to YouTube Access Video Manager Go to Creator Studio by clicking the option from your account icon located in the topright corner of the

More information

ProSense 307/347/367 Reviewer's Guide

ProSense 307/347/367 Reviewer's Guide ProSense 307/347/367 Reviewer's Guide Contents Epson ProSense 307/347/367 GPS Multisport Watch Reviewer's Guide... 5 Using the Watch... 6 Controlling Music Playback... 6 Measuring Workouts... 7 Displayable

More information

myphonak app User Guide

myphonak app User Guide myphonak app User Guide Getting started myphonak is an app developed by Sonova, the world leader in hearing solutions based in Zurich, Switzerland. Read the user instructions thoroughly in order to benefit

More information

The Hospital Anxiety and Depression Scale Guidance and Information

The Hospital Anxiety and Depression Scale Guidance and Information The Hospital Anxiety and Depression Scale Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment

More information

Elsevier ClinicalKey TM FAQs

Elsevier ClinicalKey TM FAQs Elsevier ClinicalKey FAQs Table of Contents What is ClinicalKey? Where can I access ClinicalKey? What medical specialties are covered in ClinicalKey? What information is available through ClinicalKey?

More information

The Future of Access to Digital Broadcast Video. Session hashtag: #SWDigiAccess

The Future of Access to Digital Broadcast Video. Session hashtag: #SWDigiAccess The Future of Access to Digital Broadcast Video Session hashtag: #SWDigiAccess Panelists Andrew Kirkpatrick, Adobe Systems Craig Cuttner, Home Box Office Shane Feldman, National Association of the Deaf

More information

Quick guide for Oticon Opn & Oticon ON App 1.8.0

Quick guide for Oticon Opn & Oticon ON App 1.8.0 Quick guide for Oticon Opn & Oticon ON App.8.0 Introduction This is a detailed guide to the use of Oticon Opn and the Oticon ON App for Android phones. How to pair Oticon Opn hearing aids with an Android

More information

Connectivity guide for. BeMore app

Connectivity guide for. BeMore app Connectivity guide for BeMore app Compatible AGXR aids These AGXR aids work with the BeMore app. If you re in doubt, please ask your hearing care professional. Table of contents Introduction to AGXR hearing

More information

icommunicator, Leading Speech-to-Text-To-Sign Language Software System, Announces Version 5.0

icommunicator, Leading Speech-to-Text-To-Sign Language Software System, Announces Version 5.0 For Immediate Release: William G. Daddi Daddi Brand Communications (P) 212-404-6619 (M) 917-620-3717 Bill@daddibrand.com icommunicator, Leading Speech-to-Text-To-Sign Language Software System, Announces

More information

Quick guide to connectivity and the Interton Sound app

Quick guide to connectivity and the Interton Sound app Quick guide to connectivity and the Interton Sound app Content Compatibility: Hearing aids and mobile devices... 4 Get started with your iphone, ipad or ipod touch... 6 Pair with your Interton hearing

More information

Section Web-based Internet information and applications VoIP Transport Service (VoIPTS) Detail Voluntary Product Accessibility Template

Section Web-based Internet information and applications VoIP Transport Service (VoIPTS) Detail Voluntary Product Accessibility Template Section 1194.22 Web-based Internet information and applications VoIP Transport Service (VoIPTS) Detail Voluntary Product Accessibility Template Remarks and explanations (a) A text equivalent for every

More information

ReSound Forte and ReSound Smart 3D App For Android Users Frequently Asked Questions

ReSound Forte and ReSound Smart 3D App For Android Users Frequently Asked Questions ReSound Forte and ReSound Smart 3D App For Android Users Frequently Asked Questions GENERAL Q. I have an Android phone. Can I use ReSound Forte? Q. What Android devices are compatible with ReSound Forte

More information

Video Captioning Basics

Video Captioning Basics Video Captioning Basics Perhaps the most discussed aspect of accessible video is closed captioning, but misinformation about captioning runs rampant! To ensure you're using and creating accessible video

More information

My Fitness Pal Health & Fitness Tracker A User s Guide

My Fitness Pal Health & Fitness Tracker A User s Guide My Fitness Pal Health & Fitness Tracker A User s Guide By: Angela McCall Introduction My Fitness Pal is an online diet, health, and fitness tracker that allows you to track your nutrition and fitness goals

More information

Fujitsu LifeBook T Series TabletPC Voluntary Product Accessibility Template

Fujitsu LifeBook T Series TabletPC Voluntary Product Accessibility Template Fujitsu LifeBook T Series TabletPC Voluntary Product Accessibility Template 1194.21 Software Applications and Operating Systems* (a) When software is designed to run on a system that This product family

More information

App user guide. resound.com

App user guide. resound.com App user guide resound.com Introduction The ReSound apps are made to enhance your hearing experience and enable you to get more out of your ReSound hearing aids. ReSound s innovative sound technology and

More information

A Smart Texting System For Android Mobile Users

A Smart Texting System For Android Mobile Users A Smart Texting System For Android Mobile Users Pawan D. Mishra Harshwardhan N. Deshpande Navneet A. Agrawal Final year I.T Final year I.T J.D.I.E.T Yavatmal. J.D.I.E.T Yavatmal. Final year I.T J.D.I.E.T

More information

HANSATON stream remote App User Guide. HANSATON stream remote App User Guide

HANSATON stream remote App User Guide. HANSATON stream remote App User Guide HANSATON stream remote App Getting started Intended use The HANSATON stream remote App is intended for hearing aids users to adjust certain aspects of HANSATON hearing aids through Android and Apple ios

More information

Quick guide for Oticon Opn & Oticon ON App 1.8.0

Quick guide for Oticon Opn & Oticon ON App 1.8.0 Quick guide for Oticon Opn & Oticon ON App.8.0 Introduction This is a detailed guide on the use of Oticon Opn and the Oticon ON App with iphone. How to pair the hearing aids with iphone Daily use of iphone

More information

Accessible Internet Video

Accessible Internet Video Accessible Internet Video Andrew Kirkpatrick Adobe Systems akirkpat@adobe.com 1 What is Needed? Captions Subtitles Full screen captions/subtitles Audio description (video description) Keyboard accessible

More information

mpaceline for Peloton Riders User Guide

mpaceline for Peloton Riders User Guide mpaceline for Peloton Riders User Guide NOTE - This guide is up to date as of Version 2.4.1 of mpaceline. If you don t have this version, please upgrade from the Apple App Store. Table of Contents Overview

More information

User Guide Seeing and Managing Patients with AASM SleepTM

User Guide Seeing and Managing Patients with AASM SleepTM User Guide Seeing and Managing Patients with AASM SleepTM Once you have activated your account with AASM SleepTM, your next step is to begin interacting with and seeing patients. This guide is designed

More information

MyWindFit Member Analytics Portal

MyWindFit Member Analytics Portal Member Analytics Portal The member section of is a private and personalized cloud database that contains the detailed records of all your activity. It also contains an analysis package that enables you

More information

How to use mycontrol App 2.0. Rebecca Herbig, AuD

How to use mycontrol App 2.0. Rebecca Herbig, AuD Rebecca Herbig, AuD Introduction The mycontrol TM App provides the wearer with a convenient way to control their Bluetooth hearing aids as well as to monitor their hearing performance closely. It is compatible

More information

University of Toronto. Final Report. myacl. Student: Alaa Abdulaal Pirave Eahalaivan Nirtal Shah. Professor: Jonathan Rose

University of Toronto. Final Report. myacl. Student: Alaa Abdulaal Pirave Eahalaivan Nirtal Shah. Professor: Jonathan Rose University of Toronto Final Report myacl Student: Alaa Abdulaal Pirave Eahalaivan Nirtal Shah Professor: Jonathan Rose April 8, 2015 Contents 1 Goal & Motivation 2 1.1 Background..............................................

More information

Connectivity guide for ReSound Smart 3D app

Connectivity guide for ReSound Smart 3D app Connectivity guide for ReSound Smart 3D app Table of contents Introduction to ReSound Smart Hearing Aids... 3 Mobile Devices that Work with ReSound Smart Hearing Aids... 3 Connectivity and ReSound Smart

More information

Student Orientation 2010, Centricity Enterprise EMR Training, and netlearning.parkview.com Instructions for Nursing Students

Student Orientation 2010, Centricity Enterprise EMR Training, and netlearning.parkview.com Instructions for Nursing Students Updated 11/29/2011 Welcome to Parkview Health. We are glad you are coming to learn with us, and we thank you in advance for your participation in providing the best care for the patients in our region.

More information

Data Management System (DMS) User Guide

Data Management System (DMS) User Guide Data Management System (DMS) User Guide Eversense and the Eversense logo are trademarks of Senseonics, Incorporated. Other brands and their products are trademarks or registered trademarks of their respective

More information

How to use mycontrol App 2.0. Rebecca Herbig, AuD

How to use mycontrol App 2.0. Rebecca Herbig, AuD Rebecca Herbig, AuD Introduction The mycontrol TM App provides the wearer with a convenient way to control their Bluetooth hearing aids as well as to monitor their hearing performance closely. It is compatible

More information

Open Architectures and Community Building. Professor Joakim Gustafson. Head of Department Department of Speech, Music and Hearing KTH, Sweden

Open Architectures and Community Building. Professor Joakim Gustafson. Head of Department Department of Speech, Music and Hearing KTH, Sweden Open Architectures and Community Building Professor Joakim Gustafson Head of Department Department of Speech, Music and Hearing KTH, Sweden The KTH speech group s areas of interest Human speech perception/production

More information

Assistive Technology Resources & Services Port Jefferson Free Library

Assistive Technology Resources & Services Port Jefferson Free Library Assistive Technology Resources & Services Port Jefferson Free Library 100 Thompson Street Port Jefferson, NY 11777 631-473-0022 adref@portjefflibrary.org portjefflibrary.org Contact Adult Reference with

More information

Language Volunteer Guide

Language Volunteer Guide Language Volunteer Guide Table of Contents Introduction How You Can Make an Impact Getting Started 3 4 4 Style Guidelines Captioning Translation Review 5 7 9 10 Getting Started with Dotsub Captioning Translation

More information

Avaya IP Office R9.1 Avaya one-x Portal Call Assistant Voluntary Product Accessibility Template (VPAT)

Avaya IP Office R9.1 Avaya one-x Portal Call Assistant Voluntary Product Accessibility Template (VPAT) Avaya IP Office R9.1 Avaya one-x Portal Call Assistant Voluntary Product Accessibility Template (VPAT) Avaya IP Office Avaya one-x Portal Call Assistant is an application residing on the user s PC that

More information

Conducting Outreach on Manhunt.net

Conducting Outreach on Manhunt.net Conducting Outreach on Manhunt.net This guidance has been created in an effort to assist your organization in the creation of a profile designed to provide outreach to the members of Manhunt.net. This

More information

Quick guide for Oticon Opn & Oticon ON App 1.8.0

Quick guide for Oticon Opn & Oticon ON App 1.8.0 Quick guide for Oticon Opn & Oticon ON App.8.0 Introduction This is a detailed guide to the use of Oticon Opn and the Oticon ON App for Andriod phones. How to pair Oticon Opn hearing aids with an Android

More information

SANAKO Lab 100 STS USER GUIDE

SANAKO Lab 100 STS USER GUIDE SANAKO Lab 100 STS USER GUIDE Copyright 2008 SANAKO Corporation. All rights reserved. Microsoft is a registered trademark. Microsoft Windows 2000 and Windows XP are trademarks of Microsoft Corporation.

More information

Content Part 2 Users manual... 4

Content Part 2 Users manual... 4 Content Part 2 Users manual... 4 Introduction. What is Kleos... 4 Case management... 5 Identity management... 9 Document management... 11 Document generation... 15 e-mail management... 15 Installation

More information

KINOMAP FITNESS. Version Android KINOMAP FITNESS

KINOMAP FITNESS. Version Android KINOMAP FITNESS Version 1.1 - Android With Kinomap Fitness, ride more than 100,000 km of geolocated videos all over the world uploaded by users themselves. Try to follow their rhythm under the same conditions at the time

More information

Sanako Lab 100 STS USER GUIDE

Sanako Lab 100 STS USER GUIDE Sanako Lab 100 STS USER GUIDE Copyright 2002-2015 SANAKO Corporation. All rights reserved. Microsoft is a registered trademark. Microsoft Windows XP, Windows Vista and Windows 7 are trademarks of Microsoft

More information

COLUMBIA UNIVERSITY INSTITUTIONAL REVIEW BOARD GUIDANCE ON ELECTRONIC INFORMED CONSENT

COLUMBIA UNIVERSITY INSTITUTIONAL REVIEW BOARD GUIDANCE ON ELECTRONIC INFORMED CONSENT COLUMBIA UNIVERSITY INSTITUTIONAL REVIEW BOARD GUIDANCE ON ELECTRONIC INFORMED CONSENT I. BACKGROUND Electronic consenting ( e-consenting ) is the use of electronic systems and processes, whether in person

More information

Source and Description Category of Practice Level of CI User How to Use Additional Information. Intermediate- Advanced. Beginner- Advanced

Source and Description Category of Practice Level of CI User How to Use Additional Information. Intermediate- Advanced. Beginner- Advanced Source and Description Category of Practice Level of CI User How to Use Additional Information Randall s ESL Lab: http://www.esllab.com/ Provide practice in listening and comprehending dialogue. Comprehension

More information

Networx Enterprise Proposal for Internet Protocol (IP)-Based Services. Supporting Features. Remarks and explanations. Criteria

Networx Enterprise Proposal for Internet Protocol (IP)-Based Services. Supporting Features. Remarks and explanations. Criteria Section 1194.21 Software Applications and Operating Systems Internet Protocol Telephony Service (IPTelS) Detail Voluntary Product Accessibility Template (a) When software is designed to run on a system

More information

Realtime A Cost-Effective Solution

Realtime A Cost-Effective Solution Realtime A Cost-Effective Solution Realtime - A Cost-Effective Solution In April 2013, NCRA was invited by Judge David A. Nuffer to participate in choosing the most tech-savvy and cost-effective solution

More information

TMWSuite. DAT Interactive interface

TMWSuite. DAT Interactive interface TMWSuite DAT Interactive interface DAT Interactive interface Using the DAT Interactive interface Using the DAT Interactive interface... 1 Setting up the system to use the DAT Interactive interface... 1

More information

TruLink Hearing Control App User Guide

TruLink Hearing Control App User Guide TruLink Hearing Control App User Guide TruLink Hearing Control App User Guide GET CONNECTED In order to use the TruLink Hearing Control app, you must first pair your hearing aids with your ios device.

More information

ReSound Assist quick guide. A guide for professionals

ReSound Assist quick guide. A guide for professionals ReSound Assist quick guide A guide for professionals How to complete a ReSound Assist fine-tuning Activate remote fine-tuning. From the Patient screen, select ReSound Assist from the lower navigation row..

More information

Maryland Integrated Science Assessment (MISA) Practice Test Guide Document

Maryland Integrated Science Assessment (MISA) Practice Test Guide Document Maryland Integrated Science Assessment (MISA) Practice Test Guide Document Prepared by the MCPS Testing and Reporting Unit Office of Shared Accountability Montgomery County Public Schools January 2018

More information

Tool kit SATURDAY, APRIL 13, AM MALL OF AMERICA FRASER.ORG/WALK SATURDAY, APRIL 13, AM MALL OF AMERICA FRASER.ORG/WALK

Tool kit SATURDAY, APRIL 13, AM MALL OF AMERICA FRASER.ORG/WALK SATURDAY, APRIL 13, AM MALL OF AMERICA FRASER.ORG/WALK Tool kit 1 Dear Friend of Fraser, Thank you for your interest in supporting Fraser through the 2019 Fraser Walk for Autism. Fraser is Minnesota s largest and most experienced provider of autism services.

More information

INSTANT RUBYMINE ASSIMILATION BY DAVE JONES DOWNLOAD EBOOK : INSTANT RUBYMINE ASSIMILATION BY DAVE JONES PDF

INSTANT RUBYMINE ASSIMILATION BY DAVE JONES DOWNLOAD EBOOK : INSTANT RUBYMINE ASSIMILATION BY DAVE JONES PDF INSTANT RUBYMINE ASSIMILATION BY DAVE JONES DOWNLOAD EBOOK : INSTANT RUBYMINE ASSIMILATION BY DAVE JONES PDF Click link bellow and free register to download ebook: INSTANT RUBYMINE ASSIMILATION BY DAVE

More information

Using Process Methods to Study Subtitling

Using Process Methods to Study Subtitling First South African Inter-University Translation and Interpreting Conference Using Process Methods to Study Subtitling David ORREGO-CARMONA 1, Łukasz Stanisław DUTKA 2, Agnieszka SZARKOWSKA 2 1 University

More information

Assistive Technologies

Assistive Technologies Revista Informatica Economică nr. 2(46)/2008 135 Assistive Technologies Ion SMEUREANU, Narcisa ISĂILĂ Academy of Economic Studies, Bucharest smeurean@ase.ro, isaila_narcisa@yahoo.com A special place into

More information

Language Services Program

Language Services Program Language Services Program Objectives Understand the importance of language services and its role in attaining equitable health. Improve patient care and safety and boost patient satisfaction. Understand

More information

Contour Diabetes app User Guide

Contour Diabetes app User Guide Contour Diabetes app User Guide Contents iii Contents Chapter 1: Introduction...5 About the CONTOUR DIABETES app...6 System and Device Requirements...6 Intended Use...6 Chapter 2: Getting Started...7

More information

ADVANCES in NATURAL and APPLIED SCIENCES

ADVANCES in NATURAL and APPLIED SCIENCES ADVANCES in NATURAL and APPLIED SCIENCES ISSN: 1995-0772 Published BYAENSI Publication EISSN: 1998-1090 http://www.aensiweb.com/anas 2017 May 11(7): pages 166-171 Open Access Journal Assistive Android

More information

Technology Design 1. Masters of Arts in Learning and Technology. Technology Design Portfolio. Assessment Code: TDT1 Task 3. Mentor: Dr.

Technology Design 1. Masters of Arts in Learning and Technology. Technology Design Portfolio. Assessment Code: TDT1 Task 3. Mentor: Dr. Technology Design 1 Masters of Arts in Learning and Technology Technology Design Portfolio Assessment Code: TDT1 Task 3 Mentor: Dr. Teresa Dove Mary Mulford Student ID: 000163172 July 11, 2014 A Written

More information

Connectivity guide for ReSound Smart 3D app

Connectivity guide for ReSound Smart 3D app Connectivity guide for ReSound Smart 3D app Table of contents Introduction to ReSound Smart Hearing Aids... 3 Mobile Devices that Work with ReSound Smart Hearing Aids... 3 Connectivity and ReSound Smart

More information

Networx Enterprise Proposal for Internet Protocol (IP)-Based Services. Supporting Features. Remarks and explanations. Criteria

Networx Enterprise Proposal for Internet Protocol (IP)-Based Services. Supporting Features. Remarks and explanations. Criteria Section 1194.21 Software Applications and Operating Systems Converged Internet Protocol Services (CIPS) Detail Voluntary Product Accessibility Template Criteria Supporting Features Remarks and explanations

More information

Quick-Start Guide TeamUnify, LLC

Quick-Start Guide TeamUnify, LLC Quick-Start Guide Setup Basics System Settings 1 When you initially sign up for MainSet, you need to set up Roster Group colors and designate coaches. first, Click settings 1. Navigate to http://mainset.com

More information

Sign Language to English (Slate8)

Sign Language to English (Slate8) Sign Language to English (Slate8) App Development Nathan Kebe El Faculty Advisor: Dr. Mohamad Chouikha 2 nd EECS Day April 20, 2018 Electrical Engineering and Computer Science (EECS) Howard University

More information

In this chapter, you will learn about the requirements of Title II of the ADA for effective communication. Questions answered include:

In this chapter, you will learn about the requirements of Title II of the ADA for effective communication. Questions answered include: 1 ADA Best Practices Tool Kit for State and Local Governments Chapter 3 In this chapter, you will learn about the requirements of Title II of the ADA for effective communication. Questions answered include:

More information

Quick guide for Oticon Opn & Oticon ON App 1.8.0

Quick guide for Oticon Opn & Oticon ON App 1.8.0 Quick guide for Oticon Opn & Oticon ON App.8.0 Introduction This is a detailed guide on the use of Oticon Opn and the Oticon ON App with iphone. How to pair the hearing aids with iphone Daily use of iphone

More information