Skip to content

Instantly share code, notes, and snippets.

@aabytt
aabytt / lg webOS notes.md
Last active April 29, 2024 11:14
more useful stuff on lg webos

Playling a link with standard LG webOS player

  • id - id of the player app, com.webos.app.mediadiscovery for webOS 6+, com.webos.app.photovideo for webOS 3.x-5.x, com.webos.app.smartshare for webOS 1.0-2.x
  • fullPath - url of the video file
  • fileName - name of the video displayed in player. Filename is remembered by the player to continue playback from exit timestamp

from a web app

webOS.service.request("luna://com.webos.applicationManager", {
           method: "launch",
@Informatic
Informatic / README.md
Last active December 19, 2025 12:42
openlgtv webOS hacking notes

This is just a dump of some interesting undocumented features of webOS (3.8 specifically, on early 2018 4k LG TV) and other development-related tips.

Homebrew app ideas

@commshare
commshare / V4L2camera_capture.c
Last active December 12, 2025 09:36
v4l2抓图,有注释
/* refer to
https://github.com/YYuemei/Camera-Driver/blob/master/123.c
摄像头抓图程序,修改之后,实现了亮度计算
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <getopt.h>