Recent Posts

Pages: [1] 2 3 ... 10
1
Programming / Re: Bigicons
« Last post by David Graser on Today at 05:37:49 pm »
For those that tried the alternative txt/editor bigicon sets and prefer the original set.

Just unzip to a temportary directory, copy icons to the bigicons theme you want to use them in, overwriting the original theme icons.  Restart desktop and see the changes.
2
Programming / Re: Bigicons
« Last post by David Graser on Today at 04:45:03 pm »
Created another text/editor icon set for the bigicon themes.

Just unzip to a temportary directory, copy icons to the bigicons theme you want to use them in, overwriting the original theme icons.  Restart desktop and see the changes.
3
Multimedia / Re: XHCI and USB Audio perspectives
« Last post by Martin Iturbide on Today at 03:07:39 pm »
Hello Mikhail

Can you please confirm, is this your device you were testing:
https://www.os2world.com/wiki/index.php/Amanero_Combo384

Is there something else that you want me to add to the wiki page as information? any remarks?

Regards
4
Programming / Re: GCC - updates
« Last post by Paul Smedley on Today at 08:59:59 am »
Attached is a zip of a debug build of xcpt.exe

I'm not (yet) any closer to understanding why c++ executables are missing:
Code: [Select]
.stabs "___CTOR_LIST__",22,0,0,__GLOBAL__sub_I_main
.stabs "___DTOR_LIST__",22,0,0,__GLOBAL__sub_D_main

My current ''hunch' is that the code in https://github.com/psmedley/gcc-os2/blob/13.x/libgcc/config/i386/emx-ctordtor.c isn't being invoked...
5
General Discussion / Re: EDM/2 Wiki Issue
« Last post by Martin Iturbide on Today at 04:30:48 am »
6
Multimedia / Re: Improvement in Webcam support
« Last post by Remy on Today at 01:00:40 am »
Well, give a try to AVxCAT (using Wim's program)
You can configure your webcam, add the webcam, record only audio or record video+audio into AVI (or else as well UDP stream which could be tested using VLC player).
During video add (into main list), you can spécify a small video control window without sound (usefull to control recorded video from the cam without larsen)...   

https://remydodin.levillage.org/doc/realisations/downloads/AVXCAT_V21.pdf
Page 35-36

note: replace "before the cam" by "in front of the cam"
7
Multimedia / Re: Improvement in Webcam support
« Last post by Dave Yeo on July 26, 2024, 05:18:06 pm »
In theory, you could pipe the audio and video through FFmpeg and into a container such as matroska or better webm. Syncing could be a problem though.
8
Multimedia / Re: Improvement in Webcam support
« Last post by Lars on July 26, 2024, 11:47:00 am »
Hello

I will have to re-test some webcams that I have around.
This is the list: https://www.os2world.com/wiki/index.php?title=Category:Cameras

I don't remember if I ever made an USB Webcam Microphone work with ArcaOS. Was it possible? if so, anybody remember the steps?

Regards

I think the problem will be that the audio interface will be supported by USBAUDIO.SYS / USBAUD2.SYS but the video interface will be supported by USBCALLS/libusb/libuvc as we do not have a dedicated USB VIDEO driver.

And therefore, the audio and video data streams are not correlated or would need different means to correlate them as in that case, audio should also be handled by USBCALLS/libusb and then the two data streams somehow bundled in a container (I think that was what matroschka was good for).
9
Programming / Re: GCC - updates
« Last post by Paul Smedley on July 26, 2024, 10:30:30 am »
Hi Steven, Agree on your root cause - for some reason default_stabs_asm_out_constructor & default_stabs_asm_out_destructor are not being output for cpp code. Give me a day or so to try and work out what's changed before I hassle you with a debug xcpt.exe :)
10
Networking / Re: Samba groups are broken
« Last post by Steven Levine on July 26, 2024, 01:09:43 am »
If you want to debug this on your system, here are a couple of ideas in case you have not already tried them.

If you grab a copy of the smbusers sources from

  http://svn.netlabs.org/repos/samba/trunk/guitools/smbusers

you might find it easier to follow the code path

The message

  Samba groups are broken, only 0 instead of 9 groups found

is defined at

  guitools\smbusers\rc\lang\smbusers_en.mkm:129
  SMU0112I: Samba groups are broken, only %1 instead of %2 groups found.

and generated for display at

guitools\smbusers\SMBUSERS.VRX:1278
        Msg.Text = NLVGetMessage(112, gline.0, gname.0)

The 0 in gline.0 is the result of the output of the net rpc command invoked at:

guitools\smbusers\SMBUSERS.VRX:1231
    address cmd samba.!netexe' rpc group -l 'DebugLevel' 'UserCred' 1>'grouplistf' 2>'samba.!error

The code that follows parses the content of the "grouplistf" file and sets gline.0

The grouplistf file name is defined at

guitools\smbusers\SMBUSERS.VRX:1227
    grouplistf = TempDir'netgrouplist.txt'

The content of this file might give you some ideas as to what is not working correctly.  You are either getting no output from the net rpc command or output that the code does not understand.

If the file content is not helpful, mapping

    address cmd samba.!netexe' rpc group -l 'DebugLevel' 'UserCred' 1>'grouplistf' 2>'samba.!error

to something you can run from the command line might give you some useful information.  You can start with

  net rpc group -l

and add options as you go.

The samba.!error file might also contain some useful info.  The file is generated by:

guitools\shared\cltinit.vrs:205
    samba.!error = SysTempFileName(TempDir'smb_err.???')

so look for the newest smb_err.* file in your temp directory.

Pages: [1] 2 3 ... 10