*** empty log message ***
This commit is contained in:
parent
920ae85524
commit
08440d81f7
@ -1,12 +1,14 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
#!/bin/sh
|
||||
# @(#$Id: rclflac,v 1.1 2007-10-02 14:00:47 dockes Exp $ (C) 2007 J.F.Dockes
|
||||
#================================================================
|
||||
# rclflac
|
||||
# Handle flac audio files for recoll.
|
||||
#================================================================
|
||||
# set variables
|
||||
LANG=C ; export LANG
|
||||
LC_ALL=C ; export LC_ALL
|
||||
progname="rcljpeg"
|
||||
decoder=exiftool
|
||||
#decoder=ps2ascii
|
||||
filetype=jpeg
|
||||
progname="rclflac"
|
||||
filetype=media
|
||||
|
||||
|
||||
#RECFILTCOMMONCODE
|
||||
@ -68,28 +70,36 @@ then
|
||||
senderror INPUTNOSUCHFILE "$infile"
|
||||
fi
|
||||
|
||||
# protect access to our temp files and directories
|
||||
umask 77
|
||||
|
||||
##############################################################################
|
||||
# !! Leave the following line unmodified !
|
||||
#ENDRECFILTCOMMONCODE
|
||||
|
||||
checkcmds $decoder
|
||||
checkcmds metaflac
|
||||
|
||||
echo '
|
||||
<html>
|
||||
<head>
|
||||
<title>
|
||||
</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
'
|
||||
exiftool -q -q -m -IPTC:all "$infile" | sed -e 's/$/<br>/'
|
||||
# output the result
|
||||
echo '<html><head>'
|
||||
#echo '<title>' "$title" '</title>'
|
||||
echo '<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">'
|
||||
echo '</head><body>'
|
||||
echo '<pre>'
|
||||
|
||||
echo '
|
||||
</body>
|
||||
</html>
|
||||
'
|
||||
nocaptionexp='s/ *comment\[.*\]: .*=//p'
|
||||
kpcaptionexp='s/ *comment\[.*\]: //p'
|
||||
|
||||
if test X$RECOLL_FILTER_FORPREVIEW = Xyes ; then
|
||||
captionexp=$kpcaptionexp
|
||||
else
|
||||
captionexp=$nocaptionexp
|
||||
fi
|
||||
|
||||
metaflac --list "$infile" | \
|
||||
sed -n \
|
||||
-e '/comment\[/s/</</g' \
|
||||
-e '/comment\[/s/&/&/g' \
|
||||
-e '/comment\[/'"$captionexp"
|
||||
|
||||
echo '</pre>'
|
||||
echo '</body></html>'
|
||||
|
||||
# exit normally
|
||||
exit 0
|
||||
106
src/filters/rclogg
Executable file
106
src/filters/rclogg
Executable file
@ -0,0 +1,106 @@
|
||||
#!/bin/sh
|
||||
# @(#$Id: rclogg,v 1.1 2007-10-02 14:00:47 dockes Exp $ (C) 2007 J.F.Dockes
|
||||
#================================================================
|
||||
# rclogg
|
||||
# Handle ogg audio files for recoll.
|
||||
#================================================================
|
||||
# set variables
|
||||
LANG=C ; export LANG
|
||||
LC_ALL=C ; export LC_ALL
|
||||
progname="rclogg"
|
||||
filetype=ogg
|
||||
|
||||
|
||||
#RECFILTCOMMONCODE
|
||||
##############################################################################
|
||||
# !! Leave the previous line unmodified!! Code imported from the
|
||||
# recfiltcommon file
|
||||
|
||||
# Utility code common to all shell filters. This could be sourced at run
|
||||
# time, but it's slightly more efficient to include the code in the
|
||||
# filters at build time (with a sed script).
|
||||
|
||||
# Describe error in a way that can be interpreted by our caller
|
||||
senderror()
|
||||
{
|
||||
echo RECFILTERROR $*
|
||||
# Also alert on stderr just in case
|
||||
echo ":2:$progname::: $*" 1>&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
iscmd()
|
||||
{
|
||||
cmd=$1
|
||||
case $cmd in
|
||||
*/*)
|
||||
if test -x $cmd ; then return 0; else return 1; fi ;;
|
||||
*)
|
||||
oldifs=$IFS; IFS=":"; set -- $PATH; IFS=$oldifs
|
||||
for d in $*;do test -x $d/$cmd && return 0;done
|
||||
return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
||||
checkcmds()
|
||||
{
|
||||
for cmd in $*;do
|
||||
if iscmd $cmd
|
||||
then
|
||||
a=1
|
||||
else
|
||||
senderror HELPERNOTFOUND $cmd
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
# show help message
|
||||
if test $# -ne 1 -o "$1" = "--help"
|
||||
then
|
||||
echo "Convert a $filetype file to HTML text for Recoll indexing."
|
||||
echo "Usage: $progname [infile]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
infile="$1"
|
||||
|
||||
# check the input file existence (may be '-' for stdin)
|
||||
if test "X$infile" != X- -a ! -f "$infile"
|
||||
then
|
||||
senderror INPUTNOSUCHFILE "$infile"
|
||||
fi
|
||||
|
||||
##############################################################################
|
||||
# !! Leave the following line unmodified !
|
||||
#ENDRECFILTCOMMONCODE
|
||||
|
||||
checkcmds ogginfo
|
||||
|
||||
# output the result
|
||||
echo '<html><head>'
|
||||
#echo '<title>' "$title" '</title>'
|
||||
echo '<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">'
|
||||
echo '</head><body>'
|
||||
echo '<pre>'
|
||||
|
||||
nocaptionexp='/=/s/.*=//p'
|
||||
kpcaptionexp='/=/p'
|
||||
|
||||
if test X$RECOLL_FILTER_FORPREVIEW = Xyes ; then
|
||||
captionexp=$kpcaptionexp
|
||||
else
|
||||
captionexp=$nocaptionexp
|
||||
fi
|
||||
|
||||
# Note: ogginfo output is unparseable: the COMMENT field can be
|
||||
# multiline, but there is no way to detect the end of the 'User
|
||||
# comments' area
|
||||
ogginfo "$infile" | \
|
||||
sed -n \
|
||||
-e "$captionexp"
|
||||
|
||||
echo '</pre>'
|
||||
echo '</body></html>'
|
||||
|
||||
# exit normally
|
||||
exit 0
|
||||
Loading…
x
Reference in New Issue
Block a user