Search Criteria
Package Details: fastoggenc 0.1.4-6
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/ |
Licenses: | |
Submitter: | Testuser_01 |
Maintainer: | simon04 |
Last Packager: | simon04 |
Votes: | 17 |
Popularity: | 0.000000 |
First Submitted: | 2011-06-09 21:55 |
Last Updated: | 2020-01-26 12:42 |
Dependencies (11)
- faad2 (faad2-git)
- flac (flac-git, flac-nodocs-git, flac-minimal-git)
- lame (lame-svn, lame-altivec)
- mpg123 (mpg321, mpg123-svn)
- mplayer (mplayer-light-svn, mplayer2, mplayer2-build-git, mplayer-vaapi, mplayer-svn, mplayer-gui, mplayer-gui-svn)
- mutagen
- vorbis-tools (vorbis-tools-git)
- cdparanoia (cdparanoia-overread) (optional) – for reading CDs
- cdrkit (cdrtools) (optional) – for reading CDs
- musepack-tools (musepack-tools-svn) (optional) – for decoding Musepack files
- wavepack (optional) – for decoding Wavepack files
Latest Comments
RandomArchUser83 commented on 2020-02-23 13:48
Requires mutagen-git for installation but program requires python-mutagen which breaks mutagens dependencies. broken.
simon04 commented on 2017-04-16 21:05
@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
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
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
`musepack-tools` package does not exist in AUR any more
Andy_Crowd commented on 2014-10-17 19:55
Links are not working any more
JabaDisa commented on 2014-10-01 11:44
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
Thanks for this. I've merged your additions.
whitelynx commented on 2011-07-03 04:21
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/