ap

Queue manager meant to be used as an audio player
git clone git://jacobedwards.org/ap
Log | Files | Refs | README | LICENSE

config.h (831B)


      1 /* aps config */
      2 
      3 static char *name = NULL;
      4 
      5 static char *player[] = {
      6 	/* The item's path is appended */
      7 	"ffplay", "-loglevel", "error", "-nodisp", "-autoexit", NULL
      8 };
      9 
     10 static struct command commands[] = {
     11         { "add", com_add },
     12         { "close", com_close },
     13         { "commands", com_commands },
     14         { "list", com_list },
     15         { "log", com_log },
     16         { "name", com_name },
     17         { "next", com_next },
     18         { "pause", com_pause },
     19         { "play", com_play },
     20         { "player", com_player },
     21         { "previous", com_previous },
     22         { "remove", com_remove },
     23         { "root", com_root },
     24         { "seek", com_seek },
     25         { "status", com_status },
     26         { "stop", com_stop },
     27         { "terminate", com_terminate },
     28         { "toggle", com_toggle },
     29         { "truncate", com_truncate }
     30 };