/usr/share/doc/pacpl/modules/sample.m is in pacpl 4.0.5-7.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Sample MP5 codec - John Doe (johndoe@example.org)
#
# This is just a sample.
my $mp5 = {
NAME => 'mp5',
DEFAULT_ENCODER => 'ffmpeg',
DEFAULT_DECODER => 'lame',
TAGS => { READ => 0, WRITE => 0, MODULE => undef }, # do not change
ENCODER => {
ffmpeg => {
NAME => 'ffmpeg',
ESTR => sub { "-y -i %i %o" },
},
},
DECODER => {
lame => {
NAME => 'lame',
DSTR => sub { "--decode %i %o" },
},
},
};
import_module($mp5);
|