Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | yt_data_extract: parse mimeType field for codecs | James Taylor | 2020-02-01 | 1 | -0/+27 |
| | | | | the youtube-dl formats table doesn't have all the necessary information | ||||
* | Fix signature decryption. | James Taylor | 2020-01-24 | 1 | -1/+1 |
| | | | | | | | | The function body regex was capturing some unrelated new code before the actual function body. Example: `function(a){a=a.split("");var b=[function(c,d){d=(d%c.length+c.length)%c.length;c.splice(-d).reverse().forEach(function(e){return c.unshift(e)}` If you look closely, the closing bracket doesn't match the opening one. I have added `{` to the `[^\}]+` part to make sure it only captures matching brackets. Additionally, I've added `return a\.join\(""\)` to the end for good measure. | ||||
* | Fix regression: date extraction broken. Move constants to correct file in ↵ | James Taylor | 2019-12-20 | 1 | -1/+0 |
| | | | | yt_data_extract | ||||
* | Extraction: Move non-stateful signature decryption functionality into ↵ | James Taylor | 2019-12-19 | 1 | -0/+96 |
| | | | | yt_data_extract | ||||
* | Extraction: Move stuff around in files and put underscores in front of ↵ | James Taylor | 2019-12-19 | 1 | -27/+27 |
| | | | | | | internal helper function names Move get_captions_url in watch_extraction to bottom next to other exported, public functions | ||||
* | Extraction: Split yt_data_extract.py into multiple files | James Taylor | 2019-12-19 | 1 | -0/+449 |