Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
[Question] I have a question about youtube-dl #18275
Comments
|
This has nothing to do with youtube-dl and depends on how you execute external process or your UI framework does. Check it's doc. |
|
It is nothing complex, i just send the command to the cmd with the gui, im not using any framework. commandToExecute = "cmd.exe /c start "+ YOUTUBEDLDIRECTORY + ecttt.... I will try to find something related to windows console then, thank you ! |
|
Do you even aware what does your command mean? You're running
and runs youtube-dl.exe in that window. |
|
My friend helped me and i just learned a very very basic java language :P but yeah i never noticed this and i will try it directly |
|
i just solved addeding /min after /start: commandToExecute = "cmd.exe /c start /min "+ YOUTUBEDLDIRECTORY + ecttt.... Also i cant run youtube-dl.exe directly i get some weird error probabily because the gui is scripted to work with this method, anyway thank you ! |
Im using my custom gui for send comands to youtube-dl and im using a method for multiple download (Select 20 links and auto download it 1 by 1).
So i would like to know if is possible to make youtube-dl start in background or aleast not going foreground at the current app or anything else im using in that moment because the console keep popup every time a new download comand is sent to it
thank you!