Skip to content

Commit

Permalink
Fix Icecast publication service settings (datarhei/restreamer#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstabenow committed Oct 17, 2022
1 parent 76ac60c commit 9d3fdb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### v1.4.0 > v1.4.1

- Fix use of TLS for input from local RTMP server
- Fix Icecast publication service settings
- Fix removes SRT bitstream on tee (OBS > RTMP > SRT is faulty)

### v1.3.0 > v1.4.0
Expand All @@ -14,9 +16,9 @@ Dependency:

### v1.2.0 > v1.3.0

- Add dlive & Trovo publication services
- Add low_delay option to processing (default: true)
- Mod uses the ingest stream for publication (datarhei/restreamer#411)
- Add dlive & Trovo publication services
- Mod optimized DVR on DiskFS
- Mod updates packages
- Fix SRT bitstream on tee
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "restreamer-ui",
"version": "1.4.0",
"version": "1.4.1",
"bundle": "restreamer-v2.3.0",
"private": false,
"license": "Apache-2.0",
Expand Down Expand Up @@ -92,4 +92,4 @@
"[email protected]": "patch:url-parse@npm:1.5.3#.yarn/patches/url-parse-npm-1.5.3-225ab9cae7.patch",
"react-error-overlay": "6.0.9"
}
}
}
2 changes: 2 additions & 0 deletions src/views/Publication/Services/Icecast.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ function Service(props) {
} else {
settings.options[what] = value;
}
} else {
settings[what] = value;
}

const output = createOutput(settings);
Expand Down

0 comments on commit 9d3fdb5

Please sign in to comment.