diff --git a/streaming/gpu_output.py b/streaming/gpu_output.py index df43154..06419fc 100644 --- a/streaming/gpu_output.py +++ b/streaming/gpu_output.py @@ -386,3 +386,10 @@ class GPUHLSOutput: @property def playlist_cid(self) -> Optional[str]: return self._playlist_cid + + @property + def playlist_url(self) -> Optional[str]: + """Get the full IPFS URL for the playlist.""" + if self._playlist_cid: + return f"{self.ipfs_gateway}/{self._playlist_cid}" + return None