Archivo

Archivo para la categoría ‘GlovePie’

KaraFun – Script GlovePie

Domingo, 13 de Enero de 2008

Pues otro más para controlar el KaraFun. De esta manera ya puedes crear una playlist y sentarte en el sofá a cantar!!!

 // KaraFun – PlayList control v0.1
// By Soncyrow

Wiimote.Led1 = true;

Key.Z     = Wiimote.Left               // Previous track
Key.X     = Wiimote.A                  // Play / Stop
Key.C     = Wiimote.1                  // Pause
Key.V     = Wiimote.2                  // Stop
Key.B     = Wiimote.Right              // Next track
Key.Left  = Wiimote.B + Wiimote.Left   // Backward
Key.Right = Wiimote.B + Wiimote.Right  // Forward
Alt+Enter = Wiimote.Home               // Fullscreen
Key.NumpadMinus = Wiimote.Minus        // Volume DOWN
Key.NumpadPlus  = Wiimote.Plus         // Volume UP

Sonycrow GlovePie, KaraFun, Karaoke, Scripts

Media Player Classic – Script GlovePie

Sábado, 12 de Enero de 2008

Para controlar nuestro querido Media Player Classic. Pensado para ir abriendo archivos ya que incluso tiene la opción de tabulación, aunque creo que la selección de botones no es la correcta. A ver si lo mejoro :)

// Media Player Classic functions and basic Explorer
// (the file manager, not the browser) keyboard functions

// Browse your media files and watch them without motion or
// IR control.  Tack on any mouse script with (+) and (-)
// as mouse buttons for DVD control

// CONTROLS:
//
// (D-Pad) = up, down, left and right
// (A) = Space bar
// (B) = Ctrl
// (Home) = Return
// (1) = tab
// (2) = alt

// Media Player Classic (default key layout)
//
// Play/Pause = (A)
// Medium Skip forward/back = (B) + (>) / (<)
// Large Skip forward/back = (2) + (>) / (<)
// Volume = (^) / (v)
// Fullscreen toggle = (2) + (Home)
// If you retask Mute to Ctrl + down in MPC options, then toggle
//   mute = (B) + (v)

// Explorer / XP keys
//
// Change app focus [alt+tab] = (2) + (1)
// Open explorer (requires shortcut key to be assigned
//    up down right or left) = (B) + (1) + (x)
// Navigate up and down in folder/file frames = (^) and (v)
// Collapse subfolders = (<)
// Expand subfolders = (>)
// Move from folder frame to file frame and back [tab] = (2)
// Execute file = (Home)
// Focus on excuted media file = (2) + (1)

// Code
Alt + Enter     = Wiimote1.B and Wiimote1.A
Key.Up          = Wiimote1.Up or Wiimote1.Plus
Key.Down        = Wiimote1.Down or Wiimote1.Minus
Key.Space       = Wiimote1.A
key.enter       = Wiimote1.Home
Key.LeftAlt     = Wiimote1.Two
key.tab         = Wiimote1.One
Key.Left        = Wiimote1.Left
Key.Right       = Wiimote1.Right
Key.LeftControl = Wiimote1.B

Sonycrow GlovePie, Scripts

VLC Media Player (videos) – Script GlovePie

Sábado, 12 de Enero de 2008

Para controlar el VLC Media Player y pensado para ver videos, no canales de televisión. Ya iré poniendo algunos otros más completos :)

// VLC Media Player – Video Control Script v0.1
// By Aepex
// This script assumes you use the default key bindings in VLC.
// Designed for watching *videos* in VLC.
// There are better scripts out there for music control.

Wiimote.Led1 = true;

Key.Space      = Wiimote.A;       // Pause / Resume
Key.M          = Wiimote.Home;    // Mute
Key.Ctrl+Up    = Wiimote.Plus;    // Volume UP
Key.Ctrl+Down  = Wiimote.Minus;   // Volume DOWN
Key.Alt+Left   = Wiimote.Left;    // 10 sec. backward
Key.Alt+Right  = Wiimote.Right;   // 10 sec. forward
Key.Ctrl+Left  = Wiimote.B+Left;  // 5 min. backward
Key.Ctrl+Right = Wiimote.B+Right; // 5 min. forward
Key.F          = Wiimote.One;     // Fullscreen toggle
Key.T          = Wiimote.Two;     // Show time position

Sonycrow GlovePie, Scripts

Winamp – Script GlovePie

Sábado, 12 de Enero de 2008

Un script sencillito para controlar el Winamp. Creo que la selección de botones está bien conseguida según las acciones que más utilizamos al escuchar música, no obstante como es tan sencillo se puede modificar sin dificultad.

//Winamp Wiimote Test aka Wiinamp Control Ultra II Turbo Edition
//Controls set to Wiimote buttons

Ctrl+z  = Wiimote.Up    //Start of playlist (D-pad up)
Ctrl+b  = Wiimote.Down  //End of playlist (D-pad down)
Left    = Wiimote.Left  //Back 5 seconds (D-pad left)
Right   = Wiimote.Right //Jump 5 seconds (D-pad right)
x       = Wiimote.A     //Play (Main “A” button on Wiimote)
Shift+v = Wiimote.B     //Stop (Song fades out,”B” button on Wiimote)
b       = Wiimote.One   //Next track (“1″ button on Wiimote)
z       = Wiimote.Two   //Previous track (“2″ button on Wiimote)
v       = Wiimote.Home  //Stop (Stop, “Home” button on Wiimote)
Down    = Wiimote.Minus //Volume Down (“-” button on Wiimote)
Up      = Wiimote.Plus  //Volume Up (“+” button on Wiimote)

//No power in the ‘Verse can stop me

Sonycrow GlovePie, Scripts