Mars160
Mars160
有个itchat-uos(好像是这个名字) 是用统信uos的微信封装的接口,可以用这个 一样的api
可以试试nplayer或者vlc
@ApolloRay Can you submit a PR? I'll be appreciate if you do that🥺🥺🥺 I can't wait to use the Ultra Fast SDXL model! But my try on your code is...
请过段时间再考虑合并,计划添加本地直连pg功能
~发现本来pg就可以使用unixsocket连接~ Reopen
@msycn > 求地址格式,感谢分享 看了一下并没有采用我的配置方式,而是直接在配置文件中添加了DSN字段 之前是: ```plaintext "database": { "type": "mysql", "host": "localhost", "port": 3306, "user": "XXXXXX", "password": "YYYYYY", "name": "alist", "db_file": "", "table_prefix": "alist_", "ssl_mode": "" }, ``` 现在变成: ```plaintext...
@msycn 查清楚了,需要在dsn中添加以下参数: ```plaintext ?charset=utf8mb4&parseTime=True&loc=Local ``` 即 ```plaintext "dsn": "XXXXXX@unix(/path/to/mysql.sock)/alist?charset=utf8mb4&parseTime=True&loc=Local" ```
@msycn 用户名密码等等你所需要的一切都在dsn里面 我的示例是不能直接用的,需要你自行替换一些内容 ```plaintext username[:password]@unix(/tmp/mysql.sock)/alist?charset=utf8mb4&parseTime=True&loc=Local ``` 写成自己的东西就是 ```plaintext //如果有密码 用户名:密码@unix(/tmp/mysql.sock)/数据库名?charset=utf8mb4&parseTime=True&loc=Local //如果没密码 用户名@unix(/tmp/mysql.sock)/数据库名?charset=utf8mb4&parseTime=True&loc=Local ``` 除去dsn,你的database配置里的其他内容没有问题
@Nirzak Just leave the dsn field in the configuration file alone and fill in the other fields (host, port, etc.) as usual
How to check whether those previews were generated?