Skip to content
Snippets Groups Projects
Commit e1eaa86c authored by Simon Künzel's avatar Simon Künzel
Browse files

Fix ffprobe failing for files with data streams

parent d0fb7370
No related branches found
No related tags found
No related merge requests found
Pipeline #7595 passed
Pipeline: backend

#7596

    ......@@ -89,7 +89,7 @@ class FFProbe:
    self.audio_streams.append(probe_stream)
    else:
    probe_stream = FFProbeStream(
    codec=stream["codec_name"]
    codec=stream.get("codec_name")
    )
    self.all_streams.append(probe_stream)
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment