summaryrefslogtreecommitdiff
path: root/www/subsonic/files/message-transcoding.in
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2018-03-09 06:54:51 +0000
committerRene Ladan <rene@FreeBSD.org>2018-03-09 06:54:51 +0000
commite3053032b5c82b20388afccac016b4d676a17280 (patch)
treea64342da334c54e0b8f583bfcbbf2f19016cabd9 /www/subsonic/files/message-transcoding.in
parentmath/py-matplotlib: Add missing dependency devel/py-backports.functools_lru_c... (diff)
Remove expired ports:
2018-03-07 www/openxmldir: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/hastymail2: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/dalbum: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/iwebcal: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/impresscms: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/freeway: Unmaintained upstream, all www files wrongly belongs to www user. 2018-03-07 www/xaraya: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/subsonic: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/phpwebapp: Unmaintained upstream, all www files wrongly belongs to www user. 2018-03-07 www/hastymail: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/b2evolution: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/textpattern: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/eventum: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/quickie: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/jinzora: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/zen-cart: Unmaintained, no upstream, all www files wrongly belongs to www user. 2018-03-07 www/bblog: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/extjs: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/geeklog: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/lilurl: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/zikula: Unmaintained, no upstream, all www files wrongly belongs to www user. 2018-03-07 www/yii: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/phpmp: Unmaintained, all www files wrongly belongs to www user. 2018-03-07 www/lionwiki: Unmaintained, all www files wrongly belongs to www user.
Notes
Notes: svn path=/head/; revision=463933
Diffstat (limited to 'www/subsonic/files/message-transcoding.in')
-rw-r--r--www/subsonic/files/message-transcoding.in38
1 files changed, 0 insertions, 38 deletions
diff --git a/www/subsonic/files/message-transcoding.in b/www/subsonic/files/message-transcoding.in
deleted file mode 100644
index 6601ba9bc5b0..000000000000
--- a/www/subsonic/files/message-transcoding.in
+++ /dev/null
@@ -1,38 +0,0 @@
-Transcoding in Subsonic is a way to re-encode music on the fly to a format
-your listening device supports. A common use is transcoding FLAC, WMA,
-and Vorbis audio to MP3 for devices supporting only that codec.
-
-Configuring transcoding uses up to three commands one would use on a normal
-command line pipe but with a whitelist of executables installed or linked into
-%%SUBSONIC_HOME%%/transcode. The transcoding configuration page takes
-transcoding rules in the form of:
-
- [rule name] [convert from] [convert to] [command 1] [command 2] [command 3]
-
-The most compatible single audio transcoding command is with FFmpeg, transcoding
-any input to MP3, mapping all streams to output, and limiting metadata to the
-more-compatible ID3v2.3:
-
- [All to MP3] [ogg flac wma aiff m4a] [mp3] ...
- [ffmpeg -i %s -ab %bk -id3v2_version 3 -map_metadata 0 -map 0:0 -ar 44100 -ac 2 -v 0 -f mp3 -]
-
-You can also transcode with multiple single-codec commands to avoid
-the heavy FFmpeg dependency:
-
- [FLAC to MP3] [flac] [mp3] ...
- [flac --silent --decode --stdout %s] [lame --silent -h -b %b -]
-
- [AAC to MP3] [m4a] [mp3] ...
- [faad -s -o - %s] [lame --silent -h -b %b -]
-
- [Vorbis to MP3] [ogg] [mp3] ...
- [oggdec -Q -o /dev/stdout %s] [lame --silent -h -b %b -]
-
- [MPC to MP3] [mpc] [mp3] ...
- [mpcdec %s -] [lame --silent -h -b %b -]
-
- [APE to MP3] [ape] [mp3] ...
- [mac %s - -d] [lame --silent -h -b %b -]
-
- [Trackers to MP3] [mod s3m xm it] [mp3] ...
- [xmp -q -c %s] [lame --silent -h -b %b -]