You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
439 B
Python
24 lines
439 B
Python
import click
|
|
|
|
from .scenario import Scenario
|
|
|
|
from ffx.test.helper import createMediaFile
|
|
|
|
class Scenario1(Scenario):
|
|
"""Creating file VAa, h264/aac/aac
|
|
Converting to VaA, vp9/opus/opus
|
|
No tmdb, default parameters"""
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def i_am(self):
|
|
return 1
|
|
|
|
def run(self):
|
|
|
|
click.echo(f"Running scenario 1")
|
|
|
|
createMediaFile(directory=self._testDirectory)
|
|
|