joining files, i have some questions about mp3 direct cut

2012-11-04 Thread Vítek
Hi guys,

What's the problem? You can simply and effectively join files using the command 
line and there's nothing easier. You'll have it done literally by several secs! 
Why do we have to install bulky apps when Windows themselves make this 
possible? Just type

copy /b c:\target\*.mp3 c:\joinedfilename.mp3

the only problem but that goes with any program of this nature too is the 
meta-informations such as ID3 tags, headers of the separate files etc. the 
files are supposed to be in the identical bitrate either constant, variable or 
average e.g. 128kb/s and the frequency range e.g. 44.100Hz, however, I don't 
have any idea on how different bitrate impacts on the joined files.

Of course when you have .ogg or .wma files you can join them using the asterix 
symbol and appropriate format. Different formats can't be joined but that's 
something being clear I think. Also folders and subfolders can be used 
according to our needs.

If you have problems with the command line you can create text file in Notepad 
for instance, type all things needed as above, rename the extension to .bat and 
there we go.


You can also create the list as something like discography using the magic of 
the command line like

dir c:\music\* /s /b /o /n c:\My_Music.txt

note: /s - dirs and subdirs, /b - just file names with no dates, /o /n - by 
alphabetical order. In the resulted file you can delete c:\music\ (ctrl+f) in 
Notepad for example since it's in every line and it's a real pain having to 
haveit read before each relevant entry. When I need to share or offer something 
with a friend of mine I often do this not having to use these controls in for 
example Total Commander which also makes it possible but not with the 
subfolders so ÿou've gotta do it all manually anyway.



all for now
later
Tapin

  - Puvodní zpráva - 
  Od: Barry Chapman 
  Komu: PC Audio Discussion List 
  Odesláno: 2. listopadu 2012 11:12
  Predmet: Re: i have some questions about mp3 direct cut


  There is a way to join files with mp3Directcut, but it is a bit of a fiddle.

  1. Open the first file.

  2. Press ctrl+c to copy it to the clipboard.

  3. Open the next file.

  4. Press ctrl+v to paste from the clipboard.  This will place the contents of 
the clipboard before your current file, effectively 
  joining the two.

  Regards,
  Barry Chapman

  - Original Message - 
  From: chris ramsay cram...@cox.net
  To: PC Audio Discussion List pc-audio@pc-audio.org
  Sent: Friday, November 02, 2012 4:49 PM
  Subject: Re: i have some questions about mp3 direct cut


  JEFf at one time you could append files together or join them with
  mp3 direct cut I see no way to do this now is there a way to append files
  with mp3 direct cut now?  chris ramsay

  -Original Message- 
  From: Jeff Samco
  Sent: Thursday, November 01, 2012 10:41 PM
  To: PC Audio Discussion List
  Subject: Re: i have some questions about mp3 direct cut

  Hello, I have used MP3DirectCut for years. Because of previous
  inquiries I have written up a basic guide to keyboard commands for
  this editor. Enjoy.
  Jeff

  MP3 Direct Cut is a free direct mp3 editor, splitter, cutter and recorder.
  Download MP3 DirectCut from
  http://www.mpesch3.de

  Play and Stop by using the SpaceBar.
  During playback, the F8 key will increase playback speed and F7 will
  decrease it.

  Rewind and fast forward using cursor left and right or page-up and
  page-down.
  The latter two keys move in larger increments than the first two.
  The number of frames each pair moves can be set via the configuration menu.

  How to mark beginning and end points of a selection for deletion,
  saving as a separte file, etc:
  While playback is stopped,
  Use the letter b to mark the beginning of a selection
  Use the letter n to mark the end of a selection

  The following commands use the numbers row above the letter keys,
  not the numeric keypad on the right side of the keyboard.
  These commands move by frame. One frame is roughly a 38th of a second:
  1: Move the beginning mark of a selection one frame to the left
  2: Move the beginning mark of a selection one frame to the right
  3: Move the end mark of a selection one frame to the left
  4: Move the end mark of a selection one frame to the right

  With the following keys, one can exactly hear, where the margins of a
  selection are:
  F5: Plays the two seconds before the beginning mark of a selection
  F6: Plays the first two seconds of a selection
  F7: Plays the last two seconds of a selection
  F8: Plays the two seconds after the end mark of a selection
  F9: Plays a portion of the file around the selection as if the
  selection had been deleted

  To remove a selection one can press the delete key.
  This does not touch the MP3 file.
  It just modifies an MP3DirectCut index.
  Therefore, cuts are made quickly.

  There are also menu options and shortcut keys to save a selection
  into a different file.
  For instance, 

Re: joining files, i have some questions about mp3 direct cut

2012-11-04 Thread Vítek
Hi again,

One more thing I forgot to mention so just briefly, as I was refering to the 
discografy part of the e-mail regarding the dir command, it's possible to 
create playlist .m3u files this way opening .m3u file via Notepad, edit the 
relative or absolute target pathes to the files themselves and that's it. You 
can create the .m3u file right away from the command line eventually and let 
Windows do all the boring protracting work for you not having to mess around 
with that:).

all for now
later
Tapin

  - Puvodní zpráva - 
  Od: Vítek 
  Komu: PC Audio Discussion List 
  Odesláno: 4. listopadu 2012 11:44
  Predmet: joining files, i have some questions about mp3 direct cut


  Hi guys,

  What's the problem? You can simply and effectively join files using the 
command line and there's nothing easier. You'll have it done literally by 
several secs! Why do we have to install bulky apps when Windows themselves make 
this possible? Just type

  copy /b c:\target\*.mp3 c:\joinedfilename.mp3

  the only problem but that goes with any program of this nature too is the 
meta-informations such as ID3 tags, headers of the separate files etc. the 
files are supposed to be in the identical bitrate either constant, variable or 
average e.g. 128kb/s and the frequency range e.g. 44.100Hz, however, I don't 
have any idea on how different bitrate impacts on the joined files.

  Of course when you have .ogg or .wma files you can join them using the 
asterix symbol and appropriate format. Different formats can't be joined but 
that's something being clear I think. Also folders and subfolders can be used 
according to our needs.

  If you have problems with the command line you can create text file in 
Notepad for instance, type all things needed as above, rename the extension to 
.bat and there we go.


  You can also create the list as something like discography using the magic of 
the command line like

  dir c:\music\* /s /b /o /n c:\My_Music.txt

  note: /s - dirs and subdirs, /b - just file names with no dates, /o /n - by 
alphabetical order. In the resulted file you can delete c:\music\ (ctrl+f) in 
Notepad for example since it's in every line and it's a real pain having to 
haveit read before each relevant entry. When I need to share or offer something 
with a friend of mine I often do this not having to use these controls in for 
example Total Commander which also makes it possible but not with the 
subfolders so ÿou've gotta do it all manually anyway.



  all for now
  later
  Tapin

- Puvodní zpráva - 
Od: Barry Chapman 
Komu: PC Audio Discussion List 
Odesláno: 2. listopadu 2012 11:12
Predmet: Re: i have some questions about mp3 direct cut


There is a way to join files with mp3Directcut, but it is a bit of a fiddle.

1. Open the first file.

2. Press ctrl+c to copy it to the clipboard.

3. Open the next file.

4. Press ctrl+v to paste from the clipboard.  This will place the contents 
of the clipboard before your current file, effectively 
joining the two.

Regards,
Barry Chapman

- Original Message - 
From: chris ramsay cram...@cox.net
To: PC Audio Discussion List pc-audio@pc-audio.org
Sent: Friday, November 02, 2012 4:49 PM
Subject: Re: i have some questions about mp3 direct cut


JEFf at one time you could append files together or join them with
mp3 direct cut I see no way to do this now is there a way to append files
with mp3 direct cut now?  chris ramsay

-Original Message- 
From: Jeff Samco
Sent: Thursday, November 01, 2012 10:41 PM
To: PC Audio Discussion List
Subject: Re: i have some questions about mp3 direct cut

Hello, I have used MP3DirectCut for years. Because of previous
inquiries I have written up a basic guide to keyboard commands for
this editor. Enjoy.
Jeff

MP3 Direct Cut is a free direct mp3 editor, splitter, cutter and recorder.
Download MP3 DirectCut from
http://www.mpesch3.de

Play and Stop by using the SpaceBar.
During playback, the F8 key will increase playback speed and F7 will
decrease it.

Rewind and fast forward using cursor left and right or page-up and
page-down.
The latter two keys move in larger increments than the first two.
The number of frames each pair moves can be set via the configuration menu.

How to mark beginning and end points of a selection for deletion,
saving as a separte file, etc:
While playback is stopped,
Use the letter b to mark the beginning of a selection
Use the letter n to mark the end of a selection

The following commands use the numbers row above the letter keys,
not the numeric keypad on the right side of the keyboard.
These commands move by frame. One frame is roughly a 38th of a second:
1: Move the beginning mark of a selection one frame to the left
2: Move the beginning mark of a selection one frame to the 

i have a quetion about the braillelite 40

2012-11-04 Thread djponji09
Does any one no where I can  find the braille lite 40 audio manual.
If any one knows please email me back at djponj...@gmail.com.
I need to no where can I get it.
The reason I am asking that is because freedomscentific does not carrie that 
audio manual for the braillelite 40 notaker any more.
To unsubscribe from this list, send a blank email to:
pc-audio-unsubscr...@pc-audio.org