-
Notifications
You must be signed in to change notification settings - Fork 71
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
Music videos not playing again - possible fix #95
Comments
gitman0: your fix worked for me. Good catch! |
gitman0, Thanks |
Update: I performed a reinstall of Helix and all is good. (must not have deleted all v5 files) I also found the method to debugging within the youtube addon. |
good to hear, mark79 and mrjwm2! |
Here's a new set of edits, friends. More dollar sign issues are being accounted for here, specifically the dollar sign being used in the local object/var names:
|
Thanks gitman0, I will test and let you know. |
working just fine with the changes |
great. any chance you had a video that wasn't working that is now working after these latest changes? thanks, |
No not this edit. But the previous edit fixed Vevo. I made a log before and after this change, I am trying to see if I can figure out what does what. :) Would I be right that your new edit makes the function always replace $ with S whenever identified? Date: Wed, 4 Feb 2015 13:32:52 -0800 great. any chance you had a video that wasn't working that is now working after these latest changes? thanks, — |
the first edit was for the main function name, but the last set of edits was specifically for the function calls within the main function. it seemed totally random whether Youtube handed out the code with dollar signs in them or not. like you, i was able to fix music videos after the first edit, but last week i experienced two nonconsecutive days in which it did not work, and the reason was the dollar sign character again but this time within the function. this is what i saw in the debug log prior to the last edits:
|
I found that music videos were not playing again, and again I am seeing signature extraction algorithm failing to compile in the debug log. I found that the
'$'
character was not being properly replaced with'_S_'
in the main function name when piecing algorithm together. It does this in the _getFullAlgoCode function, but not where it concats everything together. I made the following edit and it appears to have resolved my issues. Can anyone else confirm?This is the error I was seeing in the debug log. I added some extra statements to get the specific error message:
I'm not sure what causes some videos to have a signature extraction function names with a dollar sign in them, it seems random. But I'm not sure why others aren't reporting the same thing more frequently.
The text was updated successfully, but these errors were encountered: