-
-
Notifications
You must be signed in to change notification settings - Fork 7
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
keep downloading file even if vlc is closed. #239
Comments
This could be done but I think this is multilayered problem. Partial files are considered broken, although VLC can read through them.
Conclusion:The only way i see this is to write both a file and pipe the data, either by manually deleting the file once you don't need it or always keeping the same file (so it's overwritten once you start a new download) |
wow this is complicated its beyond my understanding . why not use a tiny static file server for the file on disk and serve that file to vlc this way you might avoid having to start another process. As for user intention or consent , since the default is to save file to disk example C:/downloads , why not attached a flag to --path-vlc this will save to disk and start http server and send url to vlc. you would only need to just open http server address http://localhost:8888/$file to stream. now even if the http server has been terminated the xdccjs downloading would still continue until user cancels
this would be a two process sounds complicated and expansive, I think its fast to just use a static server to serve from folder. this is all very interesting |
You can already do that without any file server or addition to xdccJS
This is because i was looking for a more global solution that would work with any program, not just VLC.
This is kinda the same reason as above and also a matter of choice:
|
the & in cmd will wait until download has completed only after that it will start vlc streaming
this works perfectly without vlc everything working good.
on some irc servers users have to be on a second channel to download how would i add that second channel
many thanks the profile saving is working again ! |
That's the precise reason i said windows user need git bash. the default cmd can only run commands one after another.
documentation says |
thanks for clearing that, everything is working no issues to report. great work done many thanks. |
Originally posted by @omgbox in #229 (comment)
Solution: #239 (comment)
keep downloading file even if vlc socket is closed . its not really important but would be nice as not to restart the same download.
The text was updated successfully, but these errors were encountered: