Package Details: fastoggenc 0.1.4-8

Git Clone URL: https://aur.archlinux.org/fastoggenc.git (read-only, click to copy)
Package Base: fastoggenc
Description: A parallelized Python script which converts MP3, M4A, WMA, WAV into OGG Vorbis
Upstream URL: https://sourceforge.net/projects/fastoggenc/
Keywords: 2010 eol python2 to-be-deleted unneeded unresolved-issues
Licenses: GPL3
Submitter: Testuser_01
Maintainer: MarsSeed
Last Packager: simon04
Votes: 17
Popularity: 0.000000
First Submitted: 2011-06-09 21:55 (UTC)
Last Updated: 2021-08-16 15:43 (UTC)

Dependencies (11)

Required by (0)

Sources (2)

Latest Comments

FabioLolix commented on 2021-08-16 06:33 (UTC)

Hello, license typing need to be GPL3 instead of GPLv3, wavepack correct name is wavpack

RandomArchUser83 commented on 2020-02-23 13:48 (UTC)

Requires mutagen-git for installation but program requires python-mutagen which breaks mutagens dependencies. broken.

simon04 commented on 2017-04-16 21:05 (UTC)

@jevv: Done in 0.1.4-5. The project seems rather dead, so I haven't tried to contact the developer.

je-vv commented on 2017-04-15 21:47 (UTC)

Please apply the following patch: +++++ % cat os_rename__to__shutil_move.patch diff -Naur fastoggenc-old/fastoggenc fastoggenc/fastoggenc --- fastoggenc-old/fastoggenc 2017-04-15 15:29:34.400646642 -0600 +++ fastoggenc/fastoggenc 2017-04-15 15:30:28.471085075 -0600 @@ -39,6 +39,7 @@ import sys import gettext import os, os.path +import shutil import re import multiprocessing import threading @@ -546,7 +547,7 @@ if self.decoder == 'mplayer': # Move the file for mplayer (which uses tempwav), so it works # for --preserve-wav. - os.rename(tempwav, self.songwav) + shutil.move(tempwav, self.songwav) if retcode != 0: return (False, None) else: +++++ It's necessary to prevent fastoggenc failing with: +++++ File "/usr/bin/fastoggenc", line 549, in decode os.rename(tempwav, self.songwav) OSError: [Errno 18] Invalid cross-device link +++++ That when the current directory FS doesn't match the final destination directory FS. See "http://pythoncentral.io/how-to-rename-move-a-file-in-python" for more details... That should move the AUR package to "-5" release BTW, :-) I'd attempt to also file a bug upstream... But honestly whether under any of: https://sourceforge.net/p/fastoggenc http://tuxamito.com/wiki/index.php/Fast_OGG_Encoder I didn't find a bug tracking mechanism, and I didn't find fastoggenc anywhere else... Perhaps the AUR maintainer is more familiar with upstream bug tracking... Thanks!

simon04 commented on 2015-08-30 18:45 (UTC)

Re-added `musepack-tools` to AUR. 0.1.4-4: Make some dependencies optional: * musepack-tools: for decoding Musepack files * wavepack: for decoding Wavepack files * cdparanoia: for reading CDs * cdrkit: for reading CDs

gim commented on 2015-08-30 13:36 (UTC)

`musepack-tools` package does not exist in AUR any more

Andy_Crowd commented on 2014-10-17 19:55 (UTC)

Links are not working any more

JabaDisa commented on 2014-10-01 11:44 (UTC)

The URL of the source is no longer valid. The project seems to be hosted at SourceForge. Please change the source to: http://downloads.sourceforge.net/project/fastoggenc/$pkgver/$pkgname-$pkgver.tar.gz You may adjust 'url' accordingly. Cheers

Testuser_01 commented on 2011-07-03 12:33 (UTC)

Thanks for this. I've merged your additions.

whitelynx commented on 2011-07-03 04:21 (UTC)

After installing this package, I got the error: ERROR: python-mutagen not installed in system Installing the `mutagen` package fixed the error; I've updated the PKGBUILD to include this dependency: http://paste.pocoo.org/show/427535/