Spaces:
Build error
Build error
| from modelscope.pipelines import pipeline | |
| from modelscope.outputs import OutputKeys | |
| # ุชุญู ูู ุงูู ูุฏูู ุงูุตุญูุญ | |
| video_gen = pipeline( | |
| task="text-to-video-synthesis", | |
| model="damo/text-to-video-synthesis" | |
| ) | |
| # ุชูููุฏ ุงูููุฏูู ู ู ุงููุต | |
| output = video_gen({'text': 'A panda eating bamboo on a rock'}) | |
| print('โ Video saved to:', output[OutputKeys.OUTPUT_VIDEO]) | |