├── .github ├── ISSUE_TEMPLATE │ ├── bugreport_android.yml │ ├── bugreport_ios.yml │ ├── bugreport_macos.yml │ ├── bugreport_windows.yml │ ├── config.yml │ ├── featurerequest.yml │ └── question.yml └── stale.yml ├── .gitignore └── README.md /.github/ISSUE_TEMPLATE/bugreport_android.yml: -------------------------------------------------------------------------------- 1 | name: Android Bug Report 2 | description: "File a bug report for the Android platform" 3 | title: "[Android] " 4 | labels: ["bug", "android", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this bug report. 11 | - type: markdown 12 | attributes: 13 | value: "## Please do not link to or attach project files here!" 14 | - type: markdown 15 | attributes: 16 | value: Instead please send a link via email to [unitysupprt@renderheads.com](mailto:unitysupport@renderheads.com) quoting this issue in your email's subject (i.e. '[Android] Something isn't quite right \#1234') and providing a link to the issue in your message. 17 | - type: input 18 | id: unity-version 19 | attributes: 20 | label: Unity version 21 | description: The specific version of the Unity editor you are using. 22 | placeholder: "e.g. 2021.3.27f1" 23 | validations: 24 | required: true 25 | - type: dropdown 26 | id: unity-editor-platform 27 | attributes: 28 | label: Unity editor platform 29 | description: The platform you're using for the Unity editor. 30 | options: 31 | - Windows 32 | - macOS 33 | validations: 34 | required: true 35 | - type: dropdown 36 | id: avpromoviecapture-edition 37 | attributes: 38 | label: AVPro Movie Capture edition 39 | options: 40 | - Trial 41 | - Basic 42 | - Full 43 | validations: 44 | required: true 45 | - type: input 46 | id: avpromoviecapture-version 47 | attributes: 48 | label: AVPro Movie Capture Version 49 | description: The version of the AVPro Movie Capture plugin you are using. 50 | placeholder: "e.g. 5.3.0" 51 | validations: 52 | required: true 53 | - type: dropdown 54 | id: os-versions 55 | attributes: 56 | label: Which Android OS version(s) are you using? 57 | description: Please select the Android OS versions you're reporting this issue for. 58 | options: 59 | - 8 60 | - 9 61 | - 10 62 | - 11 63 | - 12 64 | - 13 65 | - 14 66 | - 15 67 | multiple: true 68 | validations: 69 | required: true 70 | - type: dropdown 71 | id: graphics-apis 72 | attributes: 73 | label: Which graphics API(s) are you using? 74 | description: You may select more than one. 75 | options: 76 | - OpenGLES 3 77 | - Vulkan 78 | multiple: true 79 | validations: 80 | required: true 81 | - type: textarea 82 | id: hardware 83 | attributes: 84 | label: Hardware 85 | description: Please provide details of the Android hardware you're reporting this issue for. 86 | validations: 87 | required: true 88 | - type: dropdown 89 | id: capture-components 90 | attributes: 91 | label: Which capture component are you using? 92 | options: 93 | - Capture From Screen 94 | - Capture From Camera 95 | - Capture From Camera 360 96 | - Capture From Camera 360 ODS 97 | - Capture From Texture 98 | - Capture From WebCamTexture 99 | validations: 100 | required: true 101 | - type: dropdown 102 | id: capture-mode 103 | attributes: 104 | label: Capture mode 105 | options: 106 | - Realtime 107 | - Offline 108 | validations: 109 | required: true 110 | - type: dropdown 111 | id: output-mode 112 | attributes: 113 | label: Which output mode are you using? 114 | options: 115 | - Video file 116 | - Image sequence 117 | validations: 118 | required: true 119 | - type: dropdown 120 | id: video-codecs 121 | attributes: 122 | label: Video codecs 123 | description: Which video codec/image format are you trying to capture? 124 | options: 125 | - H264 126 | - HEVC 127 | - PNG 128 | - JPEG 129 | validations: 130 | required: true 131 | - type: dropdown 132 | id: audio-source 133 | attributes: 134 | label: Audio source 135 | description: Which audio source are you trying to capture? 136 | options: 137 | - None_ 138 | - Unity 139 | - Microphone 140 | - Manual 141 | - Wwise 142 | - Unity Audio Mixer 143 | validations: 144 | required: true 145 | - type: textarea 146 | id: component-config 147 | attributes: 148 | label: Any other component configuration required to reproduce the issue. 149 | validations: 150 | required: false 151 | - type: textarea 152 | id: issue 153 | attributes: 154 | label: The issue 155 | description: Please describe the issue, how to reproduce it and what you expected the outcome to be. 156 | validations: 157 | required: true 158 | - type: textarea 159 | id: logs 160 | attributes: 161 | label: Log output 162 | description: Please provide the full, unfiltered logcat for the issue here. 163 | render: shell 164 | validations: 165 | required: false 166 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport_ios.yml: -------------------------------------------------------------------------------- 1 | name: iOS Bug Report 2 | description: "File a bug report for the iOS platform" 3 | title: "[iOS] " 4 | labels: ["bug", "iOS", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this bug report. 11 | - type: markdown 12 | attributes: 13 | value: "## Please do not link to or attach project files here!" 14 | - type: markdown 15 | attributes: 16 | value: Instead please send a link via email to [unitysupprt@renderheads.com](mailto:unitysupport@renderheads.com) quoting this issue in your email's subject (i.e. '[iOS] Something isn't quite right \#1234') and providing a link to the issue in your message. 17 | - type: input 18 | id: unity-version 19 | attributes: 20 | label: Unity version 21 | description: The specific version of the Unity editor you are using. 22 | placeholder: "e.g. 2021.3.27f1" 23 | validations: 24 | required: true 25 | - type: dropdown 26 | id: unity-editor-platform 27 | attributes: 28 | label: Unity editor platform 29 | description: The platform you're using for the Unity editor. 30 | options: 31 | - Windows 32 | - macOS 33 | validations: 34 | required: true 35 | - type: dropdown 36 | id: avpromoviecapture-edition 37 | attributes: 38 | label: AVPro Movie Capture edition 39 | options: 40 | - Trial 41 | - Basic 42 | - Full 43 | validations: 44 | required: true 45 | - type: input 46 | id: avpromoviecapture-version 47 | attributes: 48 | label: AVPro Movie Capture Version 49 | description: The version of the AVPro Movie Capture plugin you are using. 50 | placeholder: "e.g. 5.3.0" 51 | validations: 52 | required: true 53 | - type: input 54 | id: xcode-version 55 | attributes: 56 | label: Xcode version being used to build your Unity project. 57 | placeholder: "e.g. 15.2" 58 | validations: 59 | required: true 60 | - type: input 61 | id: os-versions 62 | attributes: 63 | label: Which iOS version(s) are you using? 64 | description: Please provide the iOS version(s) you're reporting this issue for. 65 | placeholder: "e.g. 17.5.0; 18.0.1" 66 | validations: 67 | required: true 68 | - type: textarea 69 | id: hardware 70 | attributes: 71 | label: Hardware 72 | description: Please provide details of the hardware you're reporting this issue for. 73 | placeholder: "e.g. iPhone 13 Pro" 74 | validations: 75 | required: true 76 | - type: dropdown 77 | id: capture-components 78 | attributes: 79 | label: Which capture component are you using? 80 | options: 81 | - Capture From Screen 82 | - Capture From Camera 83 | - Capture From Camera 360 84 | - Capture From Camera 360 ODS 85 | - Capture From Texture 86 | - Capture From WebCamTexture 87 | validations: 88 | required: true 89 | - type: dropdown 90 | id: capture-mode 91 | attributes: 92 | label: Capture mode 93 | options: 94 | - Realtime 95 | - Offline 96 | validations: 97 | required: true 98 | - type: dropdown 99 | id: output-mode 100 | attributes: 101 | label: Which output mode are you using? 102 | options: 103 | - Video file 104 | - Image sequence 105 | validations: 106 | required: true 107 | - type: dropdown 108 | id: video-codecs 109 | attributes: 110 | label: Video codecs 111 | description: Which video codec/image format are you trying to capture? 112 | options: 113 | - H264 114 | - HEVC 115 | - MJPEG 116 | - PNG 117 | - JPEG 118 | - HEIF 119 | - TIFF 120 | validations: 121 | required: true 122 | - type: dropdown 123 | id: audio-source 124 | attributes: 125 | label: Audio source 126 | description: Which audio source are you trying to capture? 127 | options: 128 | - None_ 129 | - Unity 130 | - Microphone 131 | - Manual 132 | - Wwise 133 | - Unity Audio Mixer 134 | validations: 135 | required: true 136 | - type: dropdown 137 | id: audio-codecs 138 | attributes: 139 | label: Audio codecs 140 | description: Which audio codec are you trying to capture to? If you're not capturing audio please select 'None_' 141 | options: 142 | - None_ 143 | - AAC 144 | - FLAC 145 | - Apple Lossless 146 | - Linear PCM 147 | - Uncompressed 148 | validations: 149 | required: true 150 | - type: textarea 151 | id: component-config 152 | attributes: 153 | label: Any other component configuration 154 | description: Please provide details of any other component configuration required to reproduce this issue. 155 | validations: 156 | required: false 157 | - type: textarea 158 | id: issue 159 | attributes: 160 | label: The issue 161 | description: Please describe the issue, how to reproduce it and what you expected the outcome to be. 162 | validations: 163 | required: true 164 | - type: textarea 165 | id: logs 166 | attributes: 167 | label: Log output 168 | description: Please provide any relevant log output here. 169 | render: shell 170 | validations: 171 | required: false 172 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport_macos.yml: -------------------------------------------------------------------------------- 1 | name: macOS Bug Report 2 | description: "File a bug report for the macOS platform" 3 | title: "[macOS] " 4 | labels: ["bug", "macOS", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this bug report. 11 | - type: markdown 12 | attributes: 13 | value: "## Please do not link to or attach project files here!" 14 | - type: markdown 15 | attributes: 16 | value: Instead please send a link via email to [unitysupprt@renderheads.com](mailto:unitysupport@renderheads.com) quoting this issue in your email's subject (i.e. '[macOS] Something isn't quite right \#1234') and providing a link to the issue in your message. 17 | - type: input 18 | id: unity-version 19 | attributes: 20 | label: Unity version 21 | description: The specific version of the Unity editor you are using. 22 | placeholder: "2021.3.27f1" 23 | validations: 24 | required: true 25 | - type: dropdown 26 | id: unity-editor-platform 27 | attributes: 28 | label: Unity editor platform 29 | description: The platform you're using for the Unity editor. 30 | options: 31 | - Windows 32 | - macOS 33 | validations: 34 | required: true 35 | - type: dropdown 36 | id: avpromoviecapture-edition 37 | attributes: 38 | label: AVPro Movie Capture edition 39 | options: 40 | - Trial 41 | - Basic 42 | - Full 43 | validations: 44 | required: true 45 | - type: input 46 | id: avpromoviecapture-version 47 | attributes: 48 | label: AVPro Movie Capture Version 49 | description: The version of the AVPro Movie Capture plugin you are using. 50 | placeholder: "5.3.0" 51 | validations: 52 | required: true 53 | - type: input 54 | id: os-versions 55 | attributes: 56 | label: Which macOS version(s) are you using? 57 | description: Please provide the macOS version(s) you're reporting this issue for. 58 | placeholder: "Sonoma 14.6.1" 59 | validations: 60 | required: true 61 | - type: dropdown 62 | id: graphics-apis 63 | attributes: 64 | label: Which graphics API(s) are you using? 65 | options: 66 | - Metal 67 | - OpenGL Core 68 | validations: 69 | required: true 70 | - type: textarea 71 | id: hardware 72 | attributes: 73 | label: Hardware 74 | description: Please provide details of the Mac hardware you're using 75 | placeholder: "Mac mini M2 Pro 32Gb" 76 | validations: 77 | required: true 78 | - type: dropdown 79 | id: capture-components 80 | attributes: 81 | label: Which capture component are you using? 82 | options: 83 | - Capture From Screen 84 | - Capture From Camera 85 | - Capture From Camera 360 86 | - Capture From Camera 360 ODS 87 | - Capture From Texture 88 | - Capture From WebCamTexture 89 | validations: 90 | required: true 91 | - type: dropdown 92 | id: capture-mode 93 | attributes: 94 | label: Capture mode 95 | options: 96 | - Realtime 97 | - Offline 98 | validations: 99 | required: true 100 | - type: dropdown 101 | id: output-mode 102 | attributes: 103 | label: Which output mode are you using? 104 | options: 105 | - Video file 106 | - Image sequence 107 | validations: 108 | required: true 109 | - type: dropdown 110 | id: video-codecs 111 | attributes: 112 | label: Video codecs 113 | description: Which video codec/image format are you trying to capture? 114 | options: 115 | - H264 116 | - HEVC 117 | - Apple ProRes 422 118 | - Apple ProRes 4444 119 | - MJPEG 120 | - PNG 121 | - JPEG 122 | - HEIF 123 | - TIFF 124 | validations: 125 | required: true 126 | - type: dropdown 127 | id: audio-source 128 | attributes: 129 | label: Audio source 130 | options: 131 | - None_ 132 | - Unity 133 | - Microphone 134 | - Manual 135 | - Wwise 136 | - Unity Audio Mixer 137 | validations: 138 | required: true 139 | - type: dropdown 140 | id: audio-codecs 141 | attributes: 142 | label: Audio codecs 143 | description: Which audio codec are you trying to capture to? If you're not capturing audio please select 'None_' 144 | options: 145 | - None_ 146 | - AAC 147 | - FLAC 148 | - Apple Lossless 149 | - Linear PCM 150 | - Uncompressed 151 | validations: 152 | required: true 153 | - type: textarea 154 | id: component-config 155 | attributes: 156 | label: Any other component configuration 157 | description: Please provide details of any other component configuration required to reproduce this issue. 158 | validations: 159 | required: false 160 | - type: textarea 161 | id: issue 162 | attributes: 163 | label: The issue 164 | description: Please describe the issue, how to reproduce it and what you expected the outcome to be. 165 | validations: 166 | required: true 167 | - type: textarea 168 | id: logs 169 | attributes: 170 | label: Log output 171 | description: Please provide any relevant log output here. 172 | render: shell 173 | validations: 174 | required: false 175 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bugreport_windows.yml: -------------------------------------------------------------------------------- 1 | name: Windows Bug Report 2 | description: "File a bug report for the Windows platform" 3 | title: "[Windows] " 4 | labels: ["bug", "windows", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this bug report. 11 | - type: markdown 12 | attributes: 13 | value: "## Please do not link to or attach project files here!" 14 | - type: markdown 15 | attributes: 16 | value: Instead please send a link via email to [unitysupprt@renderheads.com](mailto:unitysupport@renderheads.com) quoting this issue in your email's subject (i.e. '[Windows] Something isn't quite right \#1234') and providing a link to the issue in your message. 17 | - type: input 18 | id: unity-version 19 | attributes: 20 | label: Unity version 21 | description: The specific version of the Unity editor you are using. 22 | placeholder: "2021.3.27f1" 23 | validations: 24 | required: true 25 | - type: dropdown 26 | id: unity-editor-platform 27 | attributes: 28 | label: Unity editor platform 29 | description: The platform you're using for the Unity editor. 30 | options: 31 | - Windows 32 | - macOS 33 | validations: 34 | required: true 35 | - type: dropdown 36 | id: avpromoviecapture-edition 37 | attributes: 38 | label: AVPro Movie Capture edition 39 | options: 40 | - Trial 41 | - Basic 42 | - Full 43 | validations: 44 | required: true 45 | - type: input 46 | id: avpromoviecapture-version 47 | attributes: 48 | label: AVPro Movie Capture Version 49 | description: The version of the AVPro Movie Capture plugin you are using. 50 | placeholder: "5.3.0" 51 | validations: 52 | required: true 53 | - type: input 54 | id: os-versions 55 | attributes: 56 | label: Which Windows version(s) are you using? 57 | description: Please provide the version of Windows you're using to reproduce this issue. 58 | placeholder: "Windows 10 Pro" 59 | validations: 60 | required: true 61 | - type: dropdown 62 | id: graphics-apis 63 | attributes: 64 | label: Which graphics API(s) are you using? 65 | options: 66 | - Direct3D 11 67 | - Direct3D 12 68 | validations: 69 | required: true 70 | - type: textarea 71 | id: hardware 72 | attributes: 73 | label: Hardware 74 | description: Please provide details of the hardware you're using to reproduce this issue. 75 | placeholder: | 76 | Intel Core i5 12400F 77 | nVidia RTX 4060 78 | 16GB DDR4 3200MHz 79 | 1TB SSD 80 | validations: 81 | required: true 82 | - type: dropdown 83 | id: capture-components 84 | attributes: 85 | label: Which capture component are you using? 86 | options: 87 | - Capture From Screen 88 | - Capture From Camera 89 | - Capture From Camera 360 90 | - Capture From Camera 360 ODS 91 | - Capture From Texture 92 | - Capture From WebCamTexture 93 | validations: 94 | required: true 95 | - type: dropdown 96 | id: capture-mode 97 | attributes: 98 | label: Capture mode 99 | options: 100 | - Realtime 101 | - Offline 102 | validations: 103 | required: true 104 | - type: dropdown 105 | id: output-mode 106 | attributes: 107 | label: Which output mode are you using? 108 | options: 109 | - Video file 110 | - Image sequence 111 | - Named pipe 112 | validations: 113 | required: true 114 | - type: dropdown 115 | id: video-codecs 116 | attributes: 117 | label: Video codecs 118 | description: Which video codec/image format are you trying to capture? If 'Other' please provide details in the Issue field down below. 119 | options: 120 | - H264 121 | - HEVC 122 | - PNG 123 | - JPEG 124 | - Other 125 | validations: 126 | required: true 127 | - type: dropdown 128 | id: audio-source 129 | attributes: 130 | label: Audio source 131 | options: 132 | - None_ 133 | - Unity 134 | - Microphone 135 | - Manual 136 | - Wwise 137 | - Unity Audio Mixer 138 | validations: 139 | required: true 140 | - type: dropdown 141 | id: audio-codecs 142 | attributes: 143 | label: Audio codecs 144 | description: Which audio codec are you trying to capture to? If you're not capturing audio please select 'None_' 145 | options: 146 | - None_ 147 | - AAC 148 | - Uncompressed 149 | validations: 150 | required: true 151 | - type: textarea 152 | id: component-config 153 | attributes: 154 | label: Any other component configuration 155 | description: Please provide details of any other component configuration required to reproduce this issue. 156 | validations: 157 | required: false 158 | - type: textarea 159 | id: issue 160 | attributes: 161 | label: The issue 162 | description: Please describe the issue, how to reproduce it and what you expected the outcome to be. 163 | validations: 164 | required: true 165 | - type: textarea 166 | id: logs 167 | attributes: 168 | label: Log output 169 | description: Please provide any relevant log output here. 170 | render: shell 171 | validations: 172 | required: false 173 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/featurerequest.yml: -------------------------------------------------------------------------------- 1 | name: Enhancement 2 | description: "Create a feature request" 3 | title: "[Enhancement] " 4 | labels: ["enhancement", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: Thanks for taking the time to fill out this feature request! 11 | - type: dropdown 12 | id: platform 13 | attributes: 14 | label: Which platform is your feature request for? 15 | description: You can select more than one. 16 | options: 17 | - Windows 18 | - macOS 19 | - iOS 20 | - Android 21 | multiple: true 22 | validations: 23 | required: false 24 | - type: textarea 25 | id: request 26 | attributes: 27 | label: Description 28 | description: Please describe your feature request here. 29 | validations: 30 | required: true 31 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- 1 | name: Question 2 | description: "Ask a question" 3 | title: "[Question] " 4 | labels: ["question", "triage"] 5 | assignees: 6 | - Chris-RH 7 | body: 8 | - type: markdown 9 | attributes: 10 | value: | 11 | Thanks for filling out this question form! 12 | - type: input 13 | id: avpromoviecapture-version 14 | attributes: 15 | label: AVPro Movie Capture Version 16 | description: The version of the AVPro Movie Capture plugin your question is about. 17 | placeholder: "example: 5.2.0-trial" 18 | validations: 19 | required: false 20 | - type: dropdown 21 | id: platform 22 | attributes: 23 | label: Which platform is your question for? 24 | description: You can select more than one. 25 | options: 26 | - Windows 27 | - macOS 28 | - iOS 29 | - Android 30 | multiple: true 31 | validations: 32 | required: false 33 | - type: textarea 34 | id: request 35 | attributes: 36 | label: Your question 37 | description: Ask your question here 38 | placeholder: How do I... 39 | validations: 40 | required: true 41 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Number of days of inactivity before an issue becomes stale 2 | daysUntilStale: 14 3 | # Number of days of inactivity before a stale issue is closed 4 | daysUntilClose: 7 5 | # Issues with these labels will never be considered stale 6 | exemptLabels: 7 | - pinned 8 | - enhancement 9 | - enhancement 🚀 10 | - Bug 🐛 11 | - HIGH 12 | - high 13 | # Label to use when marking an issue as stale 14 | staleLabel: stale 15 | # Comment to post when marking an issue as stale. Set to `false` to disable 16 | markComment: > 17 | This issue has been automatically marked as stale because it has not had 18 | recent activity. It will be closed if no further activity occurs. Thank you 19 | for your contributions. 20 | # Comment to post when closing a stale issue. Set to `false` to disable 21 | closeComment: > 22 | This issue has been automatically closed because it has not had 23 | recent activity. If you wish to continue this issue, then please create a new 24 | issue as we do not monitor closed issues. 25 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.toptal.com/developers/gitignore/api/macos,windows,android,xcode,visualstudio,visualstudiocode,androidstudio 2 | # Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,android,xcode,visualstudio,visualstudiocode,androidstudio 3 | 4 | ### Android ### 5 | # Gradle files 6 | .gradle/ 7 | build/ 8 | 9 | # Local configuration file (sdk path, etc) 10 | local.properties 11 | 12 | # Log/OS Files 13 | *.log 14 | 15 | # Android Studio generated files and folders 16 | captures/ 17 | .externalNativeBuild/ 18 | .cxx/ 19 | *.apk 20 | output.json 21 | 22 | # IntelliJ 23 | *.iml 24 | .idea/ 25 | misc.xml 26 | deploymentTargetDropDown.xml 27 | render.experimental.xml 28 | 29 | # Keystore files 30 | *.jks 31 | *.keystore 32 | 33 | # Google Services (e.g. APIs or Firebase) 34 | google-services.json 35 | 36 | # Android Profiling 37 | *.hprof 38 | 39 | ### Android Patch ### 40 | gen-external-apklibs 41 | 42 | # Replacement of .externalNativeBuild directories introduced 43 | # with Android Studio 3.5. 44 | 45 | ### macOS ### 46 | # General 47 | .DS_Store 48 | .AppleDouble 49 | .LSOverride 50 | 51 | # Icon must end with two \r 52 | Icon 53 | 54 | 55 | # Thumbnails 56 | ._* 57 | 58 | # Files that might appear in the root of a volume 59 | .DocumentRevisions-V100 60 | .fseventsd 61 | .Spotlight-V100 62 | .TemporaryItems 63 | .Trashes 64 | .VolumeIcon.icns 65 | .com.apple.timemachine.donotpresent 66 | 67 | # Directories potentially created on remote AFP share 68 | .AppleDB 69 | .AppleDesktop 70 | Network Trash Folder 71 | Temporary Items 72 | .apdisk 73 | 74 | ### macOS Patch ### 75 | # iCloud generated files 76 | *.icloud 77 | 78 | ### VisualStudioCode ### 79 | .vscode/* 80 | !.vscode/settings.json 81 | !.vscode/tasks.json 82 | !.vscode/launch.json 83 | !.vscode/extensions.json 84 | !.vscode/*.code-snippets 85 | 86 | # Local History for Visual Studio Code 87 | .history/ 88 | 89 | # Built Visual Studio Code Extensions 90 | *.vsix 91 | 92 | ### VisualStudioCode Patch ### 93 | # Ignore all local history of files 94 | .history 95 | .ionide 96 | 97 | ### Windows ### 98 | # Windows thumbnail cache files 99 | Thumbs.db 100 | Thumbs.db:encryptable 101 | ehthumbs.db 102 | ehthumbs_vista.db 103 | 104 | # Dump file 105 | *.stackdump 106 | 107 | # Folder config file 108 | [Dd]esktop.ini 109 | 110 | # Recycle Bin used on file shares 111 | $RECYCLE.BIN/ 112 | 113 | # Windows Installer files 114 | *.cab 115 | *.msi 116 | *.msix 117 | *.msm 118 | *.msp 119 | 120 | # Windows shortcuts 121 | *.lnk 122 | 123 | ### Xcode ### 124 | ## User settings 125 | xcuserdata/ 126 | 127 | ## Xcode 8 and earlier 128 | *.xcscmblueprint 129 | *.xccheckout 130 | 131 | ### Xcode Patch ### 132 | *.xcodeproj/* 133 | !*.xcodeproj/project.pbxproj 134 | !*.xcodeproj/xcshareddata/ 135 | !*.xcodeproj/project.xcworkspace/ 136 | !*.xcworkspace/contents.xcworkspacedata 137 | /*.gcno 138 | **/xcshareddata/WorkspaceSettings.xcsettings 139 | 140 | ### AndroidStudio ### 141 | # Covers files to be ignored for android development using Android Studio. 142 | 143 | # Built application files 144 | *.ap_ 145 | *.aab 146 | 147 | # Files for the ART/Dalvik VM 148 | *.dex 149 | 150 | # Java class files 151 | *.class 152 | 153 | # Generated files 154 | bin/ 155 | gen/ 156 | out/ 157 | 158 | # Gradle files 159 | .gradle 160 | 161 | # Signing files 162 | .signing/ 163 | 164 | # Local configuration file (sdk path, etc) 165 | 166 | # Proguard folder generated by Eclipse 167 | proguard/ 168 | 169 | # Log Files 170 | 171 | # Android Studio 172 | /*/build/ 173 | /*/local.properties 174 | /*/out 175 | /*/*/build 176 | /*/*/production 177 | .navigation/ 178 | *.ipr 179 | *~ 180 | *.swp 181 | 182 | # Keystore files 183 | 184 | # Google Services (e.g. APIs or Firebase) 185 | # google-services.json 186 | 187 | # Android Patch 188 | 189 | # External native build folder generated in Android Studio 2.2 and later 190 | .externalNativeBuild 191 | 192 | # NDK 193 | obj/ 194 | 195 | # IntelliJ IDEA 196 | *.iws 197 | /out/ 198 | 199 | # User-specific configurations 200 | .idea/caches/ 201 | .idea/libraries/ 202 | .idea/shelf/ 203 | .idea/workspace.xml 204 | .idea/tasks.xml 205 | .idea/.name 206 | .idea/compiler.xml 207 | .idea/copyright/profiles_settings.xml 208 | .idea/encodings.xml 209 | .idea/misc.xml 210 | .idea/modules.xml 211 | .idea/scopes/scope_settings.xml 212 | .idea/dictionaries 213 | .idea/vcs.xml 214 | .idea/jsLibraryMappings.xml 215 | .idea/datasources.xml 216 | .idea/dataSources.ids 217 | .idea/sqlDataSources.xml 218 | .idea/dynamic.xml 219 | .idea/uiDesigner.xml 220 | .idea/assetWizardSettings.xml 221 | .idea/gradle.xml 222 | .idea/jarRepositories.xml 223 | .idea/navEditor.xml 224 | 225 | # Legacy Eclipse project files 226 | .classpath 227 | .project 228 | .cproject 229 | .settings/ 230 | 231 | # Mobile Tools for Java (J2ME) 232 | .mtj.tmp/ 233 | 234 | # Package Files # 235 | *.war 236 | *.ear 237 | 238 | # virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml) 239 | hs_err_pid* 240 | 241 | ## Plugin-specific files: 242 | 243 | # mpeltonen/sbt-idea plugin 244 | .idea_modules/ 245 | 246 | # JIRA plugin 247 | atlassian-ide-plugin.xml 248 | 249 | # Mongo Explorer plugin 250 | .idea/mongoSettings.xml 251 | 252 | # Crashlytics plugin (for Android Studio and IntelliJ) 253 | com_crashlytics_export_strings.xml 254 | crashlytics.properties 255 | crashlytics-build.properties 256 | fabric.properties 257 | 258 | ### AndroidStudio Patch ### 259 | 260 | !/gradle/wrapper/gradle-wrapper.jar 261 | 262 | ### VisualStudio ### 263 | ## Ignore Visual Studio temporary files, build results, and 264 | ## files generated by popular Visual Studio add-ons. 265 | ## 266 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 267 | 268 | # User-specific files 269 | *.rsuser 270 | *.suo 271 | *.user 272 | *.userosscache 273 | *.sln.docstates 274 | 275 | # User-specific files (MonoDevelop/Xamarin Studio) 276 | *.userprefs 277 | 278 | # Mono auto generated files 279 | mono_crash.* 280 | 281 | # Build results 282 | [Dd]ebug/ 283 | [Dd]ebugPublic/ 284 | [Rr]elease/ 285 | [Rr]eleases/ 286 | x64/ 287 | x86/ 288 | [Ww][Ii][Nn]32/ 289 | [Aa][Rr][Mm]/ 290 | [Aa][Rr][Mm]64/ 291 | bld/ 292 | [Bb]in/ 293 | [Oo]bj/ 294 | [Ll]og/ 295 | [Ll]ogs/ 296 | 297 | # Visual Studio 2015/2017 cache/options directory 298 | .vs/ 299 | # Uncomment if you have tasks that create the project's static files in wwwroot 300 | #wwwroot/ 301 | 302 | # Visual Studio 2017 auto generated files 303 | Generated\ Files/ 304 | 305 | # MSTest test Results 306 | [Tt]est[Rr]esult*/ 307 | [Bb]uild[Ll]og.* 308 | 309 | # NUnit 310 | *.VisualState.xml 311 | TestResult.xml 312 | nunit-*.xml 313 | 314 | # Build Results of an ATL Project 315 | [Dd]ebugPS/ 316 | [Rr]eleasePS/ 317 | dlldata.c 318 | 319 | # Benchmark Results 320 | BenchmarkDotNet.Artifacts/ 321 | 322 | # .NET Core 323 | project.lock.json 324 | project.fragment.lock.json 325 | artifacts/ 326 | 327 | # ASP.NET Scaffolding 328 | ScaffoldingReadMe.txt 329 | 330 | # StyleCop 331 | StyleCopReport.xml 332 | 333 | # Files built by Visual Studio 334 | *_i.c 335 | *_p.c 336 | *_h.h 337 | *.ilk 338 | *.meta 339 | *.obj 340 | *.iobj 341 | *.pch 342 | *.pdb 343 | *.ipdb 344 | *.pgc 345 | *.pgd 346 | *.rsp 347 | *.sbr 348 | *.tlb 349 | *.tli 350 | *.tlh 351 | *.tmp 352 | *.tmp_proj 353 | *_wpftmp.csproj 354 | *.tlog 355 | *.vspscc 356 | *.vssscc 357 | .builds 358 | *.pidb 359 | *.svclog 360 | *.scc 361 | 362 | # Chutzpah Test files 363 | _Chutzpah* 364 | 365 | # Visual C++ cache files 366 | ipch/ 367 | *.aps 368 | *.ncb 369 | *.opendb 370 | *.opensdf 371 | *.sdf 372 | *.cachefile 373 | *.VC.db 374 | *.VC.VC.opendb 375 | 376 | # Visual Studio profiler 377 | *.psess 378 | *.vsp 379 | *.vspx 380 | *.sap 381 | 382 | # Visual Studio Trace Files 383 | *.e2e 384 | 385 | # TFS 2012 Local Workspace 386 | $tf/ 387 | 388 | # Guidance Automation Toolkit 389 | *.gpState 390 | 391 | # ReSharper is a .NET coding add-in 392 | _ReSharper*/ 393 | *.[Rr]e[Ss]harper 394 | *.DotSettings.user 395 | 396 | # TeamCity is a build add-in 397 | _TeamCity* 398 | 399 | # DotCover is a Code Coverage Tool 400 | *.dotCover 401 | 402 | # AxoCover is a Code Coverage Tool 403 | .axoCover/* 404 | !.axoCover/settings.json 405 | 406 | # Coverlet is a free, cross platform Code Coverage Tool 407 | coverage*.json 408 | coverage*.xml 409 | coverage*.info 410 | 411 | # Visual Studio code coverage results 412 | *.coverage 413 | *.coveragexml 414 | 415 | # NCrunch 416 | _NCrunch_* 417 | .*crunch*.local.xml 418 | nCrunchTemp_* 419 | 420 | # MightyMoose 421 | *.mm.* 422 | AutoTest.Net/ 423 | 424 | # Web workbench (sass) 425 | .sass-cache/ 426 | 427 | # Installshield output folder 428 | [Ee]xpress/ 429 | 430 | # DocProject is a documentation generator add-in 431 | DocProject/buildhelp/ 432 | DocProject/Help/*.HxT 433 | DocProject/Help/*.HxC 434 | DocProject/Help/*.hhc 435 | DocProject/Help/*.hhk 436 | DocProject/Help/*.hhp 437 | DocProject/Help/Html2 438 | DocProject/Help/html 439 | 440 | # Click-Once directory 441 | publish/ 442 | 443 | # Publish Web Output 444 | *.[Pp]ublish.xml 445 | *.azurePubxml 446 | # Note: Comment the next line if you want to checkin your web deploy settings, 447 | # but database connection strings (with potential passwords) will be unencrypted 448 | *.pubxml 449 | *.publishproj 450 | 451 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 452 | # checkin your Azure Web App publish settings, but sensitive information contained 453 | # in these scripts will be unencrypted 454 | PublishScripts/ 455 | 456 | # NuGet Packages 457 | *.nupkg 458 | # NuGet Symbol Packages 459 | *.snupkg 460 | # The packages folder can be ignored because of Package Restore 461 | **/[Pp]ackages/* 462 | # except build/, which is used as an MSBuild target. 463 | !**/[Pp]ackages/build/ 464 | # Uncomment if necessary however generally it will be regenerated when needed 465 | #!**/[Pp]ackages/repositories.config 466 | # NuGet v3's project.json files produces more ignorable files 467 | *.nuget.props 468 | *.nuget.targets 469 | 470 | # Microsoft Azure Build Output 471 | csx/ 472 | *.build.csdef 473 | 474 | # Microsoft Azure Emulator 475 | ecf/ 476 | rcf/ 477 | 478 | # Windows Store app package directories and files 479 | AppPackages/ 480 | BundleArtifacts/ 481 | Package.StoreAssociation.xml 482 | _pkginfo.txt 483 | *.appx 484 | *.appxbundle 485 | *.appxupload 486 | 487 | # Visual Studio cache files 488 | # files ending in .cache can be ignored 489 | *.[Cc]ache 490 | # but keep track of directories ending in .cache 491 | !?*.[Cc]ache/ 492 | 493 | # Others 494 | ClientBin/ 495 | ~$* 496 | *.dbmdl 497 | *.dbproj.schemaview 498 | *.jfm 499 | *.pfx 500 | *.publishsettings 501 | orleans.codegen.cs 502 | 503 | # Including strong name files can present a security risk 504 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 505 | #*.snk 506 | 507 | # Since there are multiple workflows, uncomment next line to ignore bower_components 508 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 509 | #bower_components/ 510 | 511 | # RIA/Silverlight projects 512 | Generated_Code/ 513 | 514 | # Backup & report files from converting an old project file 515 | # to a newer Visual Studio version. Backup files are not needed, 516 | # because we have git ;-) 517 | _UpgradeReport_Files/ 518 | Backup*/ 519 | UpgradeLog*.XML 520 | UpgradeLog*.htm 521 | ServiceFabricBackup/ 522 | *.rptproj.bak 523 | 524 | # SQL Server files 525 | *.mdf 526 | *.ldf 527 | *.ndf 528 | 529 | # Business Intelligence projects 530 | *.rdl.data 531 | *.bim.layout 532 | *.bim_*.settings 533 | *.rptproj.rsuser 534 | *- [Bb]ackup.rdl 535 | *- [Bb]ackup ([0-9]).rdl 536 | *- [Bb]ackup ([0-9][0-9]).rdl 537 | 538 | # Microsoft Fakes 539 | FakesAssemblies/ 540 | 541 | # GhostDoc plugin setting file 542 | *.GhostDoc.xml 543 | 544 | # Node.js Tools for Visual Studio 545 | .ntvs_analysis.dat 546 | node_modules/ 547 | 548 | # Visual Studio 6 build log 549 | *.plg 550 | 551 | # Visual Studio 6 workspace options file 552 | *.opt 553 | 554 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 555 | *.vbw 556 | 557 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) 558 | *.vbp 559 | 560 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) 561 | *.dsw 562 | *.dsp 563 | 564 | # Visual Studio 6 technical files 565 | 566 | # Visual Studio LightSwitch build output 567 | **/*.HTMLClient/GeneratedArtifacts 568 | **/*.DesktopClient/GeneratedArtifacts 569 | **/*.DesktopClient/ModelManifest.xml 570 | **/*.Server/GeneratedArtifacts 571 | **/*.Server/ModelManifest.xml 572 | _Pvt_Extensions 573 | 574 | # Paket dependency manager 575 | .paket/paket.exe 576 | paket-files/ 577 | 578 | # FAKE - F# Make 579 | .fake/ 580 | 581 | # CodeRush personal settings 582 | .cr/personal 583 | 584 | # Python Tools for Visual Studio (PTVS) 585 | __pycache__/ 586 | *.pyc 587 | 588 | # Cake - Uncomment if you are using it 589 | # tools/** 590 | # !tools/packages.config 591 | 592 | # Tabs Studio 593 | *.tss 594 | 595 | # Telerik's JustMock configuration file 596 | *.jmconfig 597 | 598 | # BizTalk build output 599 | *.btp.cs 600 | *.btm.cs 601 | *.odx.cs 602 | *.xsd.cs 603 | 604 | # OpenCover UI analysis results 605 | OpenCover/ 606 | 607 | # Azure Stream Analytics local run output 608 | ASALocalRun/ 609 | 610 | # MSBuild Binary and Structured Log 611 | *.binlog 612 | 613 | # NVidia Nsight GPU debugger configuration file 614 | *.nvuser 615 | 616 | # MFractors (Xamarin productivity tool) working folder 617 | .mfractor/ 618 | 619 | # Local History for Visual Studio 620 | .localhistory/ 621 | 622 | # Visual Studio History (VSHistory) files 623 | .vshistory/ 624 | 625 | # BeatPulse healthcheck temp database 626 | healthchecksdb 627 | 628 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 629 | MigrationBackup/ 630 | 631 | # Ionide (cross platform F# VS Code tools) working folder 632 | .ionide/ 633 | 634 | # Fody - auto-generated XML schema 635 | FodyWeavers.xsd 636 | 637 | # VS Code files for those working on multiple tools 638 | *.code-workspace 639 | 640 | # Local History for Visual Studio Code 641 | 642 | # Windows Installer files from build outputs 643 | 644 | # JetBrains Rider 645 | *.sln.iml 646 | 647 | ### VisualStudio Patch ### 648 | # Additional files built by Visual Studio 649 | 650 | # End of https://www.toptal.com/developers/gitignore/api/macos,windows,android,xcode,visualstudio,visualstudiocode,androidstudio -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AVPro Movie Capture 2 | [AVPro Movie Capture](http://renderheads.com/products/avpro-movie-capture/) is a Unity Plugin for advanced video capture to AVI/MP4 files 3 | 4 | This Github page is primarily for: 5 | 6 | 1) [**Reporting bugs and feature requests**](https://github.com/RenderHeads/UnityPlugin-AVProMovieCapture/issues) 7 | 2) [**Downloading the free trial version**](https://github.com/RenderHeads/UnityPlugin-AVProMovieCapture/releases) 8 | 9 | For more information and documentation visit the [AVPro Movie Capture Developer Portal](https://www.renderheads.com/content/docs/AVProMovieCapture/) 10 | --------------------------------------------------------------------------------