Kevin

Results 7 issues of Kevin

能否在横竖屏切换时不改变显示窗口的大小

关于第一次作业第二大题的第一小题 1. 给出由 LODON(伦敦)的厂商供给 LODON 的工程的产品号。 ![image-20210225122440764](https://gitee.com/kevinzhang1999/my-picture/raw/master/uPic/image-20210225122440764-1614227080873.png) ![image-20210225122505686](https://gitee.com/kevinzhang1999/my-picture/raw/master/uPic/image-20210225122505686-1614227105800.png) `ΠSNO,PNO(SPJ)÷ΠSNO(σCITY=LONDON(S))` 这里是否漏掉了 供给 London 的条件

![image-20210225122133853](https://gitee.com/kevinzhang1999/my-picture/raw/master/uPic/image-20210225122133853-1614226893972.png)

the output video's size transform isn't evident and smooth

here is my code ```python with AudioStream(num_output_channels=2, output_device_name=AudioStream.default_output_device_name, buffer_size=20000) as out: with AudioStream( input_device_name=AudioStream.input_device_names[2], buffer_size=20000, sample_rate=TARGET_SAMPLE_RATE) as ins: try: while True: print("reading...") # 88-882 buffer= ins.read(1024) buffer = board.process(buffer,sample_rate=SAMPLE_RATE) out.write(buffer,sample_rate=TARGET_SAMPLE_RATE)...