Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/dispatchwrapparr/dashdrm.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

log = logging.getLogger(__name__)

__version__ = "1.7.6"
__version__ = "1.7.7"

'''
DASHDRM plugin for Dispatchwrapparr & Streamlink
Expand Down
3 changes: 1 addition & 2 deletions plugins/dispatchwrapparr/dispatchwrapparr.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from streamlink.stream.stream import Stream
from streamlink.options import Options

__version__ = "1.7.6"
__version__ = "1.7.7"

def parse_args():
# Initial wrapper arguments
Expand Down Expand Up @@ -174,7 +174,6 @@ def open(self):
"-c:v", self.vcodec,
"-c:a", self.acodec,
"-af", "loudnorm=I=-16",
"-copyts", "-start_at_zero", # copy timestamps but start them at zero so it syncs with audio stream - move to output option
"-f", "mpegts",
"pipe:1",
])
Expand Down
2 changes: 1 addition & 1 deletion plugins/dispatchwrapparr/hlsdrm.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

log = logging.getLogger(__name__)

__version__ = "1.7.6"
__version__ = "1.7.7"

'''
HLSDRM plugin for Dispatchwrapparr & Streamlink
Expand Down
2 changes: 1 addition & 1 deletion plugins/dispatchwrapparr/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Dispatchwrapparr",
"version": "1.7.6",
"version": "1.7.7",
"description": "An intelligent DRM/Clearkey capable stream profile for Dispatcharr",
"author": "jordandalley",
"maintainers": ["michaelmurfy"],
Expand Down
2 changes: 1 addition & 1 deletion plugins/dispatchwrapparr/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Plugin:
name = "Dispatchwrapparr"
version = "1.7.6"
version = "1.7.7"
description = "An intelligent DRM/Clearkey capable stream profile for Dispatcharr"
profile_name = "Dispatchwrapparr"
# Directory where dispatchwrapparr will be copied to
Expand Down
Loading