Este es el codigo, con libreria ncurses.
Código
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <ncurses.h> #include <pthread.h> void ini_video(); void *cronometro(void *args); void *musica(void *arg); void ejecuta_threads(); int main() { ini_video(); ejecuta_threads(); return 0; } void ejecuta_threads() { pthread_t th0, th1; pthread_create(&th0, NULL, (void *)&cronometro, NULL); pthread_create(&th1, NULL, (void *)&musica, NULL); pthread_join(th0, NULL); pthread_join(th1, NULL); } void ini_video() { int filas,columnas; initscr(); start_color(); // letras, fondo. init_pair(1, 4, 2); // cronometro init_pair(2, 0, 2); // fondo pantalla cbreak(); noecho(); keypad(stdscr, true); bkgd(COLOR_PAIR(2)); curs_set(0); getmaxyx(stdscr, filas, columnas); refresh(); } void *cronometro(void *args) { int horas, minutos, segundos; for(horas = 0; horas <= 2; horas++){ for(minutos = 0; minutos < 60; minutos++){ for(segundos = 0; segundos < 60; segundos++){ attron(A_BOLD | COLOR_PAIR(1)); mvprintw(5, 50, "%s %i:%i:%i", "Tiempo -> ", horas, minutos, segundos); napms(1000); refresh(); } } attroff(A_BOLD | COLOR_PAIR(1)); } return NULL; } void *musica(void *arg) { char *comando = "/usr/bin/play"; char *args[] = {"play", "-q", "donkey.ogg", "-t", "alsa", 0}; while(1) execv(comando, args); }