Become a Site Supporter and Never see Ads again!

Author Topic: TLH solution for Ubuntu/nix?  (Read 3666 times)

0 Members and 1 Guest are viewing this topic.

Offline BlingFree

  • Trade Count: (2)
  • Taperssection Member
  • ***
  • Posts: 943
  • Gender: Male
  • Working the dumb end of a digital recorder.
    • Lossless Legs
TLH solution for Ubuntu/nix?
« on: May 07, 2008, 05:48:45 PM »
Recently installed Ubuntu Studio and before I install WINE and use TLH that way... is there anything native to Linux that compares?
Audio
* AKG SE-300B / CK 91 > Zoom H6
* powered by i.Sound Portable Power Max - 16000 mAh
Video
*coming soon??**

LMA uploads
bt.etree uploads
YouTube Playlists

Offline jacobmyers

  • Trade Count: (0)
  • Taperssection Regular
  • **
  • Posts: 135
  • The horror!
    • Prison City Archive
Re: TLH solution for Ubuntu/nix?
« Reply #1 on: May 09, 2008, 09:12:33 AM »
 Oh! That looks like just the thing I've been searching for. I found a bunch of stuff when I searched for "FLAC" in Synaptic but didn't find an all-in-one frontend like that. I don't recall even finding anything that'd do FFP's (which are required for submitting to archive.org) but I mustn't have been looking close enough. I'll try again when I'm at that machine...

Offline BlingFree

  • Trade Count: (2)
  • Taperssection Member
  • ***
  • Posts: 943
  • Gender: Male
  • Working the dumb end of a digital recorder.
    • Lossless Legs
Re: TLH solution for Ubuntu/nix?
« Reply #2 on: May 09, 2008, 06:55:47 PM »
Yeah I really couldnt find anything. Traders Little Helper seems to function ok with WINE. Not all options are available but its still the best thing so far. Hopefully TLH writers release a linux version.
Audio
* AKG SE-300B / CK 91 > Zoom H6
* powered by i.Sound Portable Power Max - 16000 mAh
Video
*coming soon??**

LMA uploads
bt.etree uploads
YouTube Playlists

Offline SmokinJoe

  • Trade Count: (63)
  • Needs to get out more...
  • *****
  • Posts: 4210
  • Gender: Male
  • "75 and sunny"... life is so much simpler.
    • uploads to archive.org
Re: TLH solution for Ubuntu/nix?
« Reply #3 on: May 12, 2008, 08:11:59 PM »
Dudes, if you are going to use Linux, forget about wine. Real men type funky commands.  ;D

Use command line "flac":
converting wav>flac: flac *.wav
converting flac>wav: flac -d *.flac
and more commonly I use "nice flac -delete-input-file *.wav" will convert wavs to flacs and remove the original wavs
I use that often enough that I add this line to my .bashrc alias nfdif='nice flac --delete-input-file'
so I can just type nfdif *.wav

checking:
md5sum -c somefile.md5
creating:
md5sum -b *.flac > somefile.md5
unix2dos somefile.md5  (play nice with others)

generating ffp files, I use this script called 'genffp'
#! /bin/bash
for i in *.flac; do
    echo "$i:`metaflac --list \"$i\" | grep MD5 | cut -d: -f2 | cut -c2-`";
    done
exit

and then type genffp > somefile.ffp followed by unix2dos !$ (where !$ is last parameter of last command, saves typing somefile.ffp

« Last Edit: May 12, 2008, 08:18:07 PM by SmokinJoe »
Mics: Schoeps MK4 & CMC5's / Gefell M200's & M210's / ADK-TL / DPA4061's
Pres: V3 / ST9100
Decks: Oade Concert Mod R4Pro / R09 / R05
Photo: Nikon D700's, 2.8 Zooms, and Zeiss primes
Playback: Raspberry Pi > Modi2 Uber > Magni2 > HD650

Offline newscane

  • Trade Count: (0)
  • Taperssection Member
  • ***
  • Posts: 536
  • Gender: Male
    • somuchtosay.net
Re: TLH solution for Ubuntu/nix?
« Reply #4 on: May 13, 2008, 10:20:21 PM »
Dudes, if you are going to use Linux, forget about wine. Real men type funky commands.  ;D

Use command line "flac":
converting wav>flac: flac *.wav
converting flac>wav: flac -d *.flac
and more commonly I use "nice flac -delete-input-file *.wav" will convert wavs to flacs and remove the original wavs
I use that often enough that I add this line to my .bashrc alias nfdif='nice flac --delete-input-file'
so I can just type nfdif *.wav

checking:
md5sum -c somefile.md5
creating:
md5sum -b *.flac > somefile.md5
unix2dos somefile.md5  (play nice with others)

generating ffp files, I use this script called 'genffp'
#! /bin/bash
for i in *.flac; do
    echo "$i:`metaflac --list \"$i\" | grep MD5 | cut -d: -f2 | cut -c2-`";
    done
exit

and then type genffp > somefile.ffp followed by unix2dos !$ (where !$ is last parameter of last command, saves typing somefile.ffp


I was having issues w/ the md5sum command to check md5s the other day.  Did a google search and came across this little thing:
http://etree-scripts.sourceforge.net/

There are scripts for checking md5s, and other things.  There's one called "flacify"... I think you can imagine out what it does :)
Current rig: Avantone CK-1 > UA-5 > DR-100mk11
Retired: JB3

My (DMB) shows: http://www.dmbexchange.com/list.php?user=newscane
My website: http://www.somuchtosay.net

Offline BlingFree

  • Trade Count: (2)
  • Taperssection Member
  • ***
  • Posts: 943
  • Gender: Male
  • Working the dumb end of a digital recorder.
    • Lossless Legs
Re: TLH solution for Ubuntu/nix?
« Reply #5 on: May 19, 2008, 08:01:41 PM »
I like TLH... what can i say?!  ;D

It works real well with WINE. i've only had one freeze up problem and that was due to my impatience.
Audio
* AKG SE-300B / CK 91 > Zoom H6
* powered by i.Sound Portable Power Max - 16000 mAh
Video
*coming soon??**

LMA uploads
bt.etree uploads
YouTube Playlists

Offline SmokinJoe

  • Trade Count: (63)
  • Needs to get out more...
  • *****
  • Posts: 4210
  • Gender: Male
  • "75 and sunny"... life is so much simpler.
    • uploads to archive.org
Re: TLH solution for Ubuntu/nix?
« Reply #6 on: May 19, 2008, 10:40:54 PM »

I was having issues w/ the md5sum command to check md5s the other day.  Did a google search and came across this little thing:
http://etree-scripts.sourceforge.net/

There are scripts for checking md5s, and other things.  There's one called "flacify"... I think you can imagine out what it does :)

Those are good.  I'm a programmer by trade, so I like to roll my own scripts... what can I say.
Mics: Schoeps MK4 & CMC5's / Gefell M200's & M210's / ADK-TL / DPA4061's
Pres: V3 / ST9100
Decks: Oade Concert Mod R4Pro / R09 / R05
Photo: Nikon D700's, 2.8 Zooms, and Zeiss primes
Playback: Raspberry Pi > Modi2 Uber > Magni2 > HD650

Offline jacobmyers

  • Trade Count: (0)
  • Taperssection Regular
  • **
  • Posts: 135
  • The horror!
    • Prison City Archive
Re: TLH solution for Ubuntu/nix?
« Reply #7 on: May 22, 2008, 03:55:51 AM »
 I use metaflac for generating FFP; I found a single line that reads checksums for all the FLAC files in a folder and spits them into a textfile (with whatever name you specify). I wrote it down near the studio computer (and I'm not there now) but it's something like:

Code: [Select]
metaflac --show-md5sums --with-filename /[yourfolder]/*.flac >> /[yourfolder]/[blah].ffp.txt
 I'll edit that tomorrow if it's not correct...

 Audacity has a pretty good built-in tagging system that allows for templates (so you only have to type your contact/gear info once). You can use a "Label track" to - aptly - label the tracks as you export them as FLAC. This, along with the template that you fill out before actually exporting, makes fine tags. And the comment field can be written (and saved as a template) beforehand if you want to save your contact info, gear notes, etc. in the comment field and keep it consistent between releases (recorded on the same gear). So yeah; I found that I could make do with what I have from Ubuntu Studio 8.04...
« Last Edit: May 22, 2008, 04:07:00 AM by jacobmyers »

Offline spott

  • Trade Count: (0)
  • Taperssection All-Star
  • ****
  • Posts: 1099
  • Gender: Male
Re: TLH solution for Ubuntu/nix?
« Reply #8 on: May 24, 2008, 12:35:53 PM »
Just a heads-up (for those interested), there's a 1.0-rc2 of Wine release the other day - not the 'best' route to go (IMO) but maybe this new version will be a bit more refined http://winehq.org/?announce=1.0-rc2


 

RSS | Mobile
Page created in 0.06 seconds with 33 queries.
© 2002-2024 Taperssection.com
Powered by SMF