国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女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免费国产视频| 国产精品露脸自拍| 奇米影视亚洲狠狠色| 99久久国产宗和精品1上映| 欧美一区二区三区综合| 国产啪精品视频| 国产精品裸体一区二区三区| 日韩欧美不卡在线| 久久久人成影片一区二区三区观看| 不卡av电影院| 国产一区视频在线| 激情六月丁香婷婷| 久久精品国产99国产精品澳门 | 国产免费一区视频观看免费| 国产精品色婷婷视频| 欧美综合第一页| 色999日韩欧美国产| 日本a在线免费观看| 91久久国产自产拍夜夜嗨| 久久天天躁狠狠躁夜夜躁2014| 黄色一级视频在线播放| 国产成人无码一二三区视频| 热久久精品免费视频| 色噜噜狠狠狠综合曰曰曰| 国产精品女人网站| 国产综合色一区二区三区| 国产精品日韩二区| 国内一区二区三区在线视频| 国产精品激情av在线播放| 蜜桃av噜噜一区二区三| 国产精品久久久久久av下载红粉 | 日韩一级免费看| 国产成人精品免高潮在线观看| 视频一区亚洲| 九九久久99| 欧美国产视频在线观看| 国产精品露脸自拍| 国产日韩在线视频| 一级做a爰片久久| 91av免费观看91av精品在线| 日本一区免费看| 久久久精品久久久久| 国内精品国产三级国产99| 欧美猛交免费看| 97精品在线观看| 日本高清不卡三区| 久久久久久久久久伊人| 妓院一钑片免看黄大片| 久久久久久艹| 欧美日韩一区在线播放| 欧美成人四级hd版| 91精品中国老女人| 奇米一区二区三区四区久久| 日本黄网站色大片免费观看| 国产精品美女久久久久av超清| 国产人妻人伦精品| 欧美一区二区视频在线| www.欧美精品一二三区| 国产视频一区二区三区四区 | 黄色大片在线免费看| 一区国产精品| 久久久久久久久久久久久国产| 黄色一级免费大片| 国产精品视频网址| www.欧美黄色| 欧美中文字幕在线观看| 亚洲欧美影院| 国产精品久久久久91| 97精品视频在线观看| 欧美日韩天天操| 亚洲中文字幕久久精品无码喷水| 青草成人免费视频| 欧美精品videofree1080p| 国产成人av网| 国产欧美在线观看| 日本在线精品视频| 久久91精品国产| 日韩在线播放av| 成人精品小视频| 欧美一级成年大片在线观看| 这里只有精品66| www国产亚洲精品久久网站| 成人免费观看视频在线观看| 欧美在线视频导航| 午夜视频久久久| 久久777国产线看观看精品| 久久伦理网站| 成人综合视频在线| 好吊色欧美一区二区三区视频| 日本欧洲国产一区二区| 久久久久久国产精品三级玉女聊斋| www.精品av.com| 久久精品xxx| 91精品久久久久久久久青青 | 久久琪琪电影院| 91九色单男在线观看| 国产欧美精品一区二区三区-老狼| 日韩精品视频在线观看视频| 亚洲一区二区自拍| 精品久久久久久中文字幕动漫| www.亚洲一区| 久久久在线视频| 国模吧一区二区| 欧美自拍大量在线观看| 日本中文字幕成人| 尤物一区二区三区| 久久99国产精品自在自在app| 久久99精品久久久久久久青青日本| 国产一区二区视频在线观看| 日本成熟性欧美| 亚洲天堂电影网| 久久久久久久久久久久久久久久久久av | 人妻无码一区二区三区四区| 久久99视频免费| 日韩视频精品在线| 久久综合九九| 国产精品香蕉国产| 韩国成人一区| 人人妻人人澡人人爽欧美一区双 | 欧美性受xxxx黑人猛交| 午夜免费福利小电影| 久99九色视频在线观看| 国产精品欧美在线| 国产成人精品免费久久久久 | 久激情内射婷内射蜜桃| 97免费在线视频| 国产精品一区二区欧美黑人喷潮水| 欧美极品日韩| 热99久久精品| 亚洲 欧美 日韩 国产综合 在线 | 欧美视频在线播放一区| 日本欧美视频在线观看| 午夜精品一区二区三区视频免费看| 九九热精品视频国产| 久久精品一区中文字幕| 久久精品国产一区二区三区不卡| 97免费视频观看| 久久久天堂国产精品| 国产极品精品在线观看| 91精品国产99久久久久久红楼| 国产精品一区二区久久精品| 国产视频999| 国产一区二区在线网站| 免费看日b视频| 国产乱人伦精品一区二区| 美日韩免费视频| 国产综合av在线| 国产熟女高潮视频| 国产伦精品一区二区三| 国产一区二区四区| 日本高清视频一区| 黄色激情在线视频| 精品少妇一区二区三区在线| 国产一级黄色录像片| 国产欧美日韩中文字幕| 国产精品永久免费| 国产中文字幕在线免费观看| 国内精品**久久毛片app| 国产在线精品一区二区中文| 欧美激情视频一区二区三区| 黄色影院一级片| 国产日韩一区二区| 国产精品自拍网| 久久人人看视频| 久久久成人精品一区二区三区| 国产精品久久久久久久久影视| 久久综合五月天| 一本色道久久综合亚洲二区三区 | 久久久人成影片一区二区三区| 国产精品99久久久久久人| 久久久久久www| 久久久久中文字幕2018| 国产精品成人va在线观看| 国产av不卡一区二区| 亚洲在线视频福利| 亚洲第一综合| 欧美亚洲一二三区| 欧美亚洲视频一区| 国模私拍视频一区| 成人av一级片| 久久黄色免费看| 久久久久久久久网| 在线观看福利一区| 日本精品性网站在线观看| 麻豆精品蜜桃一区二区三区| 99福利在线观看| 色噜噜狠狠狠综合曰曰曰88av| 国产精品区二区三区日本| 亚洲av综合色区| 精品www久久久久奶水| 国产美女永久无遮挡| 久久久亚洲精选| 国产精品久久久影院| 欧美久久精品一级黑人c片 | 国产精品久久久久久久久久久久久 | 国产精品国产亚洲精品看不卡| 91九色在线免费视频|