国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

CS305程序代做、代寫Python程序語言
CS305程序代做、代寫Python程序語言

時間:2024-12-25  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



CS305 Computer Networks Project:
Remote Meeting
Introduction
Video meetings have become essential in today’s digital landscape, transforming how people
connect, collaborate, and communicate. With the rise of remote work, online learning, and global
partnerships, video meeting allows individuals and teams to interact across vast distances,
fostering real-time collaboration without the need for physical presence. The implementation of a
video meeting project relies heavily on core computer networking principles and protocols,
making it an ideal opportunity to consolidate and apply the knowledge gained throughout the
course. 
Requirements
In this project, you are required to construct a simple video meeting system in Python that
enables participants to communicate over the network using video, audio, and text in real time.
This project emphasizes building network frameworks and utilizing network protocols. The system
framework is divided into two parts: Client-Server (CS) and Peer-to-Peer (P2P). Implementing the
system with the CS framework forms the basis component, while implementing it with the P2P
framework is an optional bonus (details provided later). Meanwhile, a video meeting system relies
on several key network protocols that enable real-time audio, video, and text communication,
such as TCP, UDP, SIP, RTP, RTCP, STUN, and TURN. These protocols facilitate the smooth
transmission of media streams, ensure security, and manage connectivity between participants. 
Determining how to choose and implement these protocols is the primary challenge you will address.
Alternatively, you have the option to design your own protocol.
Basic Part (85%)
In the basic part, you are required to implement a video meeting system based on Client-Server
(CS) framework. In this system, the server manages and records multiple conference rooms and
user operations, while users can act as clients to communicate with the server by creating,
joining, and exiting meetings.
In a detail, functions of server:
Manage and record meeting statuses (such as creating and terminating meetings) and track
client actions (such as joining and leaving).
Forward client data to facilitate communication among participants.
Functions of client (Clients are divided into creators and participants):
Creators: request to create and terminate meeting.
Participant: join and exit meetings.
All clients: communicate with the server.
In each meeting, all users can send video, audio, and text messages at the same time. The server
is responsible for handling the broadcast of this information and ensuring that each client can
correctly receive and display content from other users. The specific requirements are as follows:
Basic transmission function (25%)
Text transmission(such as chat messages) function (5%)
Each client can send the text messages to server.
The server forwards the text messages to all other participants in the meeting.
The client should display all text messages from senders.
Each message should include the sender's name and the time-stamp to help
participants quickly identify the source of the information.
Video transmission function (10%)
Each user can choose to turn their camera on or off. Once the camera is activated, the
client should send the video stream to the server.
The server forwards the video stream to all other participants in the meeting.
The client should display the screens of all users who have their cameras turned on and
can show real-time video from multiple users using a split-screen or similar methods.
Audio transmission function (10%)
Each user can choose to turn their microphone on or off. Once the microphone is
activated, the client should send the audio stream to the server.
The server must receive and mix the audio streams from multiple users, distributing the
combined audio stream to all participants.
The client should play audio from other users and be capable of handling the play of
multiple audio streams simultaneously.
Note: Streaming data processing is a difficult aspect of the project. Grades will be assigned based on
performance, with smoother display and play resulting in higher scores during the presentation.
Meeting function(60%)
Single meeting mode (20%)
In this mode, two client will interact with a server: one client requests to create a meeting and
joins it, while the other client also joins the same meeting.
Create a Meeting (5 points): The client can send a request to the server to create a new
meeting. Once the meeting is successfully created, other users will be allowed to join.
Join a Meeting (5 points): The client can view a list of currently available meetings and
choose to join any of them. After joining, the client will participate in the meeting.
Exit the Meeting (5 points): The client can exit the current meeting at any time. Leaving the
meeting will not affect the ability of other client to continue participating.
Cancel the Meeting (5 points): The creator of the meeting can cancel it at any time. Once
the meeting is canceled, no new clients will be able to join, and those already in the meeting
will be removed. Additionally, the meeting will automatically end when all participants,
including the creator, have exited.
Complex Meeting Scenarios (40%)
1. Multiple participants participate in a meeting (20%). The meeting system must support
the simultaneous participation of multiple clients(at least 3 clients) to ensure smooth
communication through audio, video, and text. This extended version of the single meeting
mode emphasizes that each meeting must be capable of supporting multiple client
participants (tips: asynchronous io or multi-thread).
2. Multiple conferences in parallel (20%). The server should support multiple meetings
occurring at the same time. The founders of each meeting can be different, allowing various
users to create independent meetings. The specific requirements are as follows:
Independent Meeting Life Cycle (10%): The start and end of each meeting should be
independent of one another, ensuring that the status of one meeting does not affect
other meetings. All meetings should be able to proceed normally.
Content Isolation (10%): The content of each meeting should be completely isolated
from others; no meeting should receive audio or video data from other conferences.
The server must ensure that audio and video streams are transmitted exclusively
between users in the same meeting, thereby maintaining the privacy and independence
of each conference.
Bonus Part (20%)
In the bonus part, you are required to implement a video meeting system based on Peer-to-Peer
(P2P) framework. This system is similar to the Client-Server (CS) system, but in this case, the
server's role is limited to managing and recording meetings without forwarding data. The
specific requirements are as follows:
Two clients scenarios(10%): The client can request to create a meeting. In this meeting, two
clients communicate directly with each other.
Mode switch(10%): The server can determine the most suitable mode for different meetings
and switch accordingly between Client-Server (CS) and Peer-to-Peer (P2P) (For instance,
when two clients are in a meeting, it operates in P2P mode, and when three clients are in a
meeting, it switches to CS mode.).
Note: The bonus part is relatively loose, and you can do it yourself. But at the same time, how to show
that your data is not forwarded by server in P2P scenarios and whether the mode is switched in
different scenarios are also issues you need to consider.
Presentation (5%)
You will present your project in the lab class after December 20. Each group has a maximum of 
10 minutes to showcase their work. TAs may ask questions about your project during the
presentation, so a thorough understanding of your implemented functions is essential.
Provided Code
We have provided demo code for you to further understand the fucntions of server and client, as
well as the system structure (see Demo for Video Conference). It includes four files 
conf_client.py , conf_server.py , config.py , util.py . 
Note that this demo is just a reference. You don't need to follow it exactly and are encouraged
to implement a more efficient video conference service.
conf_client.py
There is a ConferenceClient class, with necessary fields to record client status or meeting
information. Following are some necessary function for client, each with description for its
functionality. All a client need to do are create connections, and do transmission (sending and
receiving).
In the start() method, we have provided a simple command line user interface to execute
certain function. But we won't mind that some of you can provide a better GUI for your clients.
conf_server.py
This is a simple demo for server with original implementation of asynchronized IO ( asyncio ).
There are two classes MainServer and ConferenceServer for possible multi-conference
implementation, where ConferenceServer handles clients within a single conference and 
MainConference manages multiple conference by handling multiple instances of 
ConferenceServer .
Note that any conference (with mode C-S or P2P) should be managed by server, while the
data transmission among clients depends on the mode of conference.
config.py
This file stores some necessary configuration of the conference service, including but not limited
to the service ports, server's IP address and other parameters to control the stream data and its
transmission.
util.py
This file includes some useful functions for data capture and image processing.

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



 

掃一掃在手機打開當前頁
  • 上一篇:CS209A代做、Java程序設計代寫
  • 下一篇:URBA6006代寫、Java/c++編程語言代做
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    色综合久久久久无码专区| 91久久久久久久久| 日本一区视频在线观看| 国产乱人伦精品一区二区三区| 欧美激情中文字幕在线| 97国产精品久久| 亚洲第一页在线视频| 国产女人精品视频| 精品不卡一区二区三区| 国产专区欧美专区| 欧美精品日韩www.p站| 精品一区2区三区| 国产精品久久久久一区二区| 欧美国产二区| 日韩手机在线观看视频| 国产999在线| 亚洲欧洲精品在线观看| 亚洲综合自拍一区| 午夜精品www| 欧美亚洲成人精品| 欧美在线视频网| 国产欧美日韩亚洲精品| 91精品视频在线免费观看| 9191国产视频| 久久九九亚洲综合| 久久综合电影一区| 亚洲a级在线观看| 少妇熟女一区二区| 欧美午夜性视频| 国产精品自拍片| 久久久久久欧美| 久久成人国产精品| 亚洲 中文字幕 日韩 无码| 奇米888一区二区三区| 国产一区二区自拍| 99久久自偷自偷国产精品不卡 | 久久久久久久9| 国产精品美女黄网| 精品久久蜜桃| 色综合视频二区偷拍在线| 欧美日韩亚洲在线| 91免费在线视频| 久久久91精品| 亚洲国产欧洲综合997久久| 日韩免费在线视频| 成人欧美一区二区| 久久精品免费电影| 亚洲欧洲精品一区二区三区波多野1战4| 日韩免费在线视频| av动漫免费看| 国产精品视频yy9099| 亚洲 国产 欧美一区| 国精产品一区一区三区有限在线| 国产日韩精品在线播放| 久久黄色免费看| 久久777国产线看观看精品| 日韩精品免费一区| 99在线免费观看视频| 国产精品高潮粉嫩av| 日本精品免费在线观看| 99久久国产免费免费| 操91在线视频| 欧美日韩亚洲免费| 久久精品日产第一区二区三区精品版 | 青青草视频在线视频| 91精品国产91久久久久| 不卡av电影院| 黄频视频在线观看| 九九热只有这里有精品| 亚洲日本无吗高清不卡| 国产一级做a爰片久久毛片男| 久久久久久久999精品视频| 亚洲成人第一| 国产欧美一区二区三区视频| 日韩中文字幕在线| 亚洲免费视频一区| 国产精品在线看| 久久99亚洲精品| 国产一区视频在线| 国产精品国产亚洲精品看不卡15 | 免费拍拍拍网站| 久久久成人精品| 日韩精品资源| 久久久久久久久久久久久国产 | 成人中文字幕在线观看| 久久成人av网站| 黄色一级二级三级| 国产精品视频白浆免费视频| 青青草免费在线视频观看| 久草免费福利在线| 青草青草久热精品视频在线网站| 国产成人一区二区三区| 欧美一区二区大胆人体摄影专业网站 | 国产美女久久久| 精品国产乱码久久久久| 国产精品99久久免费黑人人妻| 色播五月综合| 久久久精品亚洲| 人妻无码视频一区二区三区| 久久久久久久999| 青青草视频在线视频| 少妇精69xxtheporn| 日本国产高清不卡| 色偷偷888欧美精品久久久| 日本不卡在线观看视频| 北条麻妃一区二区三区中文字幕| 欧美日本韩国在线| 精品国产一区二区三区在线| 成人黄色一区二区| 动漫3d精品一区二区三区| 不卡影院一区二区| 日韩中文字幕在线视频观看| 播播国产欧美激情| 欧美一区深夜视频| 久久亚洲影音av资源网| 国产精品亚洲天堂| 日本一区二区三区四区五区六区| 久久久久亚洲精品国产| 欧美日韩国产一二| 最新中文字幕久久| 久久精精品视频| 免费国产在线精品一区二区三区| 欧美日韩成人黄色| 91国产中文字幕| 人偷久久久久久久偷女厕 | 午夜欧美一区二区三区免费观看| 久久露脸国产精品| 精品日本一区二区三区| 色综合色综合网色综合| 久久久www免费人成黑人精品| 欧美图片激情小说| 欧美激情综合色| www.xxxx精品| 波多野结衣久草一区| 欧美视频观看一区| 欧美激情喷水视频| 久99久视频| 国产欧美精品日韩精品| 日韩成人在线资源| 色综合久久精品亚洲国产 | 国产精品视频久| 91精品91久久久中77777老牛| 欧美极品色图| 日韩一区二区三区资源 | 青草成人免费视频| 一区二区在线不卡| 久久精品视频va| 97免费中文视频在线观看| 欧美不卡三区| 日本一区视频在线| 欧美激情精品久久久| 久久久久久久久91| 99国产在线| 国产欧美综合精品一区二区| 人人爽久久涩噜噜噜网站| 一道本在线观看视频| 国产精品视频自拍| 国产高清一区视频| 99精品国产一区二区| 国产日本欧美一区二区三区| 久久久一本二本三本| 欧美亚洲视频在线观看| 91精品视频在线免费观看| 亚洲一区三区电影在线观看| 日韩精品资源| 久久久久久久久久久成人| 亚洲熟女乱色一区二区三区| 免费人成在线观看视频播放| 欧洲亚洲一区二区三区四区五区| 久久久国产精品亚洲一区| 欧美少妇一区二区三区| 亚洲最大的av网站| 国产精品视频专区| 国产精品91一区| 日韩av色在线| 国产精品成人一区二区三区 | 91av成人在线| 午夜精品久久久久久久久久久久 | 日本a级片在线观看| 成人精品视频99在线观看免费| 色与欲影视天天看综合网| 国产欧美久久久久| 日韩免费观看av| 国产成人自拍视频在线观看| 欧美性受xxxx黑人猛交| 国产三级精品在线不卡| 免费在线a视频| 国产中文字幕91| 蜜桃成人在线| 久久99热这里只有精品国产| 亚洲欧洲另类精品久久综合| 91久久久久久国产精品| 久久久久久久一| 国产一区二区在线免费| 韩日精品中文字幕| 欧美又大又粗又长| 欧洲精品在线播放| 日韩女在线观看| 天天操天天干天天玩| 色综合久久久久无码专区|