Replies: 7 comments 1 reply
-
One way would be to make/use existing applications as wallpaper: If its a stream link then you can pass it to mpv video player #341 |
Beta Was this translation helpful? Give feedback.
-
unfortunately its not a stream, and I cant find an application that
automatically opens the webcam in fullscreen. in fact the only application
I have found that displays a webcam in full screen is VLC, but I cant find
a way to do it on startup, I have to manually set source to capture and
then set video playback to fullscreen. I appreciate the response though
and Lively is a great project! I thought it would be an interesting and
potentially useful idea, but not necessary.
Thanks
…On Mon, Mar 8, 2021 at 9:26 PM Dani John ***@***.***> wrote:
One way would be to make/use application wallpaper:
https://github.com/rocksdanister/lively/wiki/Application-Wallpaper
If its a stream link then you can pass it to mpv video player #341
<#341>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#342 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATD73MQFTKGDKOEQTC2OJP3TCWIMRANCNFSM4YYB66OA>
.
|
Beta Was this translation helpful? Give feedback.
-
Thanks, I'll play around with it when I get home
…On Tue, Mar 9, 2021, 7:24 AM Dani John ***@***.***> wrote:
Its possible to start vlc with command line commands:
https://superuser.com/questions/1443481/vlc-record-from-webcam-and-save-to-file-windows-command-line
Once you get the right commands you can start it as application wallpaper #338
(comment)
<#338 (comment)>
Unfortunately I can't help you myself as I don't have a webcam to test.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#342 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATD73MQIPVUSXPK4JHB7IR3TCYOQDANCNFSM4YYB66OA>
.
|
Beta Was this translation helpful? Give feedback.
-
Ok, I finally got something working. created LivelyInfo.json as follows:
{
"AppVersion": "1.2.0.2",
"Title": "Window",
"Thumbnail": null,
"Preview": null,
"Desc": null,
"Author": null,
"License": null,
"Contact": null,
"Type": 0,
"FileName": "C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe",
"Arguments": "dshow:// :dshow-vdev=\"c922 Pro Stream Webcam\"
:dshow-aspect-ratio=\"16:9\" --fullscreen",
"IsAbsolutePath": true
}
zipped it into Window.zip, then clicked on plus sign in Lively Wallpaper,
then Browsed to it and it was imported into library.
There's probably an easier way to import it, but dragging didn't work for
json or zip for me, and browsing to json directly did not work.
I'll probably touch it up and add a thumbnail/preview at some point, but
for now I'm just glad it works!
Thanks again for the help, especially the pointer to the chrome example!
On Tue, Mar 9, 2021 at 7:35 AM chris johnson ***@***.***>
wrote:
… Thanks, I'll play around with it when I get home
On Tue, Mar 9, 2021, 7:24 AM Dani John ***@***.***> wrote:
> Its possible to start vlc with command line commands:
>
> https://superuser.com/questions/1443481/vlc-record-from-webcam-and-save-to-file-windows-command-line
>
> Once you get the right commands you can start it as application wallpaper #338
> (comment)
> <#338 (comment)>
>
> Unfortunately I can't help you myself as I don't have a webcam to test.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#342 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ATD73MQIPVUSXPK4JHB7IR3TCYOQDANCNFSM4YYB66OA>
> .
>
|
Beta Was this translation helpful? Give feedback.
-
Great! I played around a bit with vlc and video files, I would make the following changes to the Arguments: {
"AppVersion": "1.2.0.2",
"Title": "Window",
"Thumbnail": null,
"Preview": null,
"Desc": null,
"Author": null,
"License": null,
"Contact": null,
"Type": 0,
"FileName": "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe",
"Arguments": "\"H:\\Vid\\test.mp4\" --no-qt-video-autoresize --no-qt-system-tray --qt-minimal-view",
"IsAbsolutePath": true
} --qt-minimal-view : hide menus and controls.
|
Beta Was this translation helpful? Give feedback.
-
Thanks, I'll check it out.
…On Tue, Mar 9, 2021 at 7:35 PM Dani John ***@***.***> wrote:
Great!
I played around a bit with vlc and video files, I would make the following
changes to the Arguments:
{
"AppVersion": "1.2.0.2",
"Title": "Window",
"Thumbnail": null,
"Preview": null,
"Desc": null,
"Author": null,
"License": null,
"Contact": null,
"Type": 0,
"FileName": "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe",
"Arguments": "\"H:\\Vid\\test.mp4\" --no-qt-video-autoresize --no-qt-system-tray --qt-minimal-view",
"IsAbsolutePath": true
}
*--qt-minimal-view :* hide menus and controls.
*--no-qt-video-autoresize :* prevent player window resizing to video size.
*--no-qt-system-tray :* do not create system-tray icon.
--fullscreen needs to be removed because resizing and positioning of the
window should be handled by Lively itself and not the application.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#342 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ATD73MQP7MM35AFCY3NAYFDTC3EFJANCNFSM4YYB66OA>
.
|
Beta Was this translation helpful? Give feedback.
-
here's what I ended with. works great!
{
"AppVersion": "1.2.0.2",
"Title": "WindowCam",
"Thumbnail": null,
"Preview": null,
"Desc": null,
"Author": null,
"License": null,
"Contact": null,
"Type": 0,
"FileName": "C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe",
"Arguments": "dshow:// :dshow-vdev=\"c922 Pro Stream Webcam\"
:dshow-adev=none :dshow-aspect-ratio=\"16:9\" :live-caching=300
--no-qt-video-autoresize --no-qt-system-tray --qt-minimal-view",
"IsAbsolutePath": true
}
Thanks for all your help!
On Tue, Mar 9, 2021 at 8:19 PM chris johnson ***@***.***>
wrote:
… Thanks, I'll check it out.
On Tue, Mar 9, 2021 at 7:35 PM Dani John ***@***.***> wrote:
> Great!
>
> I played around a bit with vlc and video files, I would make the
> following changes to the Arguments:
>
> {
> "AppVersion": "1.2.0.2",
> "Title": "Window",
> "Thumbnail": null,
> "Preview": null,
> "Desc": null,
> "Author": null,
> "License": null,
> "Contact": null,
> "Type": 0,
> "FileName": "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe",
> "Arguments": "\"H:\\Vid\\test.mp4\" --no-qt-video-autoresize --no-qt-system-tray --qt-minimal-view",
> "IsAbsolutePath": true
> }
>
> *--qt-minimal-view :* hide menus and controls.
> *--no-qt-video-autoresize :* prevent player window resizing to video
> size.
> *--no-qt-system-tray :* do not create system-tray icon.
>
> --fullscreen needs to be removed because resizing and positioning of the
> window should be handled by Lively itself and not the application.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#342 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ATD73MQP7MM35AFCY3NAYFDTC3EFJANCNFSM4YYB66OA>
> .
>
|
Beta Was this translation helpful? Give feedback.
-
My Webcam monitors my front yard. I would like it to be my background (kind of like a virtual window). I am new to lively so any suggestions how to create a wallpaper to do this (or if its already been done) would be appreciated. I know VLC can display my webcam in full screen, but havent found a way to do that without going through the menu items every time I start it.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions