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.
iOS Application use youtube-dl #8879
Comments
|
Could you run youtube-dl directly in a shell? (In a terminal app or SSH into your device) For example:
If there's no
|
|
@yan12125 打开了verbose,输出信息如下 (The output goes as following with the verbose flag) 关闭verbose时的输出如下(And without the verbose flag, outputs are) Edit by @yan12125: Add English translations |
|
Error messages are printed to STDOUT. Could you catch the content of STDOUT? Also, please use English so that other developers can understand the situation. |
|
Sorry, it should be STDERR but not STDOUT. |
|
@yan12125 , thanks for your patience, i got some error messages, such as:
|
|
I guess you are using https://github.com/pybee/Python-iOS-template? Here's an excerpt from https://raw.githubusercontent.com/pybee/Python-iOS-support/master/patch/Python/Python.patch:
And seems Without a functional
If all of the above are tolerable, working around incomplete If you are willing to help, the first step is changing the following line in
to:
|
|
Yes, i referred to the project to embed python, and i used his "Python-iOS-support" framework to develop my app.
|
|
There are several discussions about
NOTE: With this option, HTTPS is as insecure as plain HTTP. |
|
@yan12125 , thanks a lot, 'nocheckcertificate' option solved the problem! |
|
Note that |
Hi, i'm developing a iOS app to download videos. Now, python3 has been embedded in my iOS project, and i can call python function correctly use C method in '.m' file.
I had downloaded youtube-dl-2016.03.14 source to my workspace, and i fetched youtube_dl directory to my project. When i used this code(below) to call youtube_dl module, script died with no error?
Then, i traced script running, i found: script died or stopped, when execute "merger = FFmpegMergerPP(self)" in YoutubeDL.py.