Search found 8 matches

by Sebert
Mon Apr 21, 2014 9:11 pm
Forum: Tricks 'n' Tips
Topic: TagLib
Replies: 27
Views: 18649

Re: TagLib

Hello,
I have tested the latest Taglib v1.9.1, specifically with ogg files, and I got positive results in all cases.
Here's the code I used:
XIncludeFile "tag_c.pbi"

file=taglib_file_new("test.ogg")
If file
Debug "Open"
tag = taglib_file_tag(file);
properties = taglib_file_audioproperties(file ...
by Sebert
Mon Apr 21, 2014 4:54 pm
Forum: Coding Questions
Topic: Ascii Art looking weird/wrong Editor Gadget
Replies: 2
Views: 926

Re: Ascii Art looking weird/wrong Editor Gadget

Danilo wrote:You need to set a monospace font for your editor gadget, using SetGadgetFont().
Hey Danilo,

that did it. Thank you very much !

Regards

Sebastian
by Sebert
Mon Apr 21, 2014 3:44 pm
Forum: Coding Questions
Topic: Ascii Art looking weird/wrong Editor Gadget
Replies: 2
Views: 926

Ascii Art looking weird/wrong Editor Gadget

Hi all,

this isn't really a serious problem, just something I am curious about:
I am converting my little project from console to a simple GUI.
I use some ASCII Art in my console and wanted it to show in the EditorGadget, so I
basically just changed "PrintN" to "AddGadgetItem". Now it looks Weird ...
by Sebert
Thu Apr 17, 2014 7:14 pm
Forum: Tricks 'n' Tips
Topic: HTTP Library (Crossplatform, GET/HEAD/POST, chunked, gzip)
Replies: 28
Views: 23901

Re: HTTP Library (Crossplatform, GET/HEAD/POST, chunked, gzi

Hi,

another question: I get "The connection aborted/timed out during the transfer!" for some files which download
just fine via browser or ReceiveHTTPFile. Is there a way to give the "SimpleHTTP_GET_File" Procedure a bit more
time to download?

Regards

Sebastian
by Sebert
Tue Apr 08, 2014 5:22 pm
Forum: Tricks 'n' Tips
Topic: TagLib
Replies: 27
Views: 18649

Re: TagLib

Hi Erion,

thank you very much for your help.
Reading tags works just fine, so I'll give your suggestions 1 & 2 a try in the next few days and get back to you!

Edit: As long as I include "tag_c.pbi", I don't get any debug messages. I tried


XIncludeFile "tag_c.pbi"
Debug "DebugTest"

and the ...
by Sebert
Mon Apr 07, 2014 8:07 pm
Forum: Tricks 'n' Tips
Topic: TagLib
Replies: 27
Views: 18649

Re: TagLib

Hi,

thank you for the update.

Unfortunately writing tags still doesn't work for me :-(
by Sebert
Thu Mar 27, 2014 6:20 pm
Forum: Tricks 'n' Tips
Topic: TagLib
Replies: 27
Views: 18649

Re: TagLib

Hi there,

first of all I am a newbie to Purebasic, so forgive me If I've made a rookie mistake here.

I tried the example_reader code with a mp3 file:
XIncludeFile "tag_c.pbi"

file=taglib_file_new("Sarajevo 2014.mp3")
If file
Debug "Open"
tag = taglib_file_tag(file);
properties = taglib_file ...
by Sebert
Wed Mar 26, 2014 3:32 pm
Forum: Tricks 'n' Tips
Topic: HTTP Library (Crossplatform, GET/HEAD/POST, chunked, gzip)
Replies: 28
Views: 23901

Re: HTTP Library (Crossplatform, GET/HEAD/POST, chunked, gzi

First of all: Thank you for this Library !

EDIT/SOLVED: Sometimes writing things down is all you need to do to spot the problem.
There were some forbidden characters (":") in the filename. :oops:

I am quite new to PureBasic, I have some experience with VBA, SQL & Java though.

As an excercise I ...