__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# SPDX-FileCopyrightText: 2019 Vincent Pinon <vpinon@kde.org>
# SPDX-FileCopyrightText: 2022 Julius Künzel <jk.kdedev@smartlab.uber.space>
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
import sys
import opentimelineio as otio
def print_help():
print("""
THIS SCRIPT IS PART OF KDENLIVE (www.kdenlive.org)
Usage: python3 otiointerface.py [options]
Where [options] is at least one of the following:
--export-suffixes print out file suffixes of all otio adapters that can be used for export (support write)
--import-suffixes print out file suffixes of all otio adapters that can be used for import (support read)
""")
if '--help' in sys.argv:
print_help()
sys.exit()
use_read = False
use_write = False
if '--export-suffixes' in sys.argv:
use_write = True
if '--import-suffixes' in sys.argv:
use_read = True
if not use_read and not use_write:
print_help()
sys.exit("Error: You need to provide at least one valid option")
suffixes = otio.adapters.suffixes_with_defined_adapters(
read=use_read, write=use_write
)
print('*.'+' *.'.join(sorted(suffixes)), end=' ')
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| checkgpu.py | File | 386 B | 0644 |
|
| checkpackages.py | File | 1.85 KB | 0644 |
|
| otiointerface.py | File | 1.13 KB | 0644 |
|
| speech.py | File | 1.98 KB | 0644 |
|
| speechtotext.py | File | 1.74 KB | 0644 |
|
| whispertosrt.py | File | 1.52 KB | 0644 |
|
| whispertotext.py | File | 2.93 KB | 0644 |
|