The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

=head1 NAME
Media::Convert::Asset::ProfileFactory - Create an output profile from an input video.
=head1 SYNOPSIS
use Media::Convert::Asset;
use Media::Convert::Pipe;
use Media::Convert::Asset::ProfileFactory;
package Media::Convert::Asset::Profile::myprofile;
use Moose;
extends Media::Convert::Asset::Profile::webm;
has '+audio_samplerate' => (
builder => '_probe_my_audiorate',
);
has '+audio_codec' => (
default => 'vorbis',
);
sub _probe_exten {
return 'my.webm',
}
sub _probe_my_audiorate {
my $self = shift;
return $self->reference->audio_samplerate / 2;
}
no Moose;
package main;
my $input = Media::Convert::Asset->new(url => "foo.mp4");
my $profile = Media::Convert::Asset::ProfileFactory->create("myprofile", $input);
my $output = Media::Convert::Asset->new(url => "foo." . $profile->exten, reference => $profile);
Media::Convert::Pipe->new(inputs => [$input], output => $output)->run();
# Or using an ad-hoc profile:
$profile = Media::Convert::Asset::ProfileFactory->create("extraprofile", $input,
{
extraprofile => {
parent => "webm",
settings => { audio_codec => "vorbis", quality => 10 },
}
});
# After this, using the profile happens exactly the same way.
=head1 DESCRIPTION
C<Media::Convert::Asset::Profile::Base> is a subclass of Media::Convert::Asset,
but with a number of the probing methods overridden so that they return values
that are not in line with the reference of the given video.
The C<Media::Convert::Asset::ProfileFactory>'s C<create> method is a simple
helper to:
=over
=item *
ensure that the relevant C<Media::Convert::Asset::Profile::I<profile>> module
has been loaded (the module for the C<parent> attribute of the ad-hoc
profile, if one is chosen)
=item *
create a L<Media::Convert::Asset> subclass of the right type, with reference
set to the passed input C<Media::Convert::Asset> object.
=item *
if an ad-hoc profile was selected, ensure that the relevant attributes
of the resulting object are set to the values in the C<settings> key of
the ad-hoc profile's settings
=back
=head1 CREATING NEW PROFILES
It is possible to create a new profile by extending an existing one. The
C<myprofile> profile in the above example demonstrates how to do so. Any
property that is known by L<Media::Convert::Asset> can be overridden in the
manner given.
Alternatively, one can create new profiles in the ad-hoc manner. This is
easier, since it only requires an extra parameter be passed to the
C<create> function; however, profiles created in this manner can only
hardcode values, and cannot vary any parameters based on the input file.
To create a profile that can do so, when the new profile just changes a
minor detail of an existing profile, extend that profile and change the
detail which you want to change. To create a new profile from scratch,
extend the C<Base> profile (see below).
=head1 PRE-EXISTING PROFILES
The following profiles are defined by C<Media::Convert::Asset::ProfileFactory>:
=cut
package Media::Convert::Asset::Profile::Base; ## no critic(MatchesPackage)
=head2 Base
This profile serves as a base class for the other profiles. It should
not be used directly.
It adds the extension, and defaults the pixel format to yuv420p.
=cut
use Moose;
has '+reference' => (
required => 1,
);
has 'exten' => (
lazy => 1,
is => 'ro',
builder => '_probe_exten',
);
has '+pix_fmt' => (
builder => '_build_pixfmt',
);
sub _build_pixfmt {
return 'yuv420p';
}
sub _probe_exten {
...
}
=head2 vp9
Produces a video in WebM/VP9 format, using the quality/bitrate settings
recommended by Google on L<https://developers.google.com/media/vp9/>,
and with OPUS audio. Produces files with the C<vp9.webm> extension.
Audio settings are hardcoded to 48KHz sampling rate, 128k bits per
second.
=cut
use Moose;
sub _probe_exten {
return 'vp9.webm'
}
my %rates_30 = (
240 => 150,
360 => 276,
480 => 750,
720 => 1024,
1080 => 1800,
1440 => 6000,
2160 => 12000
);
my %rates_50 = (
240 => 150,
360 => 276,
480 => 750,
720 => 1800,
1080 => 3000,
1440 => 9000,
2160 => 18000
);
my %quals = (
240 => 37,
360 => 36,
480 => 33,
720 => 32,
1080 => 31,
1440 => 24,
2160 => 15,
);
sub _probe_videobitrate {
my $self = shift;
if(eval($self->video_framerate) > 30) { ## no critic(StringyEval)
return $rates_50{$self->video_height};
} else {
return $rates_30{$self->video_height};
}
}
sub _probe_audiorate {
return "48000";
}
sub _probe_audiobitrate {
return "128k";
}
sub _probe_quality {
my $self = shift;
return $quals{$self->video_height};
}
sub speed {
my $self = shift;
if($self->reference->has_pass) {
if($self->reference->pass == 1 || $self->video_height < 720) {
return 4;
}
return 2;
}
return 4;
}
sub _probe_videocodec {
return "vp9";
}
sub _probe_audiocodec {
return "opus";
}
no Moose;
=head2 vp8
Produces a video in WebM/VP8 format. Since no similar recommendations
for VP8 exist as do for VP9, no explicit quality or bitrate settings are
configured in this profile. The libvpx video codec is selected, and the
libvorbis one for audio.
The audio bitrate is explicitly left to ffmpeg defaults; the extension
is set to C<vp8.webm>
=cut
use Moose;
sub _probe_exten {
return 'vp8.webm';
}
sub _probe_videocodec {
return "vp8";
}
sub _probe_audiocodec {
return "vorbis";
}
sub _probe_audiobitrate {
return;
}
no Moose;
=head2 webm
This profile subclasses from the C<vp9> profile, and only changes the
extension to plain C<webm> instead of C<vp9.webm>.
Note that future versions of this class may switch to subclassing from
the AV1 profile rather than the VP9 profile, although this will not
happen before AV1 encoding can be done at reasonable speeds by
Media::Convert.
=cut
use Moose;
sub _probe_exten {
return 'webm',
}
no Moose;
=head2 vp8_lq
This profile subclasses from the C<vp8> profile. The extension is set to
C<lq.webm>. In addition to the changes made by the C<vp8> profile, this
profile also rescales the video to a fraction of the original; that is,
the height and width of the video are both divided by 4.
=cut
use Moose;
sub _probe_exten {
return 'lq.webm',
}
sub _probe_height {
my $self = shift;
return unless defined ($self->reference->video_height);
return int($self->reference->video_height / 4);
}
sub _probe_width {
my $self = shift;
return unless defined ($self->reference->video_width);
return int($self->reference->video_width / 4);
}
sub _probe_videosize {
my $self = shift;
my $width = $self->video_width;
my $height = $self->video_height;
return unless defined($width) && defined($height);
return unless $width && $height;
return $self->video_width . "x" . $self->video_height;
}
no Moose;
use Module::Runtime qw/require_module/;
sub create {
my $class = shift;
my $profile = shift;
my $ref = shift;
my $profiles = shift;
if(!defined($profiles)) {
$profiles = {};
}
if(!exists($profiles->{$profile})) {
require_module("Media::Convert::Asset::Profile::$profile");
return "Media::Convert::Asset::Profile::$profile"->new(url => '', reference => $ref);
} else {
my $parent = $profiles->{$profile}{parent};
require_module("Media::Convert::Asset::Profile::$parent");
my $rv = "Media::Convert::Asset::Profile::$parent"->new(url => '', reference => $ref, %{$profiles->{$profile}{settings}});
return $rv;
}
die "Unknown profile $profile requested!";
}
1;
=head1 SEE ALSO
L<Media::Convert::Asset>, L<Media::Convert::Profile::mp4>,
L<Media::Convert::Profile::mpeg2>, L<Media::Convert::Profile::copy>