Author |
Message |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Sat 21 Sep 2013, 16:33 Post subject:
|
|
I put Rodin's new Russian translation in the NLS package.
____________________________________________________
|
Back to top
|
|
 |
vicmz

Joined: 15 Jan 2012 Posts: 1268
|
Posted: Thu 26 Sep 2013, 17:41 Post subject:
Spanish locale Subject description: for BaconRecorder |
|
I finally found some time to check the Spanish locale.
Description |
|
Filesize |
160.75 KB |
Viewed |
561 Time(s) |

|
Description |
remove false .gz extension
|

Download |
Filename |
baconrecorder.mo.gz |
Filesize |
7.74 KB |
Downloaded |
364 Time(s) |
_________________ Puppy Linux en español
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Thu 26 Sep 2013, 20:08 Post subject:
|
|
Thanks. I'll post on Saturday.
_______________________
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Sat 28 Sep 2013, 15:58 Post subject:
|
|
New version 4.2
Improvements
1) The recording name will be in foreign language name
if there is a fresh install. Here's the Spanish recording.
2) Spanish put in NLS pet package (thanks to vicmz)
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Mon 07 Oct 2013, 19:23 Post subject:
|
|
version 4.3
new feature - two new icons added to update the
time and date
This is a nice feature to avoid having to relaunch baconrecorder
just to obtain the current time and date
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Thu 10 Oct 2013, 19:24 Post subject:
|
|
version 4.4
-changed the interface slightly
___________________________________
I noticed that if you run a gettext version of
baconrecorder on an old version of Puppy
like Fluppy the Xdialog messages are often blank.
The solution is to go to an older version of
baconrecorder (before 4.0)
________________________________________
|
Back to top
|
|
 |
step
Joined: 04 May 2012 Posts: 1030
|
Posted: Fri 01 Nov 2013, 12:32 Post subject:
|
|
don570 wrote: | version 4.4
I noticed that if you run a gettext version of
baconrecorder on an old version of Puppy
like Fluppy the Xdialog messages are often blank.
The solution is to go to an older version of
baconrecorder (before 4.0) | Where can I download such a version, please?
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Sat 02 Nov 2013, 15:40 Post subject:
|
|
Here's an old version you can try..
Description |
old version for old version of getpet
|

Download |
Filename |
baconrecorder-3.1.pet |
Filesize |
29.89 KB |
Downloaded |
359 Time(s) |
|
Back to top
|
|
 |
step
Joined: 04 May 2012 Posts: 1030
|
Posted: Wed 06 Nov 2013, 02:58 Post subject:
|
|
thank you. 3.1 on fluppy seems to work, for the my limited testing so far.
|
Back to top
|
|
 |
Pelo
Joined: 10 Sep 2011 Posts: 12591 Location: Mer méditerrannée (1 kms°)
|
Posted: Fri 13 Jun 2014, 06:23 Post subject:
Button "Pause" bouton Bacon Recorder 4.1 Subject description: Default recorder PupJibaro |
|
Button "Pause" bouton No hay ?
No "pause Button" ?
Bacon recorder records, but a pause button would be helpfull. Perhaps i Did not see it.
Precord installed waiting some news.
I translate english spoken how-to to french. Speaking is much faster than writing. But sometimes i need some time to understand the english text, that is the reason why a "pause" button would be helpful, entiende usted ?
_________________ Passenger Pelo ! don't ask him to repair the aircraft. Don't use him as a demining dog .... pleeease.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Sat 14 Jun 2014, 13:38 Post subject:
|
|
I think that putting a pause button in the window would be difficult.
I use the arecord command which does support pause however
it has to be done in the terminal.
Quote: |
Options
-i, --interactive
Allow interactive operation via stdin. Currently only pause/resume via space or enter key is implemented.
|
What I do to pause is click the stop button. Then wait for something
interesting on the radio.
When my favorite show begins then I set the length of recording
and click "Begin recording"
Two files are created rather than one but
that make no difference.
________________________________________
|
Back to top
|
|
 |
SFR

Joined: 26 Oct 2011 Posts: 1655
|
Posted: Sat 14 Jun 2014, 14:17 Post subject:
|
|
Hey Don
You should be able to "pause" arecord using SIGSTOP and "unpause" it with SIGCONT signals.
Here's an example that works for me:
Code: | #!/bin/sh
# sh won't recognize "literal" signals' names, but in bash it would be ok
SIGSTOP=19
SIGCONT=18
SIGTERM=15
f_pause () {
kill -s ${SIGSTOP} ${A_PID}
}
f_unpause () {
kill -s ${SIGCONT} ${A_PID}
}
f_stop () {
kill -s ${SIGTERM} ${A_PID}
}
# start recording (alter it, if additional options are needed)
arecord /root/testrec.wav & A_PID=$!
sleep 3
f_pause
sleep 3
f_unpause
sleep 3
f_pause
sleep 3
f_unpause
sleep 3
f_stop
exit |
Greetings!
_________________ [O]bdurate [R]ules [D]estroy [E]nthusiastic [R]ebels => [C]reative [H]umans [A]lways [O]pen [S]ource
Omnia mea mecum porto.
|
Back to top
|
|
 |
don570

Joined: 10 Mar 2010 Posts: 4988 Location: Ontario
|
Posted: Sat 14 Jun 2014, 14:30 Post subject:
|
|
I never knew about SIGSTOP
I'll use it if I can get it to work.
_________________________________
|
Back to top
|
|
 |
charlie6

Joined: 30 Jun 2008 Posts: 1199 Location: Saint-Gérard / Walloon part of Belgium
|
Posted: Sun 15 Jun 2014, 01:19 Post subject:
|
|
Hi Don,
this is an awesome app! thanks for it !
I've just moved to 4.4 coming from 3.1 ...
...and got a so-called 4.3 which is 4.4 as reported in its script.
just edited line 78 of /usr/sbin/baconrecorder like:
deleted folder /root/.baconrecorder and start again and its done.
In the NLS-4.2, the french translation is missing ...here got the spanish translation instead ..
HTH
Charlie
[/code]
Description |
|
Filesize |
26.78 KB |
Viewed |
177 Time(s) |

|
|
Back to top
|
|
 |
charlie6

Joined: 30 Jun 2008 Posts: 1199 Location: Saint-Gérard / Walloon part of Belgium
|
Posted: Sun 15 Jun 2014, 01:30 Post subject:
record level control ? |
|
Hi again Don,
Btw, do you happen to have a workaround to control the record volume level ?
I once record some music and the replay sound was somewhat distorded ...i then struggled (using arecord) to try to reduce the capture level (using retrovol) ... but did not found major improvments ;
how do you do it ?
I remember an earlier recording app where there were two record level analogic indicators ... but this would lead to a less-simple-audio-recorder ...
Thanks for any advice !
Charlie
edited:
to get a more persistent display of the Vu-meters MAX , i modified the arecords rxvt geometry and behaviour like this around line 852:
Code: | <action>rxvt -geometry "64x2-0+172" -e arecord -V stereo /dev/null 2>/dev/null &</action> |
then opened the retrovol dialog box:
set the PCM button to adjust the record volume
last edited:
- in the above code, "stereo" might also be "mono".
- i noticed that the code has to be as displayed in the below screenshot: i mean that "do not copy-and-comment" the existing line code for conservative purpose: this would add one more line to the script and somewhat mess up the script ( experienced ... ) ... so i did not have kept-and-commented the original line code.
One suggestion ...
when clicking on VUmeter image.gif ... opening retrovol together with arecord's console would be a «nice to have»
again edited ...
got retrovol displayed just adding this line code:
Code: | <action>retrovol &</action> |
under the above added line code (see below shot)
So far so good ... i currently just ignore if these addons would bring some BC-4.4s misworking ...
Have fun
HTH
Description |
|
Filesize |
16.93 KB |
Viewed |
185 Time(s) |

|
Description |
|
Filesize |
88.69 KB |
Viewed |
172 Time(s) |

|
|
Back to top
|
|
 |
|