From 0c8b2083cad92ef15967db9aaf2c811bc6f00e22 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Sat, 21 Sep 2024 20:20:24 +0200 Subject: [PATCH] Initial commit --- .gitignore | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 1 + README.md | 3 +++ 3 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9728c09 --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# ---> Vim +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + +# ---> C++ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d64aa11 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +It's Copyright. All Rights Reserved. You have no license at all other than permission to view it. diff --git a/README.md b/README.md new file mode 100644 index 0000000..4644ce0 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# distributary + +A simple program that accepts RTMP streams and then restreams them directly to other services. I use it to record at a higher rate but stream to target services at the rate they want. It's also useful for streaming to multiple sites. \ No newline at end of file