Using your voice to control cursor movement
Channel:
Subscribers:
8,910
Published on ● Video Link: https://www.youtube.com/watch?v=eb7wzjUR7aM
A quick tutorial about controlling your cursor with your voice using the free GlovePIE software.
Example script:
if said("stop") then var.speed = [0, 0]
end if
if said("slow") then var.speed = var.speed / 2
end if
if said("fast") then var.speed = var.speed * 2
end if
if said("left") then var.speed = [-3, 0]
end if
if said("right") then var.speed = [3, 0]
end if
if said("up") then var.speed = [0, -2]
end if
if said("down") then var.speed = [0, 2]
end if
mouse.DirectInput2D += var.speed
Mouse.RightButton = Keepdown(Microphone.Said("pow"), 0.1)
Mouse.LeftButton = Keepdown(Microphone.Said("now"), 0.1)
This video was made by the charity SpecialEffect, who help people with disabilities play and enjoy video games.
Other Videos By SpecialEffect
Tags:
SpecialEffect
Special Effect
charity
disability
disabled
video games
videogames
voice control
voice operation
PC games
cursor movement
cursor control