View | Details | Raw Unified | Return to bug 91092
Collapse All | Expand All

(-)Makefile (+4 lines)
Lines 69-74 Link Here
69
		SLIMDIR=${SLIMDIR} \
69
		SLIMDIR=${SLIMDIR} \
70
		CONFFILES="${CONFFILES}"
70
		CONFFILES="${CONFFILES}"
71
71
72
.if !defined(WITHOUT_FAAD)
73
RUN_DEPENDS+=	faad:${PORTSDIR}/audio/faad
74
.endif
75
72
pre-fetch:
76
pre-fetch:
73
.if !defined(SLIMDIR)
77
.if !defined(SLIMDIR)
74
	@${ECHO_MSG} ""
78
	@${ECHO_MSG} ""
(-)files/patch-convert.conf (+29 lines)
Added Link Here
1
--- convert.conf.orig	Thu Dec 29 22:27:54 2005
2
+++ convert.conf	Thu Dec 29 22:33:20 2005
3
@@ -34,7 +34,7 @@
4
 # specific combinations match before wildcards
5
 
6
 mov mp3 * *
7
-	[mov123] $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ -r - -
8
+	[faad] -w -f 2 $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ -b $BITRATE$ -r - -
9
 
10
 #ogg mp3 * *
11
 #	[oggdec] -Q -o - -R $FILE$ | [lame] --resample 44100 --silent -q $QUALITY$ --abr $BITRATE$ -r -x - -
12
@@ -100,7 +100,7 @@
13
 
14
 ## you can comment this out if you want to use LAME to transcode AAC/MOV files to MP3.
15
 mov aif * *
16
-	[mov123] $FILE$
17
+	[faad] -w -f 2 $FILE$
18
 
19
 wma wma squeezebox2 *
20
 	-
21
@@ -138,7 +138,7 @@
22
 	[mac] $FILE$ - -d | [flac] -cs --totally-silent --compression-level-0 -
23
 
24
 mov flc * *
25
-	[mov123] $FILE$ | [flac] -cs --totally-silent --compression-level-0 --endian big --sign signed --channels 2 --bps 16 --sample-rate 44100 -
26
+	[faad] -w -f 2 $FILE$ | [flac] -cs --totally-silent --compression-level-0 --endian big --sign signed --channels 2 --bps 16 --sample-rate 44100 -
27
 
28
 # special case for smart bitrates on mp3 input
29
 mp3 mp3 transcode *

Return to bug 91092