-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
422 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
{ | ||
"python.REPL.enableREPLSmartSend": false, | ||
"pylint.args": [], | ||
"files.exclude": { | ||
"**/*.c": true, | ||
"**/*.so": true | ||
}, | ||
} |
Binary file added
BIN
+676 KB
build/lib.linux-x86_64-3.9/audio_controller.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+447 KB
build/lib.linux-x86_64-3.9/mp3_header_parser.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+461 KB
build/lib.linux-x86_64-3.9/rtp_recevier.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+415 KB
build/lib.linux-x86_64-3.9/scream_header_parser.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+421 KB
build/lib.linux-x86_64-3.9/scream_receiver.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+517 KB
build/lib.linux-x86_64-3.9/sink_mp3_processor.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+653 KB
build/lib.linux-x86_64-3.9/sink_output_mixer.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+793 KB
build/lib.linux-x86_64-3.9/source_input_processor.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+695 KB
build/lib.linux-x86_64-3.9/src/audio/audio_controller.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+449 KB
build/lib.linux-x86_64-3.9/src/audio/mp3_header_parser.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+459 KB
build/lib.linux-x86_64-3.9/src/audio/rtp_recevier.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+418 KB
build/lib.linux-x86_64-3.9/src/audio/scream_header_parser.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+421 KB
build/lib.linux-x86_64-3.9/src/audio/scream_receiver.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+527 KB
build/lib.linux-x86_64-3.9/src/audio/sink_mp3_processor.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+654 KB
build/lib.linux-x86_64-3.9/src/audio/sink_output_mixer.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+794 KB
build/lib.linux-x86_64-3.9/src/audio/source_input_processor.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file added
BIN
+417 KB
build/lib.linux-x86_64-3.9/src/audio/tcp_manager.cpython-39-x86_64-linux-gnu.so
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
kill -9 $(ps -ef | grep -iE "scream|ffmpeg" | awk '{print $2}');./screamrouter.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"""Setup script for cpython for src.audio module""" | ||
from distutils.extension import Extension | ||
from setuptools import setup | ||
from Cython.Build import cythonize | ||
|
||
packages = [Extension("src.audio.audio_controller",["src/audio/audio_controller.py"]), | ||
Extension("src.audio.mp3_header_parser",["src/audio/mp3_header_parser.py"]), | ||
Extension("src.audio.rtp_recevier",["src/audio/rtp_recevier.py"]), | ||
Extension("src.audio.scream_header_parser",["src/audio/scream_header_parser.py"]), | ||
Extension("src.audio.scream_receiver",["src/audio/scream_receiver.py"]), | ||
Extension("src.audio.sink_mp3_processor",["src/audio/sink_mp3_processor.py"]), | ||
Extension("src.audio.sink_output_mixer",["src/audio/sink_output_mixer.py"]), | ||
Extension("src.audio.source_input_processor",["src/audio/source_input_processor.py"]), | ||
Extension("src.audio.tcp_manager",["src/audio/tcp_manager.py"])] | ||
|
||
setup( | ||
name='ScreamRouter', | ||
ext_modules=cythonize(packages), | ||
packages=["audio"] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.