Your message dated Mon, 28 Apr 2008 00:00:17 +0100
with message-id <[EMAIL PROTECTED]>
and subject line xmms has been removed from Debian, closing #396664
has caused the Debian Bug report #396664,
regarding Saving OGG stream into numbered file
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
396664: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=396664
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xmms
Version: 1.2.10+20061001-3
When enabling 'Save stream to disk' the previously saved file gets
overwritten. It is really annoying, especially if the saving suddenly
restarts because of lost connection, for example. But even during
normal operation it is a hassle to renaming the file all the time.
The mp3 stream saving does the right thing, so I just changed the
vorbis/http.c code accordingly, see the attached diff.
Lipi
549c549,551
< gchar *output_name;
---
> gchar *output_name, *fname, *temp;
> int i = 1;
>
551,554c553,556
< output_name = file;
< if (!strncasecmp(output_name, "http://", 7))
< output_name += 7;
< temp = strrchr(output_name, '.');
---
> fname = file;
> if (!strncasecmp(fname, "http://", 7))
> fname += 7;
> temp = strrchr(fname, '.');
558c560
< while ((temp = strchr(output_name, '/')))
---
> while ((temp = strchr(fname, '/')))
560c562,570
< output_name = g_strdup_printf("%s/%s.ogg", vorbis_cfg.save_http_path, output_name);
---
> output_name = g_strdup_printf("%s/%s.ogg",
> vorbis_cfg.save_http_path, fname);
> while (!access(output_name, F_OK) && i < 100000)
> {
> g_free(output_name);
> output_name = g_strdup_printf("%s/%s-%d.ogg",
> vorbis_cfg.save_http_path,
> fname, i++);
> }
--- End Message ---
--- Begin Message ---
Version: 1:1.2.10+20070601-1+rm
The xmms package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/461309 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
--
Marco Rodrigues
http://Marco.Tondela.org
--- End Message ---