├── .DS_Store ├── .gitignore ├── .idea ├── .name ├── CNProject.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Client.py ├── Client.pyc ├── ClientLauncher.py ├── Pseudocode.docx ├── README.md ├── RtpPacket.py ├── RtpPacket.pyc ├── Server.py ├── ServerWorker.py ├── ServerWorker.pyc ├── Socket-Prog-Video-Stream-Assignment-v7.pdf ├── TeamReport.docx ├── Video Stream Programming Report_Hongyi Guo.docx ├── VideoStream.py ├── VideoStream.pyc ├── cdn ppt.pptx ├── test.sh ├── video.mjpeg ├── video3.mjpeg └── videoClip.mov /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .idea 3 | .dist -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | CNProject -------------------------------------------------------------------------------- /.idea/CNProject.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.idea/CNProject.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Client.py -------------------------------------------------------------------------------- /Client.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Client.pyc -------------------------------------------------------------------------------- /ClientLauncher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/ClientLauncher.py -------------------------------------------------------------------------------- /Pseudocode.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Pseudocode.docx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/README.md -------------------------------------------------------------------------------- /RtpPacket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/RtpPacket.py -------------------------------------------------------------------------------- /RtpPacket.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/RtpPacket.pyc -------------------------------------------------------------------------------- /Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Server.py -------------------------------------------------------------------------------- /ServerWorker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/ServerWorker.py -------------------------------------------------------------------------------- /ServerWorker.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/ServerWorker.pyc -------------------------------------------------------------------------------- /Socket-Prog-Video-Stream-Assignment-v7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Socket-Prog-Video-Stream-Assignment-v7.pdf -------------------------------------------------------------------------------- /TeamReport.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/TeamReport.docx -------------------------------------------------------------------------------- /Video Stream Programming Report_Hongyi Guo.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/Video Stream Programming Report_Hongyi Guo.docx -------------------------------------------------------------------------------- /VideoStream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/VideoStream.py -------------------------------------------------------------------------------- /VideoStream.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/VideoStream.pyc -------------------------------------------------------------------------------- /cdn ppt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/cdn ppt.pptx -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/test.sh -------------------------------------------------------------------------------- /video.mjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/video.mjpeg -------------------------------------------------------------------------------- /video3.mjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/video3.mjpeg -------------------------------------------------------------------------------- /videoClip.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TibbersDriveMustang/Video-Streaming-Server-and-Client/HEAD/videoClip.mov --------------------------------------------------------------------------------