Skip to content

Commit

Permalink
Add compatibility list for encoders
Browse files Browse the repository at this point in the history
  • Loading branch information
jstabenow committed Jun 3, 2022
1 parent ee2a9c5 commit d6c530e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#### v1.0.0 > v1.1.0

- Add compatibility list for encoders
- Add "HLS cleanup" as an optional function ([Philipp Trenz](https://github.com/philipptrenz))
- Add /ui info to / ([#326](https://github.com/datarhei/restreamer/issues/326))
- Add Russian translation (thx Inthegamelp)
Expand Down
38 changes: 35 additions & 3 deletions src/utils/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ const topics = {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/edit-livestream/license',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/streameinstellungen/lizenz',
},
login: {
'login': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/login',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/dashboard',
},
main: {
'main': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/main-screen',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/hauptbildschirm',
},
Expand Down Expand Up @@ -73,7 +73,7 @@ const topics = {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/process-report',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/prozess-details',
},
publication: {
'publication': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/publications',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/publication-services',
},
Expand Down Expand Up @@ -161,6 +161,38 @@ const topics = {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/manual/wizard',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/user-guides/assistent',
},
'encoder-h264_omx': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#h264_omx',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#h264_omx',
},
'encoder-h264_v4l2m2m': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#h264_v4l2m2m',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#h264_v4l2m2m',
},
'encoder-h264_nvenc': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#h264_nvenc',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#h264_nvenc',
},
'encoder-h264_vaapi': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#h264_vaapi',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#h264_vaapi',
},
'encoder-h264_videotoolbox': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#h264_videotoolbox',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#h264_videotoolbox',
},
'encoder-libx264': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#libx264',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#libx264',
},
'encoder-libx265': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#libx265',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#libx265',
},
'encoder-libvpx-vp9': {
en: 'https://docs.datarhei.com/restreamer/knowledge-base/troubleshooting/encoding-compatibility-list#libvpx-vp9',
de: 'https://docs.datarhei.com/restreamer/v/de/wissensdatenbank/fehlersuche/kompatibilitaetsliste-fuer-encoder#libvpx-vp9',
},
};

function getTopicURL(topic, locale) {
Expand Down

0 comments on commit d6c530e

Please sign in to comment.