Ejemplo n.º 1
0
def app_whu_login():
    ret = login()
    text = "登录成功"
    if (ret == 0):
        text = "登录失败"
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 2
0
def app_port(num):
    ret = find_port(num)
    text = '未找到当前用户进程占用' + num + '端口'
    if ret:
        text = ''
        for item in ret:
            text += '程序' + str(item[0]) + '占用端口' + num + '其PID为' + str(item[1])
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 3
0
def app_kill_port(num):
    ret = find_port(num)
    text = "执行成功"
    cmd = "kill -9 "
    if ret:
        for item in ret:
            os.system(cmd + item[1])
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 4
0
def app_log_in(id):
    text = '请对准摄像头'
    tts(text)
    play_audio_file('res.wav')
    capture = cv2.VideoCapture(0)
    i = 10
    ret, frame = capture.read()
    while i > 0:
        ret, frame = capture.read()
        cv2.imwrite('./pic/temp.jpg', frame)
        i -= 1
    capture.release()
    x_appid = '5e55394d'
    # 接口密钥(webapi类型应用开通人脸比对服务后,控制台--我的应用---人脸比对---相应服务的apikey)
    api_key = '1c47845927066ea9f01187383bdfe6c9'
    # webapi接口地址
    url = 'http://api.xfyun.cn/v1/service/v1/image_identify/face_verification'
    # 组装http请求头
    x_time = str(int(time.time()))
    param = {'auto_rotate': True}
    param = json.dumps(param)
    x_param = base64.b64encode(param.encode('utf-8'))
    m2 = hashlib.md5()
    m2.update(str(api_key + x_time + str(x_param, 'utf-8')).encode('utf-8'))
    x_checksum = m2.hexdigest()
    x_header = {
        'X-Appid': x_appid,
        'X-CurTime': x_time,
        'X-CheckSum': x_checksum,
        'X-Param': x_param,
    }
    # 对图片一和图片二base64编码
    with open('./pic/' + str(id) + '.jpg', 'rb') as f:
        f1 = f.read()
    with open(r'./pic/temp.jpg', 'rb') as f:
        f2 = f.read()
    f1_base64 = str(base64.b64encode(f1), 'utf-8')
    f2_base64 = str(base64.b64encode(f2), 'utf-8')
    data = {
        'first_image': f1_base64,
        'second_image': f2_base64,
    }
    req = requests.post(url, data=data, headers=x_header)
    result = str(req.content, 'utf-8')
    print(result
          )  # 错误码链接:https://www.xfyun.cn/document/error-code (code返回错误码时必看)
    text = '登录失败'
    if (result['data'] > 0.9):
        text = '登录成功'
    tts(text)
    play_audio_file('res.wav')

    return
Ejemplo n.º 5
0
def app_weather(city):
    rb = requests.get('http://wthrcdn.etouch.cn/weather_mini?city=' + city)
    text = ''
    try:
        rb = rb.json()
        rb = rb['data']['forecast'][0]
        fengli = re.findall(r'\d', rb['fengli'])
        text = '今天' + city + rb['type'] + ',最' + rb['high'] + ',最' + rb[
            'low'] + ',风向' + rb['fengxiang'] + ',风力' + str(fengli[0]) + '级'
        print(text)
    except:
        text = '查询失败'
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 6
0
def app_reg_face(id):
    text = '请对准摄像头'
    tts(text)
    play_audio_file('res.wav')
    capture = cv2.VideoCapture(0)
    i = 10
    ret, frame = capture.read()
    while i > 0:
        ret, frame = capture.read()
        cv2.imwrite('./pic/' + str(id) + '.jpg', frame)
        i -= 1
    capture.release()
    text = '拍摄成功'
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 7
0
def app_movie():
    text = get_movie()
    tts(text)
    play_audio_file('res.wav')
Ejemplo n.º 8
0
def app_joke():
    with open('joke.txt', 'r') as f:
        lines = f.readlines()
        index = random.sample(range(0, len(lines)), 1)
        tts(lines[index[0]])
        play_audio_file('res.wav')