/usr/bin/rpld-codec-helper is in roarplaylistd-codechelper-gst 0.1.9-3.
This file is owned by root:root, with mode 0o755.
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 | #!/bin/sh
# Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010
#
# This file is part of RoarAudio PlayList Daemon,
# a playlist management daemon for RoarAudio.
# See README for details.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3
# as published by the Free Software Foundation.
#
# RoarAudio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this software; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
{
gst-launch fdsrc fd=0 ! decodebin ! audioconvert ! capsfilter caps="audio/x-raw-int,width=16,channels=2,rate=44100" ! fdsink fd=3 > /dev/null 2> /dev/null
} 3>&1
#ll
|