Skip to content

A3dscope

Audio Video Single output Transform

Convert input audio to 3d scope video output.

FFmpeg filter: a3dscope — the official reference.

Add it to a graph. The explicit form works for every filter — bind it to its input and read the result from outputs():

$node = $video->addFilter(new A3dscope(…));
$result = $node->outputs()[0];

Shorthand. Single-output filters can skip the node — apply() returns the result stream directly:

$result = $video->apply(new A3dscope(…));

TODO — when this filter shines: what it’s the right tool for, what to reach for instead when it isn’t, and how it composes with neighbouring filters.

TODO — prose: how the filter actually works and what its key parameters mean (the explanation FFmpeg’s terse option help omits).

TODO — runnable PHP, with the equivalent ffmpeg CLI alongside.

TODO

TODO

ParameterTypeDefaultRange / valuesDescription
ratestring25—set video rate
sizestringhd720—set video size
fovfloat9040–150set camera FoV
rollfloat0-180–180set camera roll
pitchfloat0-180–180set camera pitch
yawfloat0-180–180set camera yaw
xzoomfloat10.01–10set camera zoom
yzoomfloat10.01–10set camera zoom
zzoomfloat10.01–10set camera zoom
xposfloat0-60–60set camera position
yposfloat0-60–60set camera position
zposfloat0-60–60set camera position
lengthint151–60set length

FFmpeg also names these options (use the parameter shown above): r → rate, s → size.


Maps to FFmpeg’s a3dscope filter. Verified against ffmpeg n7.1.1.

An Artisan Build project.

Built on FFmpeg — an independent binding, not affiliated with or endorsed by the FFmpeg project. Support FFmpeg.