Instructions to use autotools/ai_video_studio with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use autotools/ai_video_studio with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: llama cli -hf autotools/ai_video_studio:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf autotools/ai_video_studio:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf autotools/ai_video_studio:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf autotools/ai_video_studio:Q4_K_M
Use Docker
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use autotools/ai_video_studio with Ollama:
ollama run hf.co/autotools/ai_video_studio:Q4_K_M
- Unsloth Studio
How to use autotools/ai_video_studio with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for autotools/ai_video_studio to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for autotools/ai_video_studio to start chatting
- Atomic Chat new
- Docker Model Runner
How to use autotools/ai_video_studio with Docker Model Runner:
docker model run hf.co/autotools/ai_video_studio:Q4_K_M
- Lemonade
How to use autotools/ai_video_studio with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull autotools/ai_video_studio:Q4_K_M
Run and chat with the model
lemonade run user.ai_video_studio-Q4_K_M
List all available models
lemonade list
File size: 18,253 Bytes
e6aed17 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 | #!/usr/bin/env python3
# Copyright 2026 Xiaomi Corp. (authors: Han Zhu)
#
# See ../../LICENSE for clarification regarding multiple authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Dataset and data-loading utilities for training and evaluation.
Provides WebDataset-based iterable datasets, manifest parsing, and audio/token
loading. Used by ``omnivoice.training.builder.build_dataloaders()`` to construct
train and eval data loaders.
Key functions:
- ``prepare_data_manifests_from_json()``: Parses a data config JSON into train/dev
manifests.
Key classes:
- ``WebDatasetReader``: Reads audio/text pairs from WebDataset tar shards as an
iterable dataset.
- ``MuxWebDatasetReader``: Multiplexes multiple WebDataset readers for
multilingual data.
- ``JsonlDatasetReader``: Reads audio/text pairs from a JSONL manifest file.
Used by data processing scripts (e.g. ``omnivoice/scripts/``).
- ``SampleDecoder``: Decodes individual samples (audio or tokens + labels).
"""
import io
import json
import logging
import os
import random
from typing import Any, Dict, Iterator, List, Optional, Tuple
import torch
import torch.distributed as dist
import webdataset as wds
from omnivoice.utils.audio import load_audio, load_audio_bytes
from torch.utils.data import IterableDataset
def load_audio_webdataset(data, sample_rate: int = 24000, device="cpu"):
"""
Load audio from bytes data and resample to the target sample rate if needed.
Return a tensor of shape (1, num_samples)
"""
audio = torch.from_numpy(load_audio_bytes(data, sample_rate))
audio = audio.to(device)
return audio
def prepare_data_manifests_from_json(
data_config: str,
) -> Tuple[List[Tuple[str, str, int, float]], List[Tuple[str, str, int, float]]]:
"""
Prepare data manifests from a json file.
A typical multilingual json file is in the following format:
{
"train":
[
{
"language_id": "en",
"manifest_path": [
"/Emilia/EN/data.lst"
],
"repeat": 1
},
{
"language_id": "zh",
"manifest_path": [
"/Emilia/ZH/data.lst"
],
"repeat": 1
}
],
"dev":
[
{
"language_id": "en",
"manifest_path": [
"/Emilia/EN-dev/data.lst"
],
"repeat": 1
},
{
"language_id": "zh",
"manifest_path": [
"/Emilia/ZH-dev/data.lst"
],
"repeat": 1
}
]
}
"language_id" is not used, just for better organization of multilingual data.
"repeat" is an optional field, default to 1, which indicates how many times
the manifest should be repeated.
The simplist format is like:
{
"train":
[
{
"manifest_path": [
"/Emilia/EN/data.lst",
"/Emilia/ZH/data.lst"
],
}
],
"dev":
[
{
"manifest_path": [
"/Emilia/EN-dev/data.lst",
"/Emilia/ZH-dev/data.lst"
],
}
]
data.lst format (items separated by space):
/path/to/data.tar /path/to/label.jsonl num_items num_seconds
"""
train_manifests = []
dev_manifests = []
with open(data_config, "r", encoding="utf-8") as f:
data = json.load(f)
for item in data["train"]:
manifest_paths = item["manifest_path"]
repeat = item.get("repeat", 1)
for manifest_path in manifest_paths:
# assert manifest_path is a file
assert os.path.isfile(manifest_path), f"{manifest_path} is not a file."
train_manifests.extend(
webdataset_manifest_reader(manifest_path) * repeat
)
if "dev" in data:
for item in data["dev"]:
manifest_paths = item["manifest_path"]
repeat = item.get("repeat", 1)
for manifest_path in manifest_paths:
dev_manifests.extend(
webdataset_manifest_reader(manifest_path) * repeat
)
return train_manifests, dev_manifests
def webdataset_manifest_reader(
manifest_path: str,
) -> List[Tuple[str, str]]:
"""
Read a manifest file containing webdataset tar paths and label jsonl paths.
Each line in the manifest file is in the format of:
/path/to/data.tar /path/to/label.jsonl num_items num_seconds
"""
manifests = []
with open(manifest_path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
parts = line.split()
if len(parts) != 4:
raise ValueError(
f"Invalid manifest line: {line}. "
f"Each line must contain "
"tar_path, label_jsonl_path, num_items, num_seconds."
)
tar_path, label_jsonl_path, num_items, num_seconds = (
parts[0],
parts[1],
int(parts[2]),
float(parts[3]),
)
manifests.append((tar_path, label_jsonl_path, num_items, num_seconds))
return manifests
class SampleDecoder:
"""
Decode a sample from webdataset, including loading audio/tokens and fetching label.
"""
def __init__(
self,
tar_to_label: Dict,
sample_rate: int = 24000,
audio_format: Optional[Tuple[str]] = None,
normalize_audio: bool = True,
):
"""
Args:
tar_to_label:
A dict mapping from audio tar file to label tar file.
sample_rate:
Target sample rate for audio. Required if audio is loaded.
audio_format:
Tuple of audio file extensions to look for in the sample.
"""
self.tar_to_label = tar_to_label
self.sample_rate = sample_rate
self.label_dataset = None
if audio_format is None:
self.audio_format = ("flac", "wav", "mp3")
else:
self.audio_format = audio_format
self.normalize_audio = normalize_audio
def __call__(self, sample):
return_dict = {}
src = sample["__url__"]
key = sample["__key__"]
if (
self.label_dataset is None
or self.label_dataset.path != self.tar_to_label[src]
):
self.label_dataset = LabelDataset(self.tar_to_label[src])
audio = torch.empty(0)
if "npy" in sample:
audio_tokens = torch.from_numpy(sample["npy"])
return_dict["audio_tokens"] = audio_tokens
else:
for ext in self.audio_format:
if ext in sample:
# load audio (1, num_samples)
audio = load_audio_webdataset(
sample[ext], sample_rate=self.sample_rate
)
if self.normalize_audio:
audio = (audio / (audio.abs().max() + 1e-7)) * 0.9
break
return_dict["audio"] = audio
return_dict["audio_duration"] = audio.size(-1) / self.sample_rate
label = self.label_dataset[key]
return_dict["label"] = label
return return_dict
class LabelDataset:
def __init__(self, jsonl_path: str):
"""
Load labels from a jsonl file.
Args:
jsonl_path:
Path to the jsonl file containing labels.
Each line in the manifest file is in the format of:
{"idx": "idx", "text": "transcription text"}
"""
self._labels = {}
self.path = jsonl_path
if not os.path.exists(jsonl_path):
raise FileNotFoundError(f"Label jsonl file {jsonl_path} does not exist.")
with open(jsonl_path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
item = json.loads(line)
if "id" in item:
self._labels[item["id"]] = item
def __getitem__(self, key):
return self._labels[key]
class IterableDataReader:
"Interfaces for classes reading data."
sample_rate: int
def set_epoch(self, epoch: int):
raise NotImplementedError
def __iter__(self) -> Iterator[Dict[str, Any]]:
raise NotImplementedError
def __len__(self) -> int:
raise NotImplementedError
class WrappedIterableDataset(IterableDataset):
"IterableDataset interfaces in this project."
def set_epoch(self, epoch: int):
raise NotImplementedError
def __iter__(self) -> Iterator[List[Dict[str, Any]]]:
raise NotImplementedError
class WebDatasetReader(IterableDataReader):
def __init__(
self,
manifests: List[Tuple[str, str, int, float]],
evaluation: bool = False,
shuffle_buffer_size: int = 20000,
sample_rate: int = 24000,
):
self.shuffle_buffer_size = shuffle_buffer_size
self.evaluation = evaluation
self.epoch = 0
self.orig_urls = []
self.tar_to_label = {}
self.num_items = 0
self.num_seconds = 0.0
for tar_path, label_jsonl_path, num_items, num_seconds in manifests:
self.orig_urls.append(tar_path)
self.tar_to_label[tar_path] = label_jsonl_path
self.num_items += num_items
self.num_seconds += num_seconds
self.urls = self.orig_urls.copy()
self.sample_decoder = SampleDecoder(
tar_to_label=self.tar_to_label,
sample_rate=sample_rate,
)
self.sample_rate = sample_rate
def set_epoch(self, epoch: int):
"""
Set the epoch for shuffling.
"""
self.epoch = epoch
self.urls = self.orig_urls.copy()
if not self.evaluation:
random.Random(epoch).shuffle(self.urls)
def __iter__(self) -> Iterator[Dict[str, Any]]:
dataset = wds.WebDataset(
self.urls,
shardshuffle=False,
workersplitter=wds.split_by_worker,
nodesplitter=wds.split_by_node,
)
pipeline = dataset.decode().map(self.sample_decoder)
if not self.evaluation:
pipeline = pipeline.shuffle(self.shuffle_buffer_size, seed=self.epoch)
return iter(pipeline)
def __len__(self) -> int:
return self.num_items
class JsonlDatasetReader(IterableDataReader):
"""Read raw JSONL and load audio files, matching WebDatasetReader output format.
Each JSONL line should be a JSON object with at least:
{"id": "...", "audio_path": "/path/to/audio.wav", ...}
Yields dicts of the form: {"audio": Tensor(1, T), "label": dict}
"""
def __init__(
self,
jsonl_path: str,
sample_rate: int = 24_000,
shuffle: bool = True,
shuffle_seed: int = 42,
normalize_audio: bool = True,
):
self.jsonl_path = jsonl_path
self.sample_rate = sample_rate
self.shuffle = shuffle
self.shuffle_seed = shuffle_seed
self.normalize_audio = normalize_audio
def set_epoch(self, epoch: int):
self.shuffle_seed = epoch
def _read_lines(self) -> list[dict]:
entries = []
with open(self.jsonl_path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if line:
entries.append(json.loads(line))
if self.shuffle:
random.seed(self.shuffle_seed)
random.shuffle(entries)
logging.info(
f"Shuffled {len(entries)} JSONL entries (seed={self.shuffle_seed})"
)
return entries
def _stream_lines(self):
with open(self.jsonl_path, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if line:
yield json.loads(line)
def __iter__(self):
source = self._read_lines() if self.shuffle else self._stream_lines()
# Split data across distributed ranks (multi-GPU / DDP)
if dist.is_initialized():
rank = dist.get_rank()
world_size = dist.get_world_size()
source = [item for i, item in enumerate(source) if i % world_size == rank]
# Split data across DataLoader workers to avoid duplication
worker_info = torch.utils.data.get_worker_info()
if worker_info is not None:
source = (
item
for i, item in enumerate(source)
if i % worker_info.num_workers == worker_info.id
)
for meta in source:
audio_path = meta.get("audio_path")
if not audio_path or not os.path.exists(audio_path):
logging.warning(
f"Skipping {meta.get('id', '?')}: audio_path missing or not found"
)
continue
try:
waveform = torch.from_numpy(
load_audio(audio_path, self.sample_rate)
)
if self.normalize_audio:
waveform = (waveform / (waveform.abs().max() + 1e-7)) * 0.9
meta["audio_duration"] = waveform.shape[1] / self.sample_rate
yield {"audio": waveform, "label": meta}
except Exception as e:
logging.warning(f"Skipping {meta.get('id', '?')}: {e}")
class MuxWebDatasetReader(IterableDataReader):
def __init__(
self,
readers: List[WebDatasetReader],
weights: Optional[List[float]] = None,
stop_early: bool = False,
seed: int = 0,
):
self.readers = readers
self.stop_early = stop_early
self.mux_iterator = LazyIteratorMultiplexer(
*readers,
stop_early=stop_early,
weights=weights,
seed=seed,
)
def set_epoch(self, epoch: int):
"""
Set the epoch for shuffling.
"""
for reader in self.readers:
reader.set_epoch(epoch)
def __iter__(self) -> Iterator[Dict[str, Any]]:
return iter(self.mux_iterator)
class LazyIteratorMultiplexer:
"""
A wrapper over multiple iterators that enables to combine
lazy manifests in Lhotse. During iteration, unlike
:class:`.LazyIteratorChain`,
:class:`.LazyIteratorMultiplexer` at each step randomly
selects the iterable used to yield an item.
Since the iterables might be of different length, we provide
a ``weights`` parameter to let the user decide which iterables
should be sampled more frequently than others.
When an iterable is exhausted, we will keep sampling from the other iterables, until
we exhaust them all, unless ``stop_early`` is set to ``True``.
"""
def __init__(
self,
*iterators: IterableDataReader,
stop_early: bool = False,
weights: Optional[List[float]] = None,
seed: int = 0,
) -> None:
self.iterators = list(iterators)
self.stop_early = stop_early
self.seed = seed
assert (
len(self.iterators) > 1
), "There have to be at least two iterables to multiplex."
if weights is None:
if all(hasattr(it, "__len__") for it in self.iterators):
lengths = [len(it) for it in self.iterators]
total_length = sum(lengths)
self.weights = [length / total_length for length in lengths]
else:
self.weights = [1] * len(self.iterators)
else:
self.weights = weights
assert len(self.iterators) == len(self.weights)
def __iter__(self):
rng = random.Random(self.seed)
iters = [iter(it) for it in self.iterators]
exhausted = [False for _ in range(len(iters))]
def should_continue():
if self.stop_early:
return not any(exhausted)
else:
return not all(exhausted)
while should_continue():
active_indexes, active_weights = zip(
*[
(i, w)
for i, (is_exhausted, w) in enumerate(zip(exhausted, self.weights))
if not is_exhausted
]
)
idx = rng.choices(active_indexes, weights=active_weights, k=1)[0]
selected = iters[idx]
try:
item = next(selected)
yield item
except StopIteration:
exhausted[idx] = True
continue
def __len__(self) -> int:
return sum(len(iterator) for iterator in self.iterators)
|