unbadfish

Results 12 issues of unbadfish

本地文件好像包含了几乎所有的有用信息,应该可以在可以接受的时间内逆推出歌曲id(~~吧?~~) 由于账号无法使用,希望能从MP3里恢复出歌单

有三个地方希望改进,希望能让软件更加方便:smile: 1. 按某个键 (比如` ;` ) 插入空行 2. 把打过轴的歌词与未打过的对齐,如:![lrc-layout](https://user-images.githubusercontent.com/61961263/106761905-3ebee400-6670-11eb-9dd5-11f04e5ea84b.png) 3. 可以用表示调试的标记代替箭头,如:![debug](https://user-images.githubusercontent.com/61961263/106761934-48484c00-6670-11eb-902a-9bba52ada923.png) https://github.com/magic-akari/lrc-maker/issues/33#issuecomment-771671976

enhancement
feature request

克隆仓库之后在 git bash 的窗口中执行以下操作 ``` Administrator@PC--20180114RUC MINGW64 /f/Script $ cd lrc-maker Administrator@PC--20180114RUC MINGW64 /f/Script/lrc-maker (master) $ npm i > [email protected] postinstall F:\Script\lrc-maker\node_modules\core-js > node -e "try{require('./postinstall')}catch(e){}" Thank you for using...

建议再增加一个“按单曲、歌单、专辑ID下载”的功能(网易好像只能读取公开歌单的数据) 希望能优化翻译的显示方式(如原文在前、译文在前等) 话说如果能指定歌曲ID的话下载成功率应该会高很多吧~

good-idea

【背诵全文】 # NetEase-id-geter 网易云歌单&专辑歌曲ID提取器 ## 使用方法 + mainway:输入歌单或专辑的网址等,对应关系如下 ```python in_search_dict = {'^.*?playlist.*?([0-9]+).*$': 'playlist', '^.*?album.*?([0-9]+).*$': 'album', '^list.*?([0-9]+).*$': 'playlist', '^p([0-9]+)$': 'playlist', '^a([0-9]+)$': 'album'} # ... While True: # ... for each_str in...

enhancement

![截图_2020-05-07_16-53-27_0](https://user-images.githubusercontent.com/61961263/81275247-f98b6880-9083-11ea-8a82-00fc8f122929.png) maybe you can use ◆ to mark tittles e.g. ◆ for h1 ◆◆ for h2 ◆◆◆ for h3 ◆◆◆ ____◆======or ◆◆◆◆ for h4 ◆◆◆ __◆◆======or ◆◆◆◆◆ for h5 ◆◆◆...

![截图_2020-05-07_16-37-30_0](https://user-images.githubusercontent.com/61961263/81273205-212d0180-9081-11ea-9c6f-699a94f72e59.png) If typora provides the API,you could mark the unsaved files and their panter folder(s) with another icon maybe you can use GREEN/BLUE icon for the saved ones,YELLOW/ORANGE/RAD icon for...

请问一下,ord()一个unicode字符,输出的范围是多少? 或者换种说法,最大的输出结果是多少位? 想写一个加密解密的脚本,在加密时指定一个字符,所有的ord()都加上该字符的,解密时必须输入正确字符才能得到有意义文件。但是我不清楚ord()的范围,网上也没有说法,所以来问一下

# Support non-BMP (Basic Multilingual Plane) characters by printing them in `\u6789\uabcd` sequence. ## Background: The standard RFC 8259 in https://datatracker.ietf.org/doc/html/rfc8259 (December 2017) clearly points out that... > To escape...

feature: Support output non-BMP (Basic Multilingual Plane) characters. Support them by printing them in `\u6789\uabcd` sequence. This feature helps to fit latest standard RFC 8259. Fixed Issue #783 Related works:...