Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Welcome to the Rockbox Technical Forums!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Recording
| | |-+  Recording Enhancements Pack
« previous next »
  • Print
Pages: 1 ... 11 12 [13] 14 15 ... 63

Author Topic: Recording Enhancements Pack  (Read 364642 times)

Offline Llorean

  • Member
  • *
  • Posts: 12931
Re: Recording Enhancements Pack
« Reply #180 on: March 16, 2006, 04:01:45 PM »
Rockbox does not, and has never so far, supported WMA.
Logged

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #181 on: March 16, 2006, 04:04:39 PM »
An inspired bit of coding there Vinylivo.... I like it!  :)

Instead of setting the arrays to a size of '2' though, you could set them to the size of 'NB_SCREENS' so that any number of screens are supported and  instead of hardcoding the  height of the remote as 64, you could change

Code: [Select]
else if (h[i] <= ((64 - 8) / 7))
to
Code: [Select]
else if (h[i] <= ((screens[i].height - 8) / 7))
....I think that should work... :D

Anyway...good stuff, have you made a patch with my new display code in? I'll put it in my build in post#1 if you have..  :) I think with your screen size testing idea I will only need one build now! ;D

Quote from: bennis
My player freezed dramatically ( reset button needed to be used) on some newly encoded music files, in wma format. Does Rockbox not support wma?? Can't recall having this problem before though...
No, Rockbox doesn't support WMA....are you sure you posted in the right thread?
« Last Edit: March 16, 2006, 05:33:06 PM by Mmmm »
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline vinylivo

  • Member
  • *
  • Posts: 125
Re: Recording Enhancements Pack
« Reply #182 on: March 17, 2006, 02:40:33 AM »
Quote from: Mmmm on March 16, 2006, 04:04:39 PM
An inspired bit of coding there Vinylivo.... I like it!  :)

Instead of setting the arrays to a size of '2' though, you could set them to the size of 'NB_SCREENS' so that any number of screens are supported and  instead of hardcoding the  height of the remote as 64, you could change

Code: [Select]
else if (h[i] <= ((64 - 8) / 7))
to
Code: [Select]
else if (h[i] <= ((screens[i].height - 8) / 7))
....I think that should work... :D

Ah yes of course, don't know why I didn't think of that! I'll try that when I'm back home...

And by the way I used the remote support patch from the flyspray tracker.
Logged

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #183 on: March 17, 2006, 09:54:44 AM »
Quote from: vinylivo on March 17, 2006, 02:40:33 AM
And by the way I used the remote support patch from the flyspray tracker.

I'm confused...that's  what paulheu said too.... but if so, how come the first change in your patch is
Code: [Select]
                     peak_meter_draw(0, peak_meter_y, LCD_WIDTH,
-                                    MIN(h, LCD_HEIGHT - peak_meter_y));
+                                    MIN(h, LCD_HEIGHT - peak_meter_y), false);
(from http://www.rockbox.org/bugs/task/4748)

Whereas the equivalent line in mine is
Code: [Select]
-                    peak_meter_draw(0, peak_meter_y, LCD_WIDTH,
-                                    MIN(h, LCD_HEIGHT - peak_meter_y));
+                    peak_meter_screen(gwps->display, 0, peak_meter_y,
+                                    MIN(h, display->height - peak_meter_y));
(from http://www.rockbox.org/bugs/task/4818)

The line in your patch is from my original (it doesn't use the display gui)....or am i looking in the wrong place or something ???
« Last Edit: March 17, 2006, 10:01:25 AM by Mmmm »
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #184 on: March 17, 2006, 01:51:26 PM »
Well I've merged Vinylivo's and my patch myself and added the variable fonts and made a couple of tiny changes...

Unfortunately, because the histogram takes up so much room, you cant really get a really big font to fit the main screen...only 12 pixels high max! 13 just wont go!  :(

You gan get 13 in if you are in mic mode, but where 's the fun in that eh?   :D
I think the solution would be to move something...hmmmm I'll think about it...
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #185 on: March 17, 2006, 02:43:08 PM »
Doh...ignore my last two posts... still working out how flyspray works!  ::)

heh heh....back to the drawing board.....
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline kingtone

  • Member
  • *
  • Posts: 13
Re: Recording Enhancements Pack
« Reply #186 on: March 18, 2006, 03:20:10 PM »
Hi,

I'm a touring musician who is WAY thankful for the enhancements for the H120 you all have provided to record live shows, etc. Thank you thank you thank you.

I had success loading the basic build (3.14.06) and the recording works fine. However, I just loaded the recording enhancements pak and the 'line in' setting no longer picks up any signal from my Sony ECM mic as it did before. I both tested the mic and even reloaded the old build which works fine. Am I doing something wrong?

As a mac user w/ no program/interface to 'patch' i have to rely on the latest build (on post #1). I'd really like to add the AGC stiff from Flyspray's page - does his build supercede this one or do i have to do a 'patch?'

Thanks!

lucio

www.kingtone.com
Logged
www.kingtone.com

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #187 on: March 18, 2006, 05:00:43 PM »
Post#1 now updated, AGC included along with changeable fonts and all the other stuff....

Try that out kingtone...maybe that'll work for you, although I never had a problem with the old version myself...
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline kingtone

  • Member
  • *
  • Posts: 13
Re: Recording Enhancements Pack
« Reply #188 on: March 18, 2006, 08:45:04 PM »
Thanks Mmmm!

Sorry if I'm being a retard...Is the build in your signature updated or the patch?

I loaded the build from your sig and ended up with an older looking affair (w/ out histogram etc) but, I was able to load Flyspray's 3.13.06 build and it works (but does not have the fancy double size meters, etc refered to on page 11).
Logged
www.kingtone.com

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #189 on: March 19, 2006, 06:45:28 AM »
Hmmm try it now, I've re-uploaded and tested it...this time it is definitely the right version (both patch and build in sig)
The 3.13.06 build on flyspray isnt a build I made so I can't vouch for what may or may not be included in that one!  :)

Post#1, definitely has the right versions now!   :D
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Recording Enhancements Pack
« Reply #190 on: March 19, 2006, 12:11:58 PM »
I sortof took over the experimental build on mistic river from needleboy..

It uses the latest recording enhancement patch and appears to work well..

http://www.misticriver.net/showthread.php?t=38915
Logged

Offline kingtone

  • Member
  • *
  • Posts: 13
Re: Recording Enhancements Pack
« Reply #191 on: March 19, 2006, 03:20:10 PM »
Thanks Mmmm. The problem was far too simple...after checking the file date on the rockbox.iriver file, i reset the browser cache and got the proper link to 3.18 build you posted on #1.  :P

The recording screen looks looks right, but there seems to be a problem with setting a theme. When accessing the 'browse themes' directory it autoloads the first menu item (boxes) and then returns you to the main directory.

paulheu - i tried your latest 3.19 build (rb-exp-03192006_1545) and got a 'checksum error' on reboot.
Logged
www.kingtone.com

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #192 on: March 19, 2006, 03:47:06 PM »
kingtone...I think this is a small bug with the oneclick insert patch... A workaround is to use right to select instead of pressing the joystick. Also if you change the 'click insert options' to something other than 'original behaviour' this problem goes away (but then clicking will add to playlist instead of just selecting!).
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline Mmmm

  • Developer
  • Member
  • *
  • Posts: 922
Re: Recording Enhancements Pack
« Reply #193 on: March 19, 2006, 03:53:00 PM »
Quote from: paulheu on March 19, 2006, 12:11:58 PM
I sortof took over the experimental build on mistic river from needleboy..

It uses the latest recording enhancement patch and appears to work well..

http://www.misticriver.net/showthread.php?t=38915
this is for H3xx right? I'll put a link to it in post#1
Logged
My H120 build with Recording Enhancements Pack
Some examples of recordings done on H140 with Rockbox

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Recording Enhancements Pack
« Reply #194 on: March 20, 2006, 12:36:42 PM »
Quote from: kingtone on March 19, 2006, 03:20:10 PM
paulheu - i tried your latest 3.19 build (rb-exp-03192006_1545) and got a 'checksum error' on reboot.

Hmmmm (pun intended.. ;) ) First time I heard about this.. we're a few builds further down the road now.. and I knw of no other people having this issue. Try a fresh install and reset your settings..
Logged

  • Print
Pages: 1 ... 11 12 [13] 14 15 ... 63
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Recording
| | |-+  Recording Enhancements Pack
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.097 seconds with 14 queries.