Skip to content

Commit

Permalink
Update obs-ndi
Browse files Browse the repository at this point in the history
  • Loading branch information
flcdrg committed Aug 14, 2024
1 parent 40cc4bf commit ce2a34c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 17 deletions.
12 changes: 6 additions & 6 deletions obs-ndi/obs-ndi.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>obs-ndi</id>
<version>4.13.1</version>
<version>4.14.1</version>
<packageSourceUrl>https://github.com/flcdrg/au-packages/tree/master/obs-ndi</packageSourceUrl>
<owners>flcdrg</owners>
<title>NewTek NDI integration for OBS Studio</title>
<authors>Stéphane Lepin</authors>
<projectUrl>https://github.com/obs-ndi/obs-ndi</projectUrl>
<projectUrl>https://github.com/DistroAV/DistroAV</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/aeliussaionji/chocopkgs@979a823c98cedde055c6004aebfc6d8a7bdef796/icons/obs-studio.png</iconUrl>
<licenseUrl>https://raw.githubusercontent.com/obs-ndi/obs-ndi/master/LICENSE</licenseUrl>
<licenseUrl>https://raw.githubusercontent.com/DistroAV/DistroAV/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/obs-ndi/obs-ndi</projectSourceUrl>
<bugTrackerUrl>https://github.com/obs-ndi/obs-ndi/issues</bugTrackerUrl>
<projectSourceUrl>https://github.com/DistroAV/DistroAV</projectSourceUrl>
<bugTrackerUrl>https://github.com/DistroAV/DistroAV/issues</bugTrackerUrl>
<tags>obs obs-studio ndi newtek</tags>
<summary>NewTek NDI integration for OBS Studio</summary>
<description>Network A/V in OBS Studio with NewTek's NDI technology.
Expand All @@ -24,7 +24,7 @@
- NDI Source : receive NDI video and audio in OBS
- NDI Output : transmit video and audio from OBS to NDI
- NDI Filter (a.k.a NDI Dedicated Output) : transmit a single source or scene to NDI</description>
<releaseNotes>This release is for OBS 30.0.0 or above. It is not a feature release, it simply provides updated binaries to support the changes made in OBS 30</releaseNotes>
<releaseNotes>https://github.com/DistroAV/DistroAV/releases/tag/4.14.1</releaseNotes>
<dependencies>
<dependency id="obs-studio" version="30.0" />
</dependencies>
Expand Down
10 changes: 5 additions & 5 deletions obs-ndi/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$ndiChecksum = 'BC666D409FA6B2D81FF8650A5B92481742F5E895E4994A1A414BAC423CD8448C'
$ndiChecksum = '93BAED79F27203C61A090093BD4A1BAFBB606C6A8E768D9DEA650AD23B7BDF71'

# DO NOT CHANGE THESE MANUALLY, USE update.ps1
$url = 'https://github.com/obs-ndi/obs-ndi/releases/download/4.13.1/obs-ndi-4.13.1-windows-x64-Installer.exe'
$checksum = 'a73f34baea9b3739fa501b7311cd00cd24ad243755e6081c24e7996141b671ea'
$url = 'https://github.com/DistroAV/DistroAV/releases/download/4.14.1/obs-ndi-4.14.1-windows-x64-Installer.exe'
$checksum = 'df272bd6efc3dca9e87998a6506ed55bc650aafbf9b61ac67b71d97a54d559ab'

# First, install NDI Runtime
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = 'http://ndi.link/NDIRedistV5'
softwareName = 'NDI 5 Runtime'
url = 'http://ndi.link/NDIRedistV6'
softwareName = 'NDI 6 Runtime'
checksum = $ndiChecksum
checksumType = 'sha256'
silentArgs = '/VERYSILENT /LOG /NORESTART /SUPPRESSMSGBOXES'
Expand Down
7 changes: 1 addition & 6 deletions obs-ndi/update.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
#Requires -Version 5.0
#Requires -Modules AU
[cmdletbinding()]
param (
[switch]$Force
)
Import-Module chocolatey-au

$ErrorActionPreference = 'Stop'

Expand Down

0 comments on commit ce2a34c

Please sign in to comment.