Skip to content

Commit

Permalink
Fix test CLI function's PSSH type
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaphoenix committed Nov 8, 2023
1 parent 79cdbc0 commit 5087da3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pywidevine/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def test(ctx: click.Context, device: Path, privacy: bool) -> None:
"""
# The PSSH is the same for all tracks both video and audio.
# However, this might not be the case for all services/manifests.
pssh = "AAAAW3Bzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADsIARIQ62dqu8s0Xpa" \
"7z2FmMPGj2hoNd2lkZXZpbmVfdGVzdCIQZmtqM2xqYVNkZmFsa3IzaioCSEQyAA=="
pssh = PSSH("AAAAW3Bzc2gAAAAA7e+LqXnWSs6jyCfc1R0h7QAAADsIARIQ62dqu8s0Xpa"
"7z2FmMPGj2hoNd2lkZXZpbmVfdGVzdCIQZmtqM2xqYVNkZmFsa3IzaioCSEQyAA==")

# This License Server requires no authorization at all, no cookies, no credentials
# nothing. This is often not the case for real services.
Expand Down

0 comments on commit 5087da3

Please sign in to comment.