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
ratestring25set video rate
sizestringhd720set video size
fovfloat9040150set camera FoV
rollfloat0-180180set camera roll
pitchfloat0-180180set camera pitch
yawfloat0-180180set camera yaw
xzoomfloat10.0110set camera zoom
yzoomfloat10.0110set camera zoom
zzoomfloat10.0110set camera zoom
xposfloat0-6060set camera position
yposfloat0-6060set camera position
zposfloat0-6060set camera position
lengthint15160set length

FFmpeg also names these options (use the parameter shown above): rrate, ssize.


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.