[go: up one dir, main page]

Activity for guvcview

  • Johan Eriksson Johan Eriksson created merge request #14 on Git-Master

    Increase allowed device path length

  • Igor Volovichev Igor Volovichev created ticket #80

    Segmentation fault in packet.c

  • guvcview guvcview released /source/guvcview-src-2.2.2.tar.bz2

  • Paulo Assis Paulo Assis committed [289fd2] on Git-Master

    update changelog for v2.2.2

  • Paulo Assis Paulo Assis modified ticket #79

    Fix compile with musl and ffmpeg 8.0

  • Paulo Assis Paulo Assis posted a comment on ticket #79

    Patches added to git master

  • Paulo Assis Paulo Assis committed [38e237] on Git-Master

    Apply ffmpeg8 and musl patches by Paul Zander <negril.nx+gentoo@gmail.com>; add sfml3 fixes

  • Nico P Nico P modified ticket #79

    Fix compile with musl and ffmpeg 8.0

  • Nico P Nico P created ticket #79

    Fix compile with musl and ffmpeg 8.0

  • Paulo Assis Paulo Assis committed [cb34e7] on Git-Master

    update to SFML 3.0

  • Patrick Roncagliolo Patrick Roncagliolo created ticket #78

    Uninitialized string field in code

  • Mejdi Mejdi modified a comment on discussion General Discussion

    Hello, It is great that with Guvcview one can chose the camera output format (depending on camera: MJPG, RGB3, Grey 16bit...) and Cap. Video codec (Raw, H264...) directly via the GUI. It would be great if we could also chose the Cap. Image encoding like Raw or PNG. Today it seems to be only JPG (which has lossy compression). Use case: when using scientific cameras (more and more propose UVC output), it is critical to extract photo/snapshot that are exactly the raw format without (lossy) compression....

  • Mejdi Mejdi posted a comment on discussion General Discussion

    Hello, It is great that with Guvcview one can chose the camera output format (depending on camera: MJPG, RGB3, Grey 16bit...) and Cap. Video codec (Raw, H264...) directly via the GUI. It would be great if we could also chose the Cap. Image encoding like Raw or PNG. Today it seems to be only JPG (which has lossy compression). Use case: when using scientific cameras (more and more propose UVC output), it is critical to extract photo/snapshot that are exactly the raw format without (lossy) compression....

  • Ju In Ju In posted a comment on discussion General Discussion

    I am trying to capture the video feed off of my Nikon D500 DSLR camera that is connected to an USB capture card. The captured video lags so much against the audio (from an audio recording device separate from the camera). Adjusting the audio latency does not help much. Could this problem be caused by the performance of the capture card, or is it a performance issue of v4l2? Thanks.

  • Paulo Assis Paulo Assis committed [936b6e] on Git-Master

    fix some spelling errors

  • Paulo Assis Paulo Assis updated merge request #11

    Add gtk3 support for OBSBOT Meet4K AI camera

  • Sam Liddicott Sam Liddicott posted a comment on merge request #11

    I've added QT and fixed other warnings. It compiles clean for QT and GTM and works for both. Please would you merge

  • Sam Liddicott Sam Liddicott modified a comment on merge request #11

    I've refreshed the GTK for current master, and am making progress on QT.

  • Sam Liddicott Sam Liddicott posted a comment on merge request #11

    I've refreshed the GTK for current master, but I can't get the QT interface to show at all right now so I'm a bit stuck on making that work

  • Paulo Assis Paulo Assis committed [39f76e] on Git-Master

    Fix desktop file for cmake

  • Paulo Assis Paulo Assis committed [150c05] on Git-Master

    fix deprecation warning with ffpmeg 7.1; add -Wall to compile flags

  • Paulo Assis Paulo Assis modified a comment on ticket #77

    I think in arch libdecor doesn't force the gtk3 plugin, so SDL in gnome ends up using the default cairo backend.

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    I think in arch libdecor doesn't force the gtk3 plugin, so SDL in gnome ends up using the default cairo,

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    this is because mutter doesn't implement xdg-decorations and forces csd (client side decorations), this seems like a lost battle. All wayland compositors, implement ssd (server side decorations) with the exception of gnome and enlighthment.

  • Adam Williamson Adam Williamson posted a comment on ticket #77

    Huh, Fedora's SDL2 and libdecor both buildrequire pkgconfig(wayland-protocols), so I'm not sure why we wind up in GTK3 nevertheless. Will poke into it a bit.

  • Adam Williamson Adam Williamson modified ticket #77

    guvcview with SDL backend uses GTK in two separate threads which is not valid, causes crashes on Wayland

  • Adam Williamson Adam Williamson posted a comment on ticket #77

    Thanks Jonas! Sorry, I misunderstood the PR as meaning "the app will crash intentionally" or something equally bad, not "it'll fall back smoothly to some other decorations". I guess I'll check if Fedora's SDL can be built with wayland-protocols, too...

  • Jonas Ådahl Jonas Ådahl posted a comment on ticket #77

    I don't think guvcview needs to or should change, I created a MR to libdecor to not attempt to use the gtk decoration plugin and fall back to the cairo one, if it's not run from the main thread. Cairo doesn't care what thread it is run from. Ideally libdecor can address this in the future to get GTK based decorations for this use case.

  • Paulo Assis Paulo Assis modified a comment on ticket #77

    This can't be the issue. Building guvcview with Qt and disabling Gtk also causes the same crash (according to your tests). Disabling Gtk makes sure guvcview isn't even linked against Gtk. Guvcview only uses Gtk in the main thread. The render thread uses SDL or SFML. I don't know any distribution in that SDL has a direct dependency on Gtk. This just doesn't make any sense. SDL is supposed to be system independent. libdecor is NOT a gtk lib, although it has a optional Gtk pluggin (https://gitlab.freedesktop.org/libdecor/libdecor)...

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    Checking SDL API I found that libdecor is used over xdg-shell when xdg-decoration protocol is unavailable. So if xdg-decoration is available native decorations are used instead. In Arch both SDL and libdecor are build with a dependency on wayland-protocols package that includes xdg-decoration, so in arch at least, both SDL and libdecor use native wayland window decorations instead of the Gtk3 pluggin.

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    libdecor can be disabled programmatically : https://wiki.libsdl.org/SDL2/SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR just need to add SDL_SetHint("SDL_HINT_VIDEO_WAYLAND_ALLOW_LIBDECOR", "0"); to render_sdl2.c just after SDL_SetHint("SDL_HINT_RENDER_SCALE_QUALITY", "1"); around line 84

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    This can't be the issue. Building guvcview with Qt and disabling Gtk also causes the same crash (according to your tests). Disabling Gtk makes sure guvcview isn't even linked against Gtk. Guvcview only uses Gtk in the main thread. The render thread uses SDL or SFML. I don't know any distribution in that SDL is has a direct dependency on Gtk. This just doesn't make any sense. SDL is supposed to be system independent. libdecor is NOT a gtk lib, although it has a optional Gtk pluggin (https://gitlab.freedesktop.org/libdecor/libdecor)...

  • Adam Williamson Adam Williamson modified a comment on ticket #77

    The problem started appearing on Fedora when the whole stack was native Wayland, I think. But according to the GTK devs, running GTK in two threads within the app is just fundamentally wrong and not supportable even if it happened to work in some configurations, they're not going to do anything to fix the crash. edit: and yeah, I guess SDL build could affect it. For instance, is arch's SDL actually built against libdecor? This bug will only happen with libdecor, as that's what causes SDL to use ...

  • Adam Williamson Adam Williamson posted a comment on ticket #77

    The problem started appearing on Fedora when the whole stack was native Wayland, I think. But according to the GTK devs, running GTK in two threads within the app is just fundamentally wrong and not supportable even if it happened to work in some configurations, they're not going to do anything to fix the crash.

  • Paulo Assis Paulo Assis modified a comment on ticket #77

    Hi, I've been running guvcview in wayland with the sdl backend for 2+ years (in Arch) without any issues. The gui and the render run in different threads, this is how guvcview is designed. I've tested in gnome, plasma and sway and never had any issues. Could this be related to the way sdl is build?

  • Paulo Assis Paulo Assis posted a comment on ticket #77

    Hi, I've been running guvcview in wayland with the sdl backend for 2+ years (in Arch) without any issues. The gui and the render run in different threads, this is how guvcview is designed. I've tested in gnome, plasma and sway and never ad any issues. Could this be related ti the way sdl is build?

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    ah, forgot about this ticket. this eventually came back around on 'guvcview is doing something wrong', specifically using GTK in two threads - https://sourceforge.net/p/guvcview/tickets/77/ .

  • Adam Williamson Adam Williamson created ticket #77

    guvcview with SDL backend uses GTK in two separate threads which is not valid, causes crashes on Wayland

  • guvcview guvcview released /source/guvcview-src-2.2.1.tar.bz2

  • Paulo Assis Paulo Assis committed [177b6e] on Git-Master

    fix libs version

  • Paulo Assis Paulo Assis posted a comment on merge request #11

    Also needs QT support for merging, otherwise it will loose consistency between GTK and QT interfaces. Since I don't have this camera to test, I can't add support for the QT interface myself.

  • Paulo Assis Paulo Assis updated merge request #7

    fix the guvcview with mjpeg when I use high resolution camera to preview

  • Paulo Assis Paulo Assis posted a comment on merge request #7

    add corrected fix to master with commit [9b143fe]

  • Paulo Assis Paulo Assis committed [9b143f] on Git-Master

    add support for MJPG decoder for yuv420p output pixel format

  • Paulo Assis Paulo Assis committed [7afe7d] on Git-Master

    set render window to fixed size keeping video aspect ratio

  • Paulo Assis Paulo Assis committed [3d7934] on Git-Master

    fix pts ordering for video muxing

  • Paulo Assis Paulo Assis committed [75d142] on Git-Master

    use pkt pts as muxer timestamp

  • Paulo Assis Paulo Assis committed [9b3000] on Git-Master

    fix video timestamps

  • Sam Liddicott Sam Liddicott posted a comment on merge request #11

    glads it helps.

  • 林博仁(Buo-ren Lin) 林博仁(Buo-ren Lin) posted a comment on merge request #11

    I also have this hardware as well, thanks for the work!

  • 林博仁(Buo-ren Lin) 林博仁(Buo-ren Lin) updated merge request #1

    Fix build failure

  • 林博仁(Buo-ren Lin) 林博仁(Buo-ren Lin) posted a comment on merge request #1

    No longer reproduced in 2.1.0, closing.

  • 林博仁(Buo-ren Lin) 林博仁(Buo-ren Lin) posted a comment on merge request #7

    I have the same issue as well and can verify that this patch works for me. Good job!

  • Paulo Assis Paulo Assis committed [c0eb30] on Git-Master

    fix spelling errors in gview_audio

  • Paulo Assis Paulo Assis committed [e9be40] on Git-Master

    clang-format gview_v4l2core code

  • Paulo Assis Paulo Assis committed [ede6e1] on Git-Master

    fix qt6 package name in README.md

  • Paulo Assis Paulo Assis committed [e30bf3] on Git-Master

    small update to README.md

  • Paulo Assis Paulo Assis committed [c12f5b] on Git-Master

    update README.md with cmake build system info

  • Paulo Assis Paulo Assis committed [56d2dd] on Git-Master

    clang-format gview_audio code

  • Paulo Assis Paulo Assis committed [564e45] on Git-Master

    update Changelog

  • Paulo Assis Paulo Assis committed [3e2712] on Git-Master

    update GL linking

  • Paulo Assis Paulo Assis committed [4ac54c] on Git-Master

    add -lGL to gview_render and guvcview if SFML is used

  • Paulo Assis Paulo Assis committed [6dfc44] on Git-Master

    make -lGL option PUBLIC

  • Paulo Assis Paulo Assis committed [b9743f] on Git-Master

    in some distros GL is not linked for gview_render, force it with -lGL

  • Paulo Assis Paulo Assis committed [1a9717] on Git-Master

    change build system: move from autoconf to cmake

  • Daniel Schaefer Daniel Schaefer created merge request #13 on Git-Master

    Detect readonly controls and disable in UI

  • Paulo Assis Paulo Assis committed [d79407] on Git-Master

    fix x265 encoder defaults

  • Adam Williamson Adam Williamson modified ticket #76

    Frequent crashes in GTK CSS code when run as regular user

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    Filed https://gitlab.gnome.org/GNOME/gtk/-/issues/6611 .

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    it's kinda starting to look a lot like this isn't a guvcview issue, anyway. will probably move it to gtk or mutter or something soon.

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    qt5 with SDL does not solve the crash, and we get a pretty weird backtrace that goes qt5->glib->gdk->gtk3: Stack trace of thread 266293: #0 0x0000000200400310 n/a (n/a + 0x0) #1 0x00007fa81573c979 gtk_css_node_real_update_style (libgtk-3.so.0 + 0x13c979) #2 0x00007fa8157398eb gtk_css_node_ensure_style.part.0 (libgtk-3.so.0 + 0x1398eb) #3 0x00007fa815739b88 gtk_css_node_validate_internal.part.0 (libgtk-3.so.0 + 0x139b88) #4 0x00007fa815739bdb gtk_css_node_validate_internal.part.0 (libgtk-3.so.0 +...

  • Adam Williamson Adam Williamson modified a comment on ticket #76

    OK, so, found out a couple of things: Building with SFML does indeed seem to avoid the problem. Tried running an SFML build twice and letting it run for a while, it didn't crash. The crash seems to be Wayland-specific. When running on X.org, the crash doesn't happen. This might explain why folks have had trouble reproducing it outside of Fedora, I guess. Edit: looks like it may even be GNOME-on-Wayland specific; Neal Gompa says it doesn't crash on KDE-on-Wayland. Didn't try qt UI-on-SDL yet, will...

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    OK, so, found out a couple of things: Building with SFML does indeed seem to avoid the problem. Tried running an SFML build twice and letting it run for a while, it didn't crash. The crash seems to be Wayland-specific. When running on X.org, the crash doesn't happen. This might explain why folks have had trouble reproducing it outside of Fedora, I guess. Didn't try qt UI-on-SDL yet, will try that next.

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    OK, if it will help with triaging I'll try both and report back. thanks!

  • Paulo Assis Paulo Assis posted a comment on ticket #76

    If the problem is in sdl2, then using the qt interface shouldn't make any difference. The crash should happen any way. If the problem is in the gtk interface, then yes, using the qt interface should produce a different output

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    "I don't think fedora default theme is the same as gtk default (Adwaita)." It is. We use pretty much all upstream GNOME defaults, these days. "Have you tried with sfml render instead of sdl2?" Not yet, I can try that if you think it may help. Switching to the qt5 backend will obviously produce different results, but...it feels like a weird way to resolve the gtk backend crashing when it shouldn't. :D

  • Paulo Assis Paulo Assis posted a comment on ticket #76

    I don't think fedora default theme is the same as gtk default (Adwaita). In any case guvcview doesn't use any of the gtk css stuff directly. For what I can see from your backtrace, there seems to be some calls to sdl decorate border, I'm not sure about sdl2 internals, but if you running gnome, maybe window decorations use gtk css. Have you tried with sfml render instead of sdl2?

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    This is with default theme. I reproduced this on a completely clean fresh boot of Fedora (40). I agree the different result with root points to some kind of permission situation, but the app still should not just crash, and I was hoping as the author you might have some kind of idea what different permissions might cause the app to go down different paths early in startup, so we could try and isolate exactly where the divergence is. I would like to try giving the regular user one additional permission...

  • Paulo Assis Paulo Assis posted a comment on ticket #76

    Hi, have you tried with the qt interface : --disable-gtk3 --enable-qt5 You can also enable the sfml render: --enable-sfml and then: guvcview --render=sfml As for the GTK interface, I really can't reproduce the problem in Arch. Did you tried changing your gtk theme? If it works under root then it's most likely a permission issue. Just try with a default theme like Adwaita or installing a local theme. Regards,

  • Adam Williamson Adam Williamson posted a comment on ticket #76

    My full backtrace.

  • Adam Williamson Adam Williamson created ticket #76

    Frequent crashes in GTK CSS code when run as regular user

  • Adam Williamson Adam Williamson created ticket #75

    jpeg_decoder.c and uvc_h264.c are missing include of libavutil/imgutils.h for av_image_get_buffer_size

  • Morpher Morpher posted a comment on ticket #48

    Also, Guvcview creates large video files which could be reduced by allowing the specification of H264 attributes "crf" and "gop_size". In my case adding some command line parameters which set internal global variables would be sufficient. I am a coder and could do the work if that helps.

  • guvcview guvcview released /source/guvcview-src-2.1.0.tar.bz2

  • Paulo Assis Paulo Assis committed [5055c3] on Git-Master

    always link guvcview with -lGl if sfml build is enabled; bump guvcview and libraries verion

  • Paulo Assis Paulo Assis committed [7bd0c1] on Git-Master

    Fix duplicate key

  • Paulo Assis Paulo Assis committed [28d443] on Git-Master

    fix crosshair size config file read

  • Paulo Assis Paulo Assis committed [19d5e9] on Git-Master

    Merge remote-tracking branch 'refs/remotes/origin/master'

  • Paulo Assis Paulo Assis committed [3a289b] on Git-Master

    enable osd crosshair size to be changed in the config file

  • b'Paulo Assis committed [419a91] on Git-Master

    Merge /u/ramast/guvcview/ branch master into master

  • Paulo Assis Paulo Assis merged merge request #10 on Git-Master

    Support physical button click for certain digital microscope models

  • Paulo Assis Paulo Assis updated merge request #4

    Make guvicview skips device files for metadata.

  • Paulo Assis Paulo Assis committed [16e539] on Git-Master

    apply Kentaro Fukushi patch: Make guvicview skips device files for metadata.

  • Paulo Assis Paulo Assis committed [353d90] on Git-Master

    fix printf warning

  • Paulo Assis Paulo Assis committed [0eac95] on Git-Master

    Add binary fx filter

  • Paulo Assis Paulo Assis posted a comment on merge request #12

    Hi, This will only work for gtk3, you also need to change MainWindow::render_fx_filter_changed(int state) in gui_qt5_callbacks.cpp so that the filter is available in the qt5 interface. Otherwise it wont even build with configure --enable-qt5

  • okokok okokok created merge request #12 on Git-Master

    Added fisheye video filter effect.

  • Michael Gilligan Michael Gilligan modified a comment on discussion General Discussion

    There is a very useful little program called sViacam which runs on Windows and appears not to have been updated since 2012 Could you please consider adding similar functionality to guvcview ? … it would obviously be even better on the RasPi with its GPIO

  • Michael Gilligan Michael Gilligan modified ticket #74

    Feature Request

  • Michael Gilligan Michael Gilligan created ticket #74

    Feature Request

1 >