-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error al cargar video de fondo #82
Comments
Can you fire up Quelea, reproduce the issue then send on the debug log (https://quelea-projection.github.io/docs/Debug_log) so we can have a look? |
|
Afraid I can't seem to reproduce this. Does it happen with all video files or just some? It could be that you're trying to use a particularly large video file that's taking a long time to copy over? |
Me pasa en mi laptop y en la pc de la iglesia, tuve que volver a 2018.1 para el servicio ahi el video todo bien.
|
Porque no pedir al usuario si desea copiar el video o desea reproducir de la ruta original, así se ahorraría incluso espacio en disco. |
Just tried to reproduce this and I got the following error:
Just changing the copyFile method to something like the code below resolved it. Any reasons why the approach with the .flip() method is better, @berry120?
|
Ah, if that's the issue then it should be resolved by the above commit - see here for an identical problem: plasma-umass/doppio#497 (Long story short, it's Java 9 incompatibilities again, and I think Travis is still building with 9.) |
That seems to have resolved it, but feel free to open it again @Cyb3rG0D7 if you still experience issues. |
@ArvidNy To elaborate on why we're using buffers / the nio library in general - it (on all major systems) makes direct calls to the OS to copy / manipulate files. This makes it a lot faster than the old io approach, where bytes were read from a file into the VM, then back out to another file chunk by chunk. It's just a performance increase. There's no functional difference apart from that, but I'd like to avoid slowing things down if possible 👍 |
Gracias amigos, en la noche actualizo y lo usaré con la corrección del error. |
Siempre se queda en "Espere que se copie el video", tarda demasiado y hay que cancelar, este error es en 2019.0 la última nightly
The text was updated successfully, but these errors were encountered: