-
-
Notifications
You must be signed in to change notification settings - Fork 755
Bug fix related to video speed #3273
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
base: master
Are you sure you want to change the base?
Conversation
…less the user switch on the "force speed on music"
|
hi and thank you so much @zFishStick Regex: I avoid the extra characters |
|
Hellooo @ImprovedTube , happy to help! For the issue you mentioned (#3272) I didn't get the mention, cause there are separate operations. Hope you can clarify so i can help you :) Have a good day! |
|
Ok done @ImprovedTube ! Probably you were referring to this regex: music_tags: new RegExp([
', (lyrics|remix|song|music|AMV|theme song|full song),',
'\\(Musical Genre\\)',
', jazz',
', reggae'
].join('|'), 'i'),I modified it a bit, and now it's like this music_tags: new RegExp([
'\\b(lyrics|remix|song|music|AMV|theme song|full song)\\b',
'\\(Musical Genre\\)',
'\\bjazz\\b',
'\\breggae\\b'
].join('|'), 'i'),I removed the |
|
hi! :) it is a great exercise that you started all this. Sorry,the original code of this feature is so unnecessarily dense /overwhelming. Besides that, the original Regex Literals are shorter and easier without \, so it its hard to decide what to do. |
|
I see, yeah i moved all the regex in About issue #3260 , doesn't work yet? When i tested it everything was working fine like i mentioned in my first comment (Point 3 of the list). I can give it another look in case :) |
|
@ImprovedTube I found the issue! Tonight i will change a bit the function, probably it has been a change of the extension which may have changed the speed behaviour. I'm already working on it, i will update you! :) |
|
@ImprovedTube I just managed to solve the issue! I made a pull request where i did the following changes:
|
Related to bug #3260 , i made some huge changes the function ImprovedTube.playerPlaybackSpeed .:
2.2 I should have cover all the possible scenarios about enabling/disabling the speed button (even change video from music to normal), moving the slider with both enabled/disabled button, you will find out ;))
Hope these changes can be of help <3