Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/11/2014, 01:49
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Reproducir videos Aleatorios con VLCJ

Buenas,

Puedes obtener todos los ficheros en una carpeta facilmente:
Código Java:
Ver original
  1. File folder = new File("your/path");
  2. File[] listOfFiles = folder.listFiles();

Luego basta con que generes un random y escojas el correspondiente al indice aleatorio obtenido.

Código Java:
Ver original
  1. int videoToPlay = new Random().nextInt(listOfFiles.length)


Un saludo
__________________
If to err is human, then programmers are the most human of us