06 2021 档案

摘要:1. 进入Dev Tools 2. 将下列内容粘贴过去 PUT /image_search_image { "settings": { "number_of_shards": 1, "number_of_replicas": 1 }, "mappings": { "properties": { "i 阅读全文
posted @ 2021-06-25 10:29 牛郎 阅读(1161) 评论(0) 推荐(0)
摘要:常规操作: https://blog.csdn.net/qq_43076825/article/details/108404335 覆盖更新(指定id覆盖) https://www.coder.work/article/341134 阅读全文
posted @ 2021-06-21 11:26 牛郎 阅读(857) 评论(0) 推荐(0)
摘要:import time import random from concurrent.futures import ThreadPoolExecutor from multiprocessing import Process, Pool def worker(n, index): print('开始第 阅读全文
posted @ 2021-06-15 17:53 牛郎 阅读(5766) 评论(0) 推荐(0)
摘要:视频抽帧: ffmpeg -i ./video/test.mp4 -r f -q:v 2 -f image2 ./images/%08d.000000.jpg #(f为抽帧频率,若完全抽帧去掉 -r f 即可) 视频提取音频: ffmpeg -i 531.mov -vn lala.mp3 多照片合成 阅读全文
posted @ 2021-06-01 15:42 牛郎 阅读(209) 评论(0) 推荐(0)