mirror of
https://github.com/SYSTRAN/faster-whisper.git
synced 2026-01-08 13:14:00 -05:00
Batching Support, Speed Boosts, and Quality Enhancements --------- Co-authored-by: Hargun Mujral <83234565+hargunmujral@users.noreply.github.com> Co-authored-by: MahmoudAshraf97 <hassouna97.ma@gmail.com>
19 lines
328 B
Python
19 lines
328 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def data_dir():
|
|
return os.path.join(os.path.dirname(os.path.abspath(__file__)), "data")
|
|
|
|
|
|
@pytest.fixture
|
|
def jfk_path(data_dir):
|
|
return os.path.join(data_dir, "jfk.flac")
|
|
|
|
|
|
@pytest.fixture
|
|
def physcisworks_path(data_dir):
|
|
return os.path.join(data_dir, "physicsworks.wav")
|