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.
bliptv, a small problem #1671
bliptv, a small problem #1671
Comments
|
Could you post the urls that fail? |
|
Dear sir, I think there is no need to provide the URL. There has no problem when I run your program in my computer, except for the UI problem occasionally. The UI problem maybe caused by python language environment or the way of calling program with C language. |
|
@leachong Please post any blip.tv URL that fails. Otherwise, we cannot find the root cause of the problem you're experiencing. I'm not sure what you mean by |
|
Oh!!!! |
|
I'm closing this then, if you find a any other problem or have any suggestion for making the integration of youtube-dl easier, feel free to open a new issue. |
In this file: extractor/bliptv.py
This code: upload_date = datetime.datetime.strptime(data['datestamp'], '%m-%d-%y %H:%M%p').strftime('%Y%m%d')
Sometimes will pops up the error info: TypeError: attribute of type 'NoneType' is not callable
I feel those insignificant problem can be ignored. I'm not familiar with python, so i did these:
upload_date = None;
try:
upload_date = datetime.datetime.strptime(data['datestamp'], '%m-%d-%y %H:%M%p').strftime('%Y%m%d')
except Exception:
upload_date = "";
in addition, I'm a UI Developer, i wish the project could package a Library which only return data. When i call the python in the winform, it always pops some mistake, and it will not in the python Gui.