Merge pull request #633 from eleniums/fix/fps-tello-video-example

Fix DJI Tello video example
This commit is contained in:
Trevor Rosen 2018-11-30 16:08:38 -06:00 committed by GitHub
commit ac0cad7bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import (
func main() {
drone := tello.NewDriver("8890")
mplayer := exec.Command("mplayer", "-fps", "25", "-")
mplayer := exec.Command("mplayer", "-fps", "60", "-")
mplayerIn, _ := mplayer.StdinPipe()
if err := mplayer.Start(); err != nil {
fmt.Println(err)