├── .gitignore ├── .travis.yml ├── README.md ├── frontend ├── android │ ├── .project │ └── app │ │ ├── .project │ │ └── bin │ │ └── .project └── node_modules │ ├── react-native-camera │ └── android │ │ ├── .project │ │ └── bin │ │ └── .project │ └── react-native-video │ └── android │ ├── .project │ └── bin │ └── .project ├── streaming ├── .gitignore ├── backend │ ├── .dockerignore │ ├── .gitignore │ ├── Dockerfile │ ├── demo.html │ ├── index.js │ ├── package-lock.json │ └── package.json ├── frontend │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── bin │ │ │ │ ├── build.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ │ └── Zocial.ttf │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ │ └── MainApplication.class │ │ │ │ │ └── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ └── Zocial.ttf │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── frontend │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── index.js │ ├── ios │ │ ├── frontend-tvOS │ │ │ └── Info.plist │ │ ├── frontend-tvOSTests │ │ │ └── Info.plist │ │ ├── frontend.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── frontend-tvOS.xcscheme │ │ │ │ └── frontend.xcscheme │ │ ├── frontend │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── frontendTests │ │ │ ├── Info.plist │ │ │ └── frontendTests.m │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── react-native-camera+1.1.4.patch │ │ └── react-native-fetch-blob+0.10.8.patch │ ├── src │ │ ├── App.js │ │ ├── Config.js │ │ ├── RecordVideo.js │ │ └── VideoOverview.js │ └── yarn.lock └── react-native-video-upload.postman_collection.json └── videos ├── .gitignore ├── backend ├── .dockerignore ├── .gitignore ├── Dockerfile ├── demo.html ├── index.js ├── package-lock.json └── package.json ├── frontend ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android │ ├── app │ │ ├── BUCK │ │ ├── bin │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ └── Zocial.ttf │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── frontend │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ └── MainApplication.class │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── frontend │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── frontend-tvOS │ │ └── Info.plist │ ├── frontend-tvOSTests │ │ └── Info.plist │ ├── frontend.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── frontend-tvOS.xcscheme │ │ │ └── frontend.xcscheme │ ├── frontend │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── frontendTests │ │ ├── Info.plist │ │ └── frontendTests.m ├── package-lock.json ├── package.json ├── src │ ├── App.js │ ├── Config.js │ ├── RecordVideo.js │ └── VideoOverview.js └── yarn.lock └── react-native-video-upload.postman_collection.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/README.md -------------------------------------------------------------------------------- /frontend/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/android/.project -------------------------------------------------------------------------------- /frontend/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/android/app/.project -------------------------------------------------------------------------------- /frontend/android/app/bin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/android/app/bin/.project -------------------------------------------------------------------------------- /frontend/node_modules/react-native-camera/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/node_modules/react-native-camera/android/.project -------------------------------------------------------------------------------- /frontend/node_modules/react-native-camera/android/bin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/node_modules/react-native-camera/android/bin/.project -------------------------------------------------------------------------------- /frontend/node_modules/react-native-video/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/node_modules/react-native-video/android/.project -------------------------------------------------------------------------------- /frontend/node_modules/react-native-video/android/bin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/frontend/node_modules/react-native-video/android/bin/.project -------------------------------------------------------------------------------- /streaming/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /streaming/backend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /streaming/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | uploads 3 | 4 | -------------------------------------------------------------------------------- /streaming/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/backend/Dockerfile -------------------------------------------------------------------------------- /streaming/backend/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/backend/demo.html -------------------------------------------------------------------------------- /streaming/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/backend/index.js -------------------------------------------------------------------------------- /streaming/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/backend/package-lock.json -------------------------------------------------------------------------------- /streaming/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/backend/package.json -------------------------------------------------------------------------------- /streaming/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /streaming/frontend/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/.buckconfig -------------------------------------------------------------------------------- /streaming/frontend/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/.flowconfig -------------------------------------------------------------------------------- /streaming/frontend/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /streaming/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/.gitignore -------------------------------------------------------------------------------- /streaming/frontend/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /streaming/frontend/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/BUCK -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/build.gradle -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/java/com/frontend/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/java/com/frontend/MainActivity.class -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/java/com/frontend/MainApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/java/com/frontend/MainApplication.class -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /streaming/frontend/android/app/bin/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/bin/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /streaming/frontend/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/build.gradle -------------------------------------------------------------------------------- /streaming/frontend/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/java/com/frontend/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/java/com/frontend/MainActivity.java -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/java/com/frontend/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/java/com/frontend/MainApplication.java -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /streaming/frontend/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /streaming/frontend/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/build.gradle -------------------------------------------------------------------------------- /streaming/frontend/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/gradle.properties -------------------------------------------------------------------------------- /streaming/frontend/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /streaming/frontend/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /streaming/frontend/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/gradlew -------------------------------------------------------------------------------- /streaming/frontend/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/gradlew.bat -------------------------------------------------------------------------------- /streaming/frontend/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/keystores/BUCK -------------------------------------------------------------------------------- /streaming/frontend/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /streaming/frontend/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/android/settings.gradle -------------------------------------------------------------------------------- /streaming/frontend/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/app.json -------------------------------------------------------------------------------- /streaming/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/index.js -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend-tvOS/Info.plist -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend-tvOSTests/Info.plist -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend-tvOS.xcscheme -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend.xcscheme -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/AppDelegate.h -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/AppDelegate.m -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/Info.plist -------------------------------------------------------------------------------- /streaming/frontend/ios/frontend/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontend/main.m -------------------------------------------------------------------------------- /streaming/frontend/ios/frontendTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontendTests/Info.plist -------------------------------------------------------------------------------- /streaming/frontend/ios/frontendTests/frontendTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/ios/frontendTests/frontendTests.m -------------------------------------------------------------------------------- /streaming/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/package-lock.json -------------------------------------------------------------------------------- /streaming/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/package.json -------------------------------------------------------------------------------- /streaming/frontend/patches/react-native-camera+1.1.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/patches/react-native-camera+1.1.4.patch -------------------------------------------------------------------------------- /streaming/frontend/patches/react-native-fetch-blob+0.10.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/patches/react-native-fetch-blob+0.10.8.patch -------------------------------------------------------------------------------- /streaming/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/src/App.js -------------------------------------------------------------------------------- /streaming/frontend/src/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/src/Config.js -------------------------------------------------------------------------------- /streaming/frontend/src/RecordVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/src/RecordVideo.js -------------------------------------------------------------------------------- /streaming/frontend/src/VideoOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/src/VideoOverview.js -------------------------------------------------------------------------------- /streaming/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/frontend/yarn.lock -------------------------------------------------------------------------------- /streaming/react-native-video-upload.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/streaming/react-native-video-upload.postman_collection.json -------------------------------------------------------------------------------- /videos/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /videos/backend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /videos/backend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | uploads 3 | 4 | -------------------------------------------------------------------------------- /videos/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/backend/Dockerfile -------------------------------------------------------------------------------- /videos/backend/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/backend/demo.html -------------------------------------------------------------------------------- /videos/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/backend/index.js -------------------------------------------------------------------------------- /videos/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/backend/package-lock.json -------------------------------------------------------------------------------- /videos/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/backend/package.json -------------------------------------------------------------------------------- /videos/frontend/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /videos/frontend/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/.buckconfig -------------------------------------------------------------------------------- /videos/frontend/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/.flowconfig -------------------------------------------------------------------------------- /videos/frontend/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /videos/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/.gitignore -------------------------------------------------------------------------------- /videos/frontend/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /videos/frontend/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/BUCK -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/build.gradle -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/java/com/frontend/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/java/com/frontend/MainActivity.class -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/java/com/frontend/MainApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/java/com/frontend/MainApplication.class -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /videos/frontend/android/app/bin/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/bin/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /videos/frontend/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/build.gradle -------------------------------------------------------------------------------- /videos/frontend/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/java/com/frontend/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/java/com/frontend/MainActivity.java -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/java/com/frontend/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/java/com/frontend/MainApplication.java -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /videos/frontend/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /videos/frontend/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/build.gradle -------------------------------------------------------------------------------- /videos/frontend/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/gradle.properties -------------------------------------------------------------------------------- /videos/frontend/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /videos/frontend/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /videos/frontend/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/gradlew -------------------------------------------------------------------------------- /videos/frontend/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/gradlew.bat -------------------------------------------------------------------------------- /videos/frontend/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/keystores/BUCK -------------------------------------------------------------------------------- /videos/frontend/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /videos/frontend/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/android/settings.gradle -------------------------------------------------------------------------------- /videos/frontend/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/app.json -------------------------------------------------------------------------------- /videos/frontend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/index.js -------------------------------------------------------------------------------- /videos/frontend/ios/frontend-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend-tvOS/Info.plist -------------------------------------------------------------------------------- /videos/frontend/ios/frontend-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend-tvOSTests/Info.plist -------------------------------------------------------------------------------- /videos/frontend/ios/frontend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /videos/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend-tvOS.xcscheme -------------------------------------------------------------------------------- /videos/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend.xcodeproj/xcshareddata/xcschemes/frontend.xcscheme -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/AppDelegate.h -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/AppDelegate.m -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/Info.plist -------------------------------------------------------------------------------- /videos/frontend/ios/frontend/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontend/main.m -------------------------------------------------------------------------------- /videos/frontend/ios/frontendTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontendTests/Info.plist -------------------------------------------------------------------------------- /videos/frontend/ios/frontendTests/frontendTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/ios/frontendTests/frontendTests.m -------------------------------------------------------------------------------- /videos/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/package-lock.json -------------------------------------------------------------------------------- /videos/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/package.json -------------------------------------------------------------------------------- /videos/frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/src/App.js -------------------------------------------------------------------------------- /videos/frontend/src/Config.js: -------------------------------------------------------------------------------- 1 | export const ENDPOINT = "http://192.168.178.47:3000"; 2 | -------------------------------------------------------------------------------- /videos/frontend/src/RecordVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/src/RecordVideo.js -------------------------------------------------------------------------------- /videos/frontend/src/VideoOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/src/VideoOverview.js -------------------------------------------------------------------------------- /videos/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/frontend/yarn.lock -------------------------------------------------------------------------------- /videos/react-native-video-upload.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DanielMSchmidt/react-native-video-upload-demo/HEAD/videos/react-native-video-upload.postman_collection.json --------------------------------------------------------------------------------