├── - ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README(by ktsiakas).md ├── README.md ├── README.txt ├── TEST ├── TODO.txt ├── __init__.py └── dist ├── client ├── __init__.py ├── adaptation │ ├── __init__.py │ ├── adaptation.py │ ├── basic_dash.py │ ├── basic_dash2.py │ ├── netflix_dash.py │ └── weighted_dash.py ├── buffer_test.py ├── config_dash.py ├── configure_log_file.py ├── dash_buffer.py ├── dash_client.py ├── ping.py ├── read_mpd.py └── stop_watch.py ├── sample_mpd ├── BigBuckBunny_4s.mpd ├── OfForestAndMen_4s.mpd ├── TheSwissAccount_4s.mpd └── Valkaama_4s.mpd └── server ├── 404.html ├── ThrottleServer.py ├── bandwidth_changer.py ├── code_thiago.py ├── dash_server.py ├── list.html ├── list_directory.py ├── list_filesize.py ├── media ├── mpd │ └── x4ukwHdACDw.mpd └── x4ukwHdACDw │ └── x4ukwHdACDw_file_size.txt ├── mpd └── index.html ├── parserXml.py ├── segment_size_x4ukwHdACDw.txt └── speed_log.txt /-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/- -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/LICENSE -------------------------------------------------------------------------------- /README(by ktsiakas).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/README(by ktsiakas).md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/README.txt -------------------------------------------------------------------------------- /TEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/TEST -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/TODO.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/client/adaptation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/client/adaptation/adaptation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/adaptation/adaptation.py -------------------------------------------------------------------------------- /dist/client/adaptation/basic_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/adaptation/basic_dash.py -------------------------------------------------------------------------------- /dist/client/adaptation/basic_dash2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/adaptation/basic_dash2.py -------------------------------------------------------------------------------- /dist/client/adaptation/netflix_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/adaptation/netflix_dash.py -------------------------------------------------------------------------------- /dist/client/adaptation/weighted_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/adaptation/weighted_dash.py -------------------------------------------------------------------------------- /dist/client/buffer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/buffer_test.py -------------------------------------------------------------------------------- /dist/client/config_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/config_dash.py -------------------------------------------------------------------------------- /dist/client/configure_log_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/configure_log_file.py -------------------------------------------------------------------------------- /dist/client/dash_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/dash_buffer.py -------------------------------------------------------------------------------- /dist/client/dash_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/dash_client.py -------------------------------------------------------------------------------- /dist/client/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/ping.py -------------------------------------------------------------------------------- /dist/client/read_mpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/read_mpd.py -------------------------------------------------------------------------------- /dist/client/stop_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/client/stop_watch.py -------------------------------------------------------------------------------- /dist/sample_mpd/BigBuckBunny_4s.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/sample_mpd/BigBuckBunny_4s.mpd -------------------------------------------------------------------------------- /dist/sample_mpd/OfForestAndMen_4s.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/sample_mpd/OfForestAndMen_4s.mpd -------------------------------------------------------------------------------- /dist/sample_mpd/TheSwissAccount_4s.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/sample_mpd/TheSwissAccount_4s.mpd -------------------------------------------------------------------------------- /dist/sample_mpd/Valkaama_4s.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/sample_mpd/Valkaama_4s.mpd -------------------------------------------------------------------------------- /dist/server/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/404.html -------------------------------------------------------------------------------- /dist/server/ThrottleServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/ThrottleServer.py -------------------------------------------------------------------------------- /dist/server/bandwidth_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/bandwidth_changer.py -------------------------------------------------------------------------------- /dist/server/code_thiago.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/code_thiago.py -------------------------------------------------------------------------------- /dist/server/dash_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/dash_server.py -------------------------------------------------------------------------------- /dist/server/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/list.html -------------------------------------------------------------------------------- /dist/server/list_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/list_directory.py -------------------------------------------------------------------------------- /dist/server/list_filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/list_filesize.py -------------------------------------------------------------------------------- /dist/server/media/mpd/x4ukwHdACDw.mpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/media/mpd/x4ukwHdACDw.mpd -------------------------------------------------------------------------------- /dist/server/media/x4ukwHdACDw/x4ukwHdACDw_file_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/media/x4ukwHdACDw/x4ukwHdACDw_file_size.txt -------------------------------------------------------------------------------- /dist/server/mpd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/mpd/index.html -------------------------------------------------------------------------------- /dist/server/parserXml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/parserXml.py -------------------------------------------------------------------------------- /dist/server/segment_size_x4ukwHdACDw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/segment_size_x4ukwHdACDw.txt -------------------------------------------------------------------------------- /dist/server/speed_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pari685/AStream/HEAD/dist/server/speed_log.txt --------------------------------------------------------------------------------