ffprobe 获取视频各项属性源信息

ffprobe -v error -show_format -show_streams -show_programs -show_chapters -show_private_data -print_format json your-video.mp4 简化输出一些常用的信息: ffprobe -v error -select_streams v:0 -show_format -show_entries stream=height,width -of csv=s=x:p=0 -print_format json your-video.mp4 将结果输出到文件,在命令后添加 > meta.json 输出示例: { "programs": [ ], "streams": [ { "width": 1920, "height": 1080 }

ChatGPT提示词-写话剧脚本

Write a Broadway stage play. A normal person named John learns how to use ChatGPT to answer many kinds of questions. 2/3rds of the time he gets real answers. 1/3rd of the time, ChatGPT lectures John on how he is sexist and racist. Provide detailed dialog, including John's inner thoughts. In the end, John breaks down under the mental strain of being called bad and tries to put himself out

AWS Chalice 为Lambda项目添加环境变量

参考 官方文档,在 .chalice 的配置文件(config.json)中, 通过指定 environment_variables 的键值来添加运行时环境变量。 示例: { "version": "2.0", "app_name": "app", "environment_variables": { "SHARED_CONFIG": "foo", "OTHER_CONFIG": "from-top" }, "stages": { "dev": { "environment_variables": { "TABLE_NAME":

Next.js 静态站如何部署在子路径

export 的静态站文件可以直接部署到网站根目录。若需要部署到子路径如何实现? 例如希望部署到 /foo 路径,App访问的首页网址是 https://example.com/foo 通过在 next.config.js 文件中为项目添加一

AWS Lambda 添加字体依赖项

准备文件将字体文件放在名称为 fonts 的文件夹中 压缩打包成 .zip 文件。 部署 然后通过Layer 的方式部署到 Lambda 中。 在 Lambda 函数运行时,字体文件将会被解压缩释放到