The time now is Tue 21 May 2013, 19:13
All times are UTC - 4 |
|
Page 7 of 129 [1931 Posts] |
Goto page: Previous 1, 2, 3, 4, 5, 6, 7, 8, 9, ..., 127, 128, 129 Next |
| Author |
Message |
Botanic

Joined: 05 Sep 2007 Posts: 240 Location: Toulouse, France
|
Posted: Wed 16 Jan 2008, 12:18 Post subject:
|
|
zigbert,
i removed this parameter in line 21.
However, there is still an attempt to connect to cddb.org. it's followed by an error message
However i caught the process with the Process Lister, and found this one:
cdrdao copy --with-cddb --on-the-fly --source-device
(this is obviously line 200 in func_copy)
But, the parameter --on-the-fly is there, although i chose to use a temporary storage on /tmp.
Last edited by Botanic on Mon 21 Jan 2008, 17:36; edited 1 time in total
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Wed 16 Jan 2008, 12:25 Post subject:
|
|
I'll check it out!
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Wed 16 Jan 2008, 12:35 Post subject:
|
|
Botanic
I wonder. For me it looks like you have more than 1 CD-reader/burner? Is this correct.
I wonder. Are you connected to internet, when getting the error of connecting to freedb.org?
_________________ Stardust resources
|
|
Back to top
|
|
 |
Botanic

Joined: 05 Sep 2007 Posts: 240 Location: Toulouse, France
|
Posted: Wed 16 Jan 2008, 17:36 Post subject:
|
|
yes, i have a CD/DVD reader (that i use to copy to hard disk) and a CD burner.
i am connected to internet, though through a restricted server, i mean i always have issues with software trying to connect the internet directly, so that's no surprise for me that it doesn't work in this case.
anyway, i suppose you tested the copy function
here's what i did:
after opening pburn, i go in Burn/Copy disc
then i select the 2 drives "from" and "to", which are well detected, i specify Media type: Audio-CD, click on "copy"
the next dialog box asks me to chose "on the fly" or a temporary folder.
then there is the copy, and the error at the end of that.
i checked again that the process is:
cdrdao copy --with-cddb --on-the-fly --source-device
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Wed 16 Jan 2008, 17:39 Post subject:
|
|
Version 0.9.2 is uploaded. See main post.
_________________ Stardust resources
|
|
Back to top
|
|
 |
Botanic

Joined: 05 Sep 2007 Posts: 240 Location: Toulouse, France
|
Posted: Wed 16 Jan 2008, 18:52 Post subject:
|
|
(EDIT) the copy works fine now !!
i was actually confused (0.9.2) by the small dialog box during all the first stage (copying to hard disk) "please wait, reading disc", looks more like trying to check the disk, so i thought there was a problem.
also to mention the fact that the first stage was quite slow, although the reader is a 52X. maybe the parameter --rspeed for read-cd wasn't used?
great piece of software, thanks zigbert !
|
|
Back to top
|
|
 |
mikeb

Joined: 23 Nov 2006 Posts: 4378
|
Posted: Sat 19 Jan 2008, 17:10 Post subject:
|
|
Hi
been following the progress of pburn and very pleased with the results...nero like ease of use without the bloat (or windows!).
Multisession seems to work ok--cheers .
I implemented a simply verify function for data discs only using diff like gcombust..seems to work ok...perhaps iso verification could be added using the method in burniso2cd which compares md5 checksums.
I've attached the modded file (from 0.9.2) if you are interested .. it would need a little refining but the basic functionlity is there.
I've been burning cd's on the fly with no problems though pburn defaults to off-the-fly so I modded behaviour to reflect the preferences setting.
I've also substituted madplay for ffmpeg for mp3 to wav encoding and seems to work ok..quite nippy.
regards
mike
| Description |
|

Download |
| Filename |
func_exec.tar.gz |
| Filesize |
1.26 KB |
| Downloaded |
216 Time(s) |
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Sun 20 Jan 2008, 09:04 Post subject:
|
|
Hi guys
I'm pleased by your support. Thanks a lot. Since your comments would need changes to the translation templates, I will let them sleep until next development release. Probably 1.1.0. My main goal, right now is a stable 1.0.0.
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
gray

Joined: 23 Feb 2007 Posts: 313 Location: Adelaide - South Australia
|
Posted: Mon 21 Jan 2008, 07:00 Post subject:
check media problem |
|
Hi Zigbert,
I have returned refreshed from holiday and looked at my check media problem again. It is nothing to do with cdrdao or cdrecord etc - it is simply the find command on line 26 of the func_build_command file. The "find / " command searches the whole directory tree - so that if you run pburn to burn an iso file from the hard drive when you have just mounted the hard drive it can take many minutes to locate the iso when you have a sizable drive (mine is 80 Gb). After the first time it is much quicker - until you remount again .
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Mon 21 Jan 2008, 14:07 Post subject:
|
|
gray
If you replace | Code: | | ISOFILE=`find / -name "$TMP" -type f` | with | Code: | | ISOFILE=`readlink "/tmp/pburn/$TMP"` |
Will it still work with your ntfs disk?
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
gray

Joined: 23 Feb 2007 Posts: 313 Location: Adelaide - South Australia
|
Posted: Tue 22 Jan 2008, 06:58 Post subject:
check media fixed |
|
zigbert,
The change to readlink works a treat.
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Tue 22 Jan 2008, 08:15 Post subject:
|
|
Version 0.9.3 is uploaded. See main post.
At this moment, my todo-list for stable version 1.0.0 is empty. If you know about issues that should have been worked through, PLEASE scream load.
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
MU

Joined: 24 Aug 2005 Posts: 13642 Location: Karlsruhe, Germany
|
Posted: Tue 22 Jan 2008, 08:23 Post subject:
|
|
Hi Sigmund,
I always must laugh, if I see the size: 24 kb
I just want to express you my congratulations for this great program.
It meanwhile is the main burning application in Muppy.
It is so great to see, how very easy to use programs with a lot of functionality can be written in a very efficient way using Puppys tools.
This is so great
Keep up your good work
Best wishes, Mark
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Wed 23 Jan 2008, 08:48 Post subject:
|
|
| Quote: | I always must laugh, if I see the size: 24 kb |
Lets choir
_________________ Stardust resources
|
|
Back to top
|
|
 |
mikeb

Joined: 23 Nov 2006 Posts: 4378
|
Posted: Sat 09 Feb 2008, 10:00 Post subject:
|
|
Hi there
found a tiny bug in the add playlist function -add_list
IMPORT_LIST="$CHOOSER"
needs to be
IMPORT_LIST="$DIR$CHOOSER"
regards
Mike
|
|
Back to top
|
|
 |
|
|
Page 7 of 129 [1931 Posts] |
Goto page: Previous 1, 2, 3, 4, 5, 6, 7, 8, 9, ..., 127, 128, 129 Next |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|