Files
video-pipeline/modules/pt_poster.py
2025-07-23 11:52:09 -07:00

7 lines
285 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

def upload_to_peertube(video_path: Path, title: str, description: str) -> str:
"""
Stub for PeerTube upload replace with real implementation later.
"""
print("⚠️ PeerTube upload not yet implemented.")
return "https://peertube.example.com/video-placeholder"