Skip to content

Commit

Permalink
check task
Browse files Browse the repository at this point in the history
  • Loading branch information
faroit committed May 13, 2024
1 parent f3fd8ef commit 95a533f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/test_write.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from stempeg.write import ChannelsWriter
from stempeg.cmds import MP4BOX_PATH
import stempeg
import numpy as np
import pytest
Expand Down Expand Up @@ -161,8 +162,6 @@ def ordered(obj):


def test_nistems():
mp4exc = stempeg.cmds.find_cmd("MP4Box")

stems, rate = stempeg.read_stems(stempeg.example_stem_path())
with tmp.NamedTemporaryFile(
delete=False,
Expand All @@ -175,7 +174,7 @@ def test_nistems():
sample_rate=rate,
writer=stempeg.NIStemsWriter()
)
callArgs = [mp4exc]
callArgs = [MP4BOX_PATH]
callArgs.extend(["-dump-udta", "0:stem", tempfile.name])
sp.check_call(callArgs)

Expand Down

0 comments on commit 95a533f

Please sign in to comment.