Page 90 of 118

Posted: Tue 03 Jul 2012, 21:28
by zigbert
Much has been done for the next release.
- Support of BD-RE (rewritable blu-rays)
- Verify iso-images burnt to DVD/Blu-ray
- ...
Only one 'nut' remains to crack. I am not able to blank a BD-RE. It is not absolutely necessary, but Pburns infrastructure check in many occasions for blank discs. Both DVD and Blu-rays needs to be formatted at first burn. Next you use the -M switch for multisession and -Z for starting over again. Still dvd+rw-format re-blank the DVD+-RW after burnt sessions, but for BD-RE nothing happens. (And I can't redefine the used disc as blank.) That means Pburn needs to give the user a new option - Overwrite existing data instead of the 'blank' option. And what I don't like - is complex guis with more options. Do you know about a way to blank/erase/format my BD-RE after the first burnt session?


Thanks alot
Sigmund

Posted: Sun 15 Jul 2012, 08:59
by zigbert
version 3.7.0
See main post

Changelog
- Multisession support for BD-RE.
- No need to blank/erase rewritable DVD and blu-ray.
- Correct detection of BD-RE.
- Verify burnt iso-image to multisession DVD/Blu-ray. (thanks to rerwin)
- Move translated help files to /usr/share/doc/help to be compatible with pman. (thanks to shinobar)
- Burn options: Keep 'Temporary storage' widgets to the left when scaling gui.
- Bugfix: Tab-label missing when exporting ISO. (thanks to don570)
- Bugfix: Find help-file when Language is set to 'auto'. (thanks to Bigpup)
- Bugfix: At first run, language was overwritten from 'auto' to $LANG. (thanks to shinobar)
- Bugfix: Verify multisession CD. (thanks to rerwin)
- Bugfix: BD-RE does always report free-space to be equal to total-space.
- Bugfix: Burn iso-image as mutlisession then disc is DVD/BD.
- Bugfix: DVD/BD always asked to blank disc if burning other mode than 'data'.
- NLS: Added: LOC244, 404
- NLS: Changed: LOC351

Posted: Sun 15 Jul 2012, 13:01
by Henry
Thanks, Zigbert,
Link not updated in first post, is:
http://www.meownplanet.net/zigbert/pburn-3.7.0.pet

Posted: Sun 15 Jul 2012, 15:41
by zigbert
Henry wrote:Thanks, Zigbert,
Link not updated in first post, is:
http://www.meownplanet.net/zigbert/pburn-3.7.0.pet
Fixed.

Thank you Henry
Sigmund

Posted: Sun 15 Jul 2012, 18:36
by Flash
My LG Blu-Ray burner apparently crapped out right in the middle of burning a Blu-Ray disk full of mp3 files (with Pburn 3.5.2. I couldn't download Pburn 3.7.0 until just now). Now the drive can't see any kind of disk. :(

Posted: Sun 15 Jul 2012, 20:27
by zigbert
Flash
Often it works just to start writing a first session. This can be done in Pburn 3.7.0 by activating the checkbox - Overwrite existing data on disc. You'll find this in the burn-option dialog. If you don't reach it because Pburn detects a corrupted disc, please try to start Pburn with the -c switch

Code: Select all

pburn -c
You can also do it the cli way by simply executing a burn command like

Code: Select all

growisofs -Z /dev/sr0 -f -iso-level 3 -D -R -J -joliet-long /root/.pburn
or try to format the disc

Code: Select all

dvd+rw-format -force /dev/sr0
this does not seem to work for all kinds of BD drives.... A full format is also a choice, but takes very long time.

Code: Select all

growisofs -Z /dev/sr0=/dev/zero

Sigmund

Posted: Sun 15 Jul 2012, 23:13
by Flash
The drive doesn't even report that there's a disk in it - any kind of disk - so Pburn just says "No disk inserted" and does nothing. The drive doesn't see my multisession Puppy DVD either. I've already bought a new Blu-Ray burner, an Asus BW-12B1ST, I just haven't replaced the bad one with it yet.

pburn help

Posted: Mon 16 Jul 2012, 00:37
by shinobar
# diff func.org func
260c260
< [ "$LANGUAGE" = "auto" ] && TMP="`find /usr/share/doc/help -name pburn | cut -d'/' -f6 | grep "${LANG%_*}" | cut -d. -f1`"
---
> [ "$LANGUAGE" = "auto" ] && TMP="`find /usr/share/doc/help -name pburn.html | cut -d'/' -f6 | grep "${LANG%_*}" | cut -d. -f1`"
262c262
< $BROWSER/usr/share/doc/help/$TMP/pburn.html
---
> $BROWSER /usr/share/doc/help/$TMP/pburn.html

But this code does not work for 'pt' vs. 'pt_BR' and etc.

pburn kills another applications

Posted: Mon 16 Jul 2012, 00:41
by shinobar
Both pburn and pmusic kills another applications when exiting pburn or pmusic.

Occurred pburn killed geaney. Probably because the geaney was accessing the /usr/locak/pburn directory.

pmusic killed ffconvert. Probably because both were using ffmpeg.

Posted: Mon 16 Jul 2012, 21:42
by zigbert
shinobar
Thank you for the corrections!

I have changed the help-code to:

Code: Select all

	[ $LANGUAGE = auto ] && NLS=$LANG || NLS=$LANGUAGE #$NLS is temporarly, and only used here
	if [ -f /usr/share/doc/help/${NLS%.*}/pburn.html ]; then
		$BROWSER /usr/share/doc/help/${NLS%.*}/pburn.html &
	elif [ -f /usr/share/doc/help/${NLS%_*}/pburn.html ]; then #fallback to macrolanguage if available (ISO 639-1 two letter code: en, es, fr, etc.)
		$BROWSER /usr/share/doc/help/${NLS%_*}/pburn.html &
	else
		$BROWSER /usr/share/doc/pburn.html &
	fi
works ok with both pt and pt_BR.

I haven't seen Pburn kill anything (else you use the emergency button). - I have Geany open 'all' the time ...... ???

Yes, Pmusic kills ffmpeg. We should look for an improved solution to kill only ffmpeg that is Pmusic-related.
line 25 in func_kill

Code: Select all

	for I in `echo "$TMP" | grep -F "ffmpeg" | awk '{print $1}'`; do kill -9 $I 2> /dev/null; done

Posted: Mon 16 Jul 2012, 22:00
by zigbert
Version 3.7.1
See main post

Changelog
- Hyperlinks in helpfile.
- Bugfix: Show Help when not using english language. (thanks to shinobar)
- Bugfix: Detect correct mediatype when copy data-disc.
- NLS: Added: LOC602

help file, pburn kills ...

Posted: Tue 17 Jul 2012, 00:26
by shinobar
Tnx zigbert. Confirmed the help file fix by 3.7.1.
zigbert wrote:I haven't seen Pburn kill anything (else you use the emergency button). - I have Geany open 'all' the time ...... ???
Maybe it is rare case and not serious.
  1. Open any file under /usr/local/pburn by geaney.
  2. Start pburn.
  3. Quit pburn.

Posted: Tue 17 Jul 2012, 04:24
by Flash
A few weeks ago I noticed that Pburn seemed to cause Geany to close when Pburn was opened. At least, I think it was Pburn. It's been a while. :oops:

I tried to burn 22 GB of mp3 files from a flash drive onto a BD-RE the other day and the burner, an LG, stopped at 45% done, apparently broken. It wouldn't read any kind of disk at all. So I bought a new burner, an Asus this time, and continued to experiment with BD-RE. I tried full blanking the BD-RE with Pburn 3.7.0. It got 45% of the way through before it, too, stopped with an error message. I tried to save the log but I guess I clicked the wrong button or something because I couldn't find the log where I thought I put it. So I tried fast blanking the BD-RE disk. That seemed to work ok. But when I again tried to burn the 22 GB of mp3 files, Pburn stops immediately with this error:

Code: Select all

Pburn version 3.7.0

###################################################
   COMMAND:
###################################################

growisofs -use-the-force-luke=notray  -C 0,0 -M /dev/sr0  -f -iso-level 3 -D -R -J -joliet-long -V "pburn_project" -p root -publisher "Pburn"  -exclude-list /root/.pburn/tmp/exclude -graft-points -path-list=/root/.pburn/tmp/graft_points

###################################################
   OUTPUT:
###################################################
:-( /dev/sr0 doesn't look like isofs...
As far as I can tell, there is nothing on the disk at all. There certainly shouldn't be anything on it. But why does Pburn seem to expect to find an isofs on it? Do I need to format it now? Can Pburn do that? Even though the drive does see the disk (the disk icon shows up on the desktop after I put the disk in the drive), Puppy can't mount it. I assume that's because there is no filesystem on the disk.

Posted: Tue 17 Jul 2012, 07:15
by zigbert
Flash
This is interesting!
Did you read the red message introduced in 3.7.0?
Did you understand it?
Or, didn't it work to 'overwrite existing data'?

Image

Re: help file, pburn kills ...

Posted: Tue 17 Jul 2012, 07:18
by zigbert
shinobar wrote:Tnx zigbert. Confirmed the help file fix by 3.7.1.
zigbert wrote:I haven't seen Pburn kill anything (else you use the emergency button). - I have Geany open 'all' the time ...... ???
Maybe it is rare case and not serious.
  1. Open any file under /usr/local/pburn by geaney.
  2. Start pburn.
  3. Quit pburn.
Confirmed!
Does not happen if another file is open in the first tab in Geany


Thank you
Sigmund

Posted: Tue 17 Jul 2012, 12:36
by Flash
Sigmund, I did see the message about not needing to blank. At the time, I was trying to burn the 22 GB of mp3 files to the BD-RE that my old Blu-Ray burner quit halfway through burning the same files. The disk would mount and seemed to have ALL the mp3 files on it that were supposed to be there, so I didn't know what was going on and decided to blank it so that I could be sure of what I was seeing when Pburn tried again with the new burner.

This morning I had trouble getting on the forum at first, so I installed Firefox from the package manager, thinking that perhaps I had borked my SeaMonkey somehow. After Firefox was installed, the package manager reported something like "core_utils_dvd_rw_tools is missing". Could that cause a problem with Pburn, and where can I find that missing file? It's not in Racy's repository.

(I should mention before I forget to do it again that I'm running Puppy Racy 5.3 from a multisession DVD.) :oops:

Posted: Tue 17 Jul 2012, 13:18
by zigbert
Flash
I doubt you miss anything to burn Blu-ray/DVD.
You can test it with these 2 commands. If the result is like shown everything is ok

Code: Select all

# which growisofs
/usr/bin/growisofs
# 
#
# which mkisofs
/usr/bin/mkisofs
Sigmund

Posted: Tue 17 Jul 2012, 14:10
by Flash

Code: Select all

# # which growisofs
# /usr/bin/growisofs
/usr/bin/growisofs: previous "session" device is not specified, do use -M or -Z option
# #
# #
# # which mkisofs
# /usr/bin/mkisofs
genisoimage: Missing pathspec.
Usage: genisoimage [options] -o file directory ...

Use genisoimage -help
to get a list of valid options.

Report problems to debburn-devel@lists.alioth.debian.org.
#
Perhaps I've told Pburn the wrong name for the drive. I used sr0, which is what it reported. No, I told Pburn to blank the disk again and here's the log report:

Code: Select all

Pburn version 3.7.0

###################################################
   COMMAND:
###################################################

dvd+rw-format -force /dev/sr0

###################################################
   OUTPUT:
###################################################
* BD/DVD±RW/-RAM format utility by <appro@fy.chalmers.se>, version 7.1.
* 24.8GB BD media detected.
* formatting .0.0%0.0%|25.0%/50.0%-75.0%\|/-

Posted: Tue 17 Jul 2012, 14:30
by Flash
I blanked the disk again, then attempted to burn the same thing to it with the same result. Again I tried to save the Pburn log and again it wasn't where I thought it should be. This time I also took a screen shot of the error message:

Posted: Tue 17 Jul 2012, 15:02
by zigbert
Flash
Did you check the overwrite-box?
Image