diff --git a/src/common/database.py b/src/common/database.py index 1295358d..4f7d5c9e 100644 --- a/src/common/database.py +++ b/src/common/database.py @@ -8,7 +8,7 @@ # lib imports import git -from tinydb import TinyDB +from tinydb import TinyDB, Query from tinydb.storages import JSONStorage from tinydb.middlewares import CachingMiddleware @@ -17,6 +17,7 @@ # Constants DATA_REPO_LOCK = threading.Lock() +GIT_ENABLED = True # disable to pause pushing to git, useful for heavy db operations class Database: @@ -274,50 +275,81 @@ def __enter__(self): return self.tinydb def __exit__(self, exc_type, exc_val, exc_tb): - self.sync() - self.lock.release() + try: + self.sync() + finally: + self.lock.release() def sync(self): - # Only call flush if using CachingMiddleware - if hasattr(self.tinydb.storage, 'flush'): - self.tinydb.storage.flush() - - # Git operations - commit and push changes if using git - with DATA_REPO_LOCK: - if self.use_git and self.repo is not None: - try: - # Check for untracked database files and tracked files with changes - status = self.repo.git.status('--porcelain') - - # If there are any changes or untracked files - if status: - # Add ALL json files in the directory to ensure we track all databases - json_files = [f for f in os.listdir(self.db_dir) if f.endswith('.json')] - if json_files: - for json_file in json_files: - file_path = os.path.join(self.db_dir, json_file) - self.repo.git.add(file_path) - - # Check if we have anything to commit after adding - if self.repo.git.status('--porcelain'): - # Ensure the repository is configured with user identity - self._configure_repo() - - # Commit all changes at once with a general message - commit_message = "Update database files" - self.repo.git.commit('-m', commit_message) - print("Committed changes to git data repository") - - # Push to remote with credentials - try: - # Ensure we're using the credentials for push - protocol, repo_path = self.repo_url.split("://", 1) - push_url = f"{protocol}://{self.git_user_name}:{self.git_token}@{repo_path}" - self.repo.git.push(push_url, self.repo_branch) - print("Pushed changes to remote git data repository") - except git.exc.GitCommandError as e: - print(f"Failed to push changes: {str(e)}") - - except Exception as e: - print(f"Git operation failed: {str(e)}") - traceback.print_exc() + try: + # Flush changes to disk if possible + if self.tinydb and hasattr(self.tinydb.storage, 'flush'): + self.tinydb.storage.flush() + + # Close the database to ensure file is available for Git operations + if self.tinydb is not None: + self.tinydb.close() + self.tinydb = None + + # Git operations with closed file + with DATA_REPO_LOCK: + if self.use_git and self.repo is not None and GIT_ENABLED: + try: + # Check for untracked database files and tracked files with changes + status = self.repo.git.status('--porcelain') + + # If there are any changes or untracked files + if status: + # Add ALL json files in the directory to ensure we track all databases + json_files = [f for f in os.listdir(self.db_dir) if f.endswith('.json')] + if json_files: + for json_file in json_files: + file_path = os.path.join(self.db_dir, json_file) + self.repo.git.add(file_path) + + # Check if we have anything to commit after adding + if self.repo.git.status('--porcelain'): + # Ensure the repository is configured with user identity + self._configure_repo() + + # Commit all changes at once with a general message + commit_message = "Update database files" + self.repo.git.commit('-m', commit_message) + print("Committed changes to git data repository") + + # Push to remote with credentials + try: + # Ensure we're using the credentials for push + protocol, repo_path = self.repo_url.split("://", 1) + push_url = f"{protocol}://{self.git_user_name}:{self.git_token}@{repo_path}" + self.repo.git.push(push_url, self.repo_branch) + print("Pushed changes to remote git data repository") + except git.exc.GitCommandError as e: + print(f"Failed to push changes: {str(e)}") + + except Exception as e: + print(f"Git operation failed: {str(e)}") + traceback.print_exc() + finally: + # Ensure database is ready for next use + if self.tinydb is None: + self.tinydb = TinyDB( + self.json_path, + storage=CachingMiddleware(JSONStorage), + indent=4, + ) + + @staticmethod + def query(): + """ + Get the TinyDB Query object for constructing database queries. + + This is a helper method to avoid importing the Query class directly + in modules that use the Database class. + + Returns + ------- + Query + A TinyDB Query object for constructing queries. + """ + return Query() diff --git a/src/common/rank.py b/src/common/rank.py new file mode 100644 index 00000000..1f697b06 --- /dev/null +++ b/src/common/rank.py @@ -0,0 +1,701 @@ +# standard imports +from datetime import datetime, UTC +import math +import random +import time +from typing import Dict, List, Optional, Tuple, Union + +# lib imports +import aiohttp +from discord import User as DiscordUser +from praw.models import Redditor as RedditUser + +# local imports +from src.common import database +from src.common import globals +from src.common.rank_database import RankDatabase +from src.discord_bot.bot import Bot + + +class RankSystem: + """ + A rank system that tracks user XP and levels across platforms. + + Supports: + - Discord and Reddit users + - Random XP gain with cooldowns + - Migration from Mee6 + """ + + def __init__( + self, + bot: Bot, + xp_range: Tuple[int, int] = (15, 25), + cooldown: int = 60, + ): + """ + Initialize the rank system. + + Parameters + ---------- + bot : Bot + Discord bot instance + xp_range : Tuple[int, int] + Min and max range for random XP gain + cooldown : int + Cooldown in seconds between XP gains for the same user + """ + self.bot = bot + self.db = RankDatabase() + self.xp_range = xp_range + self.cooldown = cooldown + self.last_activity = {} # Tracks last activity time for cooldowns + + @staticmethod + def get_community_id(platform: str, user: Union[DiscordUser, RedditUser]) -> Optional[Union[int, str]]: + """ + Get the community ID for a user based on platform. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + user : Union[DiscordUser, RedditUser] + Discord or Reddit user object + + Returns + ------- + Union[int, str] + Community ID (guild_id for Discord, subreddit_id for Reddit) + """ + if platform == 'discord': + # For Discord, use the current guild ID + # In case of DMs, this will be None + guild = getattr(user, 'guild', None) + if guild: + return guild.id + + # For guild members that might not have direct guild attribute + guild_id = getattr(getattr(user, 'guild_id', None), 'id', None) + if guild_id: + return guild_id + + # Fallback + return None + + elif platform == 'reddit': + # For Reddit, use the current subreddit ID + subreddit_id = globals.REDDIT_BOT.subreddit.id + return subreddit_id + + # Default if platform is unknown + return 0 + + @staticmethod + def calculate_level(xp: int) -> int: + """ + Calculate level based on XP. + Using a similar formula to Mee6. + + Parameters + ---------- + xp : int + The user's XP + + Returns + ------- + int + The calculated level + """ + # Formula similar to Mee6: Level = sqrt(XP / some_constant) + return math.floor(math.sqrt(xp / 100)) + + @staticmethod + def calculate_xp_for_level(level: int) -> int: + """ + Calculate the minimum XP needed for a given level. + + Parameters + ---------- + level : int + The level + + Returns + ------- + int + The XP needed for this level + """ + return level * level * 100 + + def get_rank_data( + self, + platform: str, + user: Union[DiscordUser, RedditUser], + create_if_not_exists: bool = False, + ) -> dict: + """ + Get rank data for a user. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + user : Union[DiscordUser, RedditUser] + Discord or Reddit user object + create_if_not_exists : bool + If True, create a new user entry if it doesn't exist + + Returns + ------- + dict + User rank data + """ + community_id = self.get_community_id( + platform=platform, + user=user, + ) + user_id = user.id + + print(f"Getting rank data for user {user_id} in community {community_id} on platform {platform}") + + user_data = self.db.get_user_data( + platform=platform, + community_id=community_id, + user_id=user_id, + create_if_not_exists=create_if_not_exists, + ) + + # Return empty dict if user data doesn't exist and not creating + if not user_data: + return {} + + # If user data doesn't exist, create a new entry + if 'username' not in user_data: + user_data['username'] = user.name + self.db.update_user_data( + platform=platform, + community_id=community_id, + user_id=user_id, + data=user_data, + ) + + return user_data + + def update_rank_data(self, platform: str, user: Union[DiscordUser, RedditUser], data: dict) -> dict: + """ + Update rank data for a user. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + user : Union[DiscordUser, RedditUser] + Discord or Reddit user object + data : dict + New data to update + + Returns + ------- + dict + Updated user data + """ + community_id = self.get_community_id( + platform=platform, + user=user, + ) + user_id = user.id + return self.db.update_user_data( + platform=platform, + community_id=community_id, + user_id=user_id, + data=data, + ) + + def award_xp(self, platform: str, user: Union[DiscordUser, RedditUser]) -> Optional[dict]: + """ + Award XP to a user with cooldown enforcement. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + user : Union[DiscordUser, RedditUser] + Discord or Reddit user object + + Returns + ------- + Optional[dict] + Updated user data and level info, or None if on cooldown + """ + user_id = user.id + community_id = self.get_community_id( + platform=platform, + user=user, + ) + user_key = f"{platform}:{community_id}:{user_id}" + current_time = int(time.time()) + + # Check cooldown + if user_key in self.last_activity: + if current_time - self.last_activity[user_key] < self.cooldown: + return None # Still on cooldown + + # Get user data + user_data = self.get_rank_data( + platform=platform, + user=user, + create_if_not_exists=True, + ) + old_level = self.calculate_level(xp=user_data['xp']) + + # Award random XP + xp_gain = random.randint(self.xp_range[0], self.xp_range[1]) + user_data['xp'] += xp_gain + user_data['message_count'] = user_data.get('message_count', 0) + 1 + user_data['last_activity'] = current_time + + # Update cooldown tracker + self.last_activity[user_key] = current_time + + # Update database + updated_data = self.update_rank_data( + platform=platform, + user=user, + data=user_data, + ) + + # Check for level up + new_level = self.calculate_level(xp=updated_data['xp']) + level_up = new_level > old_level + + return { + 'user_data': updated_data, + 'xp_gain': xp_gain, + 'level': new_level, + 'level_up': level_up, + 'old_level': old_level + } + + def get_leaderboard( + self, + platform: str, + user: Optional[Union[DiscordUser, RedditUser]] = None, + community_id: Optional[Union[int, str]] = None, + limit: int = 100, + offset: int = 0, + ) -> List[dict]: + """ + Get the leaderboard for a specific platform and community. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + user : Optional[Union[DiscordUser, RedditUser]] + User object to determine community_id if not explicitly provided + community_id : Optional[Union[int, str]] + Community identifier (guild_id for Discord, subreddit_id for Reddit) + limit : int + Maximum number of entries to return + offset : int + Number of entries to skip + + Returns + ------- + List[dict] + List of user data ordered by XP (descending) + """ + # If community_id not provided, try to get it from user + if not community_id and user: + community_id = self.get_community_id( + platform=platform, + user=user, + ) + + # Default to '0' if still no community_id + if not community_id: + community_id = '0' + + leaderboard = self.db.get_leaderboard( + platform=platform, + community_id=community_id, + limit=limit, + offset=offset, + ) + + # Add rank and level to each entry + for i, user_data in enumerate(leaderboard, start=offset + 1): + user_data['rank'] = i + user_data['level'] = self.calculate_level(xp=user_data.get('xp', 0)) + + return leaderboard + + def get_user_rank_position(self, platform: str, user: Union[DiscordUser, RedditUser]) -> Optional[int]: + """ + Get the exact rank position of a user on the leaderboard without any limits. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + user : Union[DiscordUser, RedditUser] + Discord or Reddit user object + + Returns + ------- + Optional[int] + User's position in the leaderboard (1-based index). None if user not found. + """ + community_id = self.get_community_id( + platform=platform, + user=user, + ) + user_id = user.id + + leaderboard = self.db.get_leaderboard( + platform=platform, + community_id=community_id, + limit=1000000, # Get all users + ) + + # Find user's position + for i, entry in enumerate(leaderboard, start=1): + if entry.get('user_id') == user_id: + return i + + # If user not found, return None + return None + + def get_migration_status( + self, + platform: str, + community_id: Union[int, str], + source_id: Union[int, str], + ) -> Optional[dict]: + """ + Check if migration has already been performed for a specific source. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + source_id : Union[int, str] + Source identifier (e.g., guild_id for Mee6) + + Returns + ------- + Optional[dict] + Migration record if exists, None otherwise + """ + return self.db.get_migration_status( + platform=platform, + community_id=community_id, + source_id=source_id, + ) + + def set_migration_completed( + self, + platform: str, + community_id: Union[int, str], + source_id: Union[int, str], + stats: dict, + ) -> dict: + """ + Mark migration as completed. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + source_id : Union[int, str] + Source identifier (e.g., guild_id for Mee6) + stats : dict + Migration statistics + + Returns + ------- + dict + Updated migration record + """ + return self.db.set_migration_completed( + platform=platform, + community_id=community_id, + source_id=source_id, + stats=stats, + ) + + def migrate_from_reddit_database( + self, + reddit_bot, + reddit_db, + community_id: str, + ) -> Dict[str, Union[int, str]]: + """ + Migrate user data from Reddit database. + + This grants XP for existing submissions and comments in the Reddit database. + + Parameters + ---------- + reddit_bot + Reddit bot instance + reddit_db : Database + Reddit database instance + community_id : str + Subreddit ID + + Returns + ------- + Dict[str, Union[int, str]] + Migration statistics + """ + total_users = 0 + new_users = 0 + updated_users = 0 + total_submissions = 0 + total_comments = 0 + skipped_submissions = 0 + skipped_comments = 0 + user_xp_map = {} # Maps user_id to accumulated XP + + database.GIT_ENABLED = False # Disable Git for this operation + + print("Starting Reddit ranks migration") + + try: + # Process submissions + with reddit_db as db: + submissions_table = db.table('submissions') + + print(f"Processing {len(submissions_table.all())} submissions") + for submission in submissions_table.all(): + author_name = submission.get('author') + if not author_name or author_name == "[deleted]": + skipped_submissions += 1 + continue + + try: + try: + author = reddit_bot.fetch_user(name=author_name) + except Exception as e: + print(f"Error fetching author '{author_name}' for submission: {type(e).__name__}: {e}") + skipped_submissions += 1 + continue + + # Skip submissions without valid author + if not author or not hasattr(author, 'id'): + print(f"Invalid author object for '{author_name}', skipping submission") + skipped_submissions += 1 + continue + + total_submissions += 1 + + # Award random XP in range + xp_gain = random.randint(150, 250) + + if author.id not in user_xp_map: + user_xp_map[author.id] = {'xp': 0, 'submissions': 0, 'comments': 0, 'name': author.name} + + user_xp_map[author.id]['xp'] += xp_gain + user_xp_map[author.id]['submissions'] += 1 + except Exception as e: + print(f"Unexpected error processing submission by '{author_name}': {type(e).__name__}: {e}") + skipped_submissions += 1 + continue + + # Process comments + comments_table = db.table('comments') + + print(f"Processing {len(comments_table.all())} comments") + for comment in comments_table.all(): + author_name = comment.get('author') + if not author_name or author_name == "[deleted]": + skipped_comments += 1 + continue + + try: + try: + author = reddit_bot.fetch_user(name=author_name) + except Exception as e: + print(f"Error fetching author '{author_name}' for comment: {type(e).__name__}: {e}") + skipped_comments += 1 + continue + + # Skip comments without valid author + if not author or not hasattr(author, 'id'): + print(f"Invalid author object for '{author_name}', skipping comment") + skipped_comments += 1 + continue + + total_comments += 1 + + # Award random XP in range + xp_gain = random.randint(150, 250) + + if author.id not in user_xp_map: + user_xp_map[author.id] = {'xp': 0, 'submissions': 0, 'comments': 0, 'name': author.name} + + user_xp_map[author.id]['xp'] += xp_gain + user_xp_map[author.id]['comments'] += 1 + except Exception as e: + print(f"Unexpected error processing comment by '{author_name}': {type(e).__name__}: {e}") + skipped_comments += 1 + continue + + # Now update the rank database with accumulated XP + total_users = len(user_xp_map) + print(f"Updating {total_users} users in rank database") + + for user_id, stats in user_xp_map.items(): + database.GIT_ENABLED = False # set this on every iteration in case it was enabled somewhere else + + # Get existing user data or create new + user_data = self.db.get_user_data( + platform='reddit', + community_id=community_id, + user_id=user_id, + create_if_not_exists=True, + ) + + if user_data.get('xp', 0) > 0: + # User already has XP + updated_users += 1 + else: + # New user or user with no XP + new_users += 1 + + # Update user with imported data + user_data['xp'] = stats['xp'] + user_data['message_count'] = stats['submissions'] + stats['comments'] + user_data['submission_count'] = stats['submissions'] + user_data['comment_count'] = stats['comments'] + user_data['username'] = stats['name'] + user_data['reddit_import_date'] = datetime.now(UTC).isoformat() + + self.db.update_user_data( + platform='reddit', + community_id=community_id, + user_id=user_id, + data=user_data, + ) + + except Exception as e: + print(f"Error during Reddit migration: {type(e).__name__}: {e}") + # Re-raise after enabling Git + database.GIT_ENABLED = True + raise + + database.GIT_ENABLED = True # Re-enable Git after operation + + stats = { + 'total_users': total_users, + 'new_users': new_users, + 'updated_users': updated_users, + 'total_submissions': total_submissions, + 'total_comments': total_comments, + 'skipped_submissions': skipped_submissions, + 'skipped_comments': skipped_comments, + 'community_id': community_id, + 'source_type': 'reddit_database', + 'date': datetime.now(UTC).isoformat(), + } + + print(f"Reddit migration completed with stats: {stats}") + return stats + + async def migrate_from_mee6(self, guild_id: int) -> Dict[str, Union[int, str]]: + """ + Migrate user data from Mee6 API. + + Parameters + ---------- + guild_id : int + Discord guild ID to migrate from + + Returns + ------- + Dict[str, Union[int, str]] + Migration statistics + """ + page = 0 + total_users = 0 + new_users = 0 + updated_users = 0 + + database.GIT_ENABLED = False # Disable Git for this operation + + async with aiohttp.ClientSession() as session: + while True: + url = f"https://mee6.xyz/api/plugins/levels/leaderboard/{guild_id}?page={page}" + print(f"Fetching Mee6 data from: {url}") + + try: + # Add timeout to prevent hanging + async with session.get(url, timeout=10) as response: + if response.status != 200: + print(f"Received status code {response.status}, stopping migration") + break + + data = await response.json() + + if not data.get('players') or len(data['players']) == 0: + print("No more players found, stopping migration") + break + + player_count = len(data['players']) + print(f"Processing {player_count} players from page {page}") + + for player in data['players']: + database.GIT_ENABLED = False # set this on every loop in case it's updated in another place + + total_users += 1 + user_id = int(player['id']) + + # Get existing user data or create new + user_data = self.db.get_user_data( + platform='discord', + community_id=guild_id, + user_id=user_id, + create_if_not_exists=True, + ) + + if user_data.get('xp', 0) > 0: + # User already has XP, skip or update as needed + updated_users += 1 + continue + + # Update user with imported data + user_data['xp'] = player['xp'] + user_data['message_count'] = player.get('message_count', 0) + user_data['username'] = player.get('username', f"User {user_id}") + user_data['mee6_import_date'] = datetime.now(UTC).isoformat() + + self.db.update_user_data('discord', guild_id, user_id, user_data) + new_users += 1 + + except aiohttp.ClientError as e: + print(f"HTTP error during migration: {e}") + break + except Exception as e: + print(f"Unexpected error during migration: {e}") + break + + page += 1 + + database.GIT_ENABLED = True # Re-enable Git after operation + + stats = { + 'total_processed': total_users, + 'new_users': new_users, + 'updated_users': updated_users, + 'guild_id': guild_id, + 'source_type': 'mee6', + 'date': datetime.now(UTC).isoformat(), + } + + print(f"Migration completed with stats: {stats}") + return stats diff --git a/src/common/rank_database.py b/src/common/rank_database.py new file mode 100644 index 00000000..8d76da33 --- /dev/null +++ b/src/common/rank_database.py @@ -0,0 +1,327 @@ +# standard imports +from typing import List, Optional, Union + +# local imports +from src.common.database import Database + + +class RankDatabase(Database): + """ + Specialized database for managing rank data across platforms. + Uses a flatter structure with platform-specific tables (discord_users, reddit_users). + Each entry represents a unique user in a specific community. + """ + + def __init__(self, **kwargs): + """ + Initialize the rank database. + """ + kwargs['db_name'] = 'ranks' + super().__init__(**kwargs) + self._ensure_tables() + + def _ensure_tables(self): + """ + Ensure that the necessary tables exist in the database. + """ + with self as db: + # Create platform-specific user tables while preserving existing data + tables_to_ensure = [ + 'discord_users', + 'reddit_users', + 'migrations', + ] + + for table_name in tables_to_ensure: + if table_name not in db.tables(): + db.table(table_name) + + def get_community_users( + self, + platform: str, + community_id: Union[int, str], + search: Optional[str] = None, + ) -> List[dict]: + """ + Get all users in a specific community for a given platform. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + community_id : Union[int, str] + Community identifier (guild_id for Discord, subreddit_id for Reddit) + search : Optional[str] + Optional search string to filter users by username (case-insensitive) + + Returns + ------- + List[dict] + List of user data in the specified community + """ + if platform not in ['discord', 'reddit']: + raise ValueError(f"Invalid platform: {platform}") + + table_name = f"{platform}_users" + + with self as db: + table = db.table(table_name) + users = [dict(item) for item in table.all() if item.get('community_id') == community_id] + + # Apply search filter if provided + if search and search.strip(): + search_lower = search.lower().strip() + users = [ + user for user in users + if user.get('username') and search_lower in user.get('username', '').lower() + ] + + # sort users alphabetically by username + users.sort(key=lambda x: x.get('username', '').lower()) + + return users + + def get_user_data( + self, + platform: str, + community_id: Union[int, str], + user_id: Union[int, str], + create_if_not_exists: bool = False, + ) -> dict: + """ + Get user rank data for a specific platform, community, and user. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + community_id : Union[int, str] + Community identifier (guild_id for Discord, subreddit_id for Reddit) + user_id : Union[int, str] + User identifier + create_if_not_exists : bool + Whether to create a new user entry if it doesn't exist + + Returns + ------- + dict + User rank data or a new user entry + """ + if platform not in ['discord', 'reddit']: + raise ValueError(f"Invalid platform: {platform}") + + table_name = f"{platform}_users" + + with self as db: + table = db.table(table_name) + + # Find user in the specific community + user_data = None + for item in table.all(): + if item.get('user_id') == user_id and item.get('community_id') == community_id: + user_data = item + break + + # Create new user data if not found + if not user_data and create_if_not_exists: + user_data = { + 'user_id': user_id, + 'community_id': community_id, + 'xp': 0, + 'message_count': 0, + 'last_activity': 0, + } + doc_id = table.insert(user_data) + # Retrieve the document with its doc_id + user_data = table.get(doc_id=doc_id) + + return user_data + + def update_user_data( + self, + platform: str, + community_id: Union[int, str], + user_id: Union[int, str], + data: dict, + ) -> dict: + """ + Update user rank data. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + user_id : Union[int, str] + User identifier + data : dict + New user data + + Returns + ------- + dict + Updated user data + """ + if platform not in ['discord', 'reddit']: + raise ValueError(f"Invalid platform: {platform}") + + table_name = f"{platform}_users" + + with self as db: + table = db.table(table_name) + + # Ensure community_id and user_id are in the data + data['user_id'] = user_id + data['community_id'] = community_id + + # Find existing user data + existing = None + for item in table.all(): + if item.get('user_id') == user_id and item.get('community_id') == community_id: + existing = item + break + + if existing: + # Update existing document + table.update(data, doc_ids=[existing.doc_id]) + updated = table.get(doc_id=existing.doc_id) + else: + # Insert new document + doc_id = table.insert(data) + updated = table.get(doc_id=doc_id) + + return updated + + def get_leaderboard( + self, + platform: str, + community_id: Union[int, str], + limit: int = 100, + offset: int = 0, + ) -> List[dict]: + """ + Get the leaderboard for a specific platform and community. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + limit : int + Maximum number of entries to return + offset : int + Number of entries to skip + + Returns + ------- + List[dict] + List of user data ordered by XP (descending) + """ + if platform not in ['discord', 'reddit']: + raise ValueError(f"Invalid platform: {platform}") + + table_name = f"{platform}_users" + + with self as db: + table = db.table(table_name) + + # Filter users by community + community_users = [] + for item in table.all(): + if item.get('community_id') == community_id: + # Convert to dict to avoid TinyDB document issues + community_users.append(dict(item)) + + # Sort by XP (descending) + sorted_users = sorted(community_users, key=lambda x: x.get('xp', 0), reverse=True) + + # Apply pagination + end_index = offset + limit + if end_index > len(sorted_users): + end_index = len(sorted_users) + + if offset >= len(sorted_users): + return [] + + paginated = sorted_users[offset:end_index] + return paginated + + def get_migration_status( + self, + platform: str, + community_id: Union[int, str], + source_id: Union[int, str], + ) -> Optional[dict]: + """ + Check if migration has already been performed for a specific source. + + Parameters + ---------- + platform : str + Platform identifier (e.g., 'discord', 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + source_id : Union[int, str] + Source identifier (e.g., guild_id for Mee6) + + Returns + ------- + Optional[dict] + Migration record if exists, None otherwise + """ + migration_key = f"{platform}:{community_id}:{source_id}" + + with self as db: + migrations = db.table('migrations') + + # Find migration record + for migration in migrations.all(): + if migration.get('migration_key') == migration_key: + return migration + + return None + + def set_migration_completed( + self, platform: str, + community_id: Union[int, str], + source_id: Union[int, str], + stats: dict, + ) -> dict: + """ + Mark migration as completed. + + Parameters + ---------- + platform : str + Platform identifier ('discord' or 'reddit') + community_id : Union[int, str] + Community identifier (guild_id or subreddit_id) + source_id : Union[int, str] + Source identifier (e.g., guild_id for Mee6) + stats : dict + Migration statistics + + Returns + ------- + dict + Updated migration record + """ + migration_key = f"{platform}:{community_id}:{source_id}" + + with self as db: + migrations = db.table('migrations') + + migration_data = { + 'migration_key': migration_key, + 'platform': platform, + 'community_id': community_id, + 'source_id': source_id, + 'source_type': stats.get('source_type', 'mee6'), + 'timestamp': stats.get('date', None), + 'stats': stats, + } + + migrations.insert(migration_data) + return migration_data diff --git a/src/common/webapp.py b/src/common/webapp.py index 3542fdd3..ea4e3e54 100644 --- a/src/common/webapp.py +++ b/src/common/webapp.py @@ -9,7 +9,6 @@ import discord from flask import Flask, jsonify, redirect, request, Response, send_from_directory from requests_oauthlib import OAuth2Session -from tinydb import Query from werkzeug.middleware.proxy_fix import ProxyFix # local imports @@ -159,16 +158,16 @@ def discord_callback(): user_data['github_id'] = int(connection['id']) user_data['github_username'] = connection['name'] - with globals.DISCORD_BOT.db as db: - query = Query() + q = globals.DISCORD_BOT.db.query() + with globals.DISCORD_BOT.db as db: # Get the discord_users table discord_users_table = db.table('discord_users') # Upsert the user data discord_users_table.upsert( user_data, - query.user_id == int(discord_user['id']) + q.user_id == int(discord_user['id']) ) globals.DISCORD_BOT.update_cached_message( @@ -226,9 +225,9 @@ def github_callback(): ) discord_user = discord_user_future.result() - with globals.DISCORD_BOT.db as db: - query = Query() + q = globals.DISCORD_BOT.db.query() + with globals.DISCORD_BOT.db as db: # Get the discord_users table discord_users_table = db.table('discord_users') @@ -244,7 +243,7 @@ def github_callback(): # Upsert the user data (insert or update) discord_users_table.upsert( user_data, - query.user_id == int(discord_user_id) + q.user_id == int(discord_user_id) ) globals.DISCORD_BOT.update_cached_message( diff --git a/src/discord_bot/cogs/rank.py b/src/discord_bot/cogs/rank.py new file mode 100644 index 00000000..244c46fd --- /dev/null +++ b/src/discord_bot/cogs/rank.py @@ -0,0 +1,543 @@ +# standard imports +from typing import Union + +# lib imports +import discord +from discord import option +from discord.ext import commands, tasks + +# local imports +from src.common.rank import RankSystem +from src.common import globals + + +class RankCog(discord.Cog): + """ + Discord cog for the rank system functionality. + """ + + def __init__(self, bot): + self.bot = bot + self.rank_system = RankSystem(bot=self.bot) + self.active_users = set() # Track active users in the current minute + self.xp_award_task.start() + + # Schedule auto-migration after bot is ready + bot.loop.create_task(self.auto_migrate_mee6()) + + def cog_unload(self): + self.xp_award_task.cancel() + + @tasks.loop(minutes=1) + async def xp_award_task(self): + """ + Task that runs every minute to award XP to active users. + """ + if not self.active_users: + return + + for user in self.active_users: + result = self.rank_system.award_xp( + platform='discord', + user=user, + ) + if result and result['level_up']: + try: + # TODO: Send level up message in a designated channel + pass + except Exception as e: + print(f"Error handling level up notification: {e}") + + # Clear the set for the next minute + self.active_users.clear() + + @xp_award_task.before_loop + async def before_xp_award(self): + """ + Wait until the bot is ready before starting the task. + """ + await self.bot.wait_until_ready() + + @commands.Cog.listener() + async def on_message(self, message): + """ + Listen for messages to track active users. + + Parameters + ---------- + message : discord.Message + The message object containing the message data. + """ + if message.author.bot: + return + + # Add user object to active users set + self.active_users.add(message.author) + + async def reddit_user_autocomplete(self, ctx: discord.AutocompleteContext) -> list[str]: + """ + Autocomplete function for Reddit usernames. + + Parameters + ---------- + ctx : discord.AutocompleteContext + The context of the autocomplete request. + + Returns + ------- + list + List of Reddit usernames matching the current input. + """ + current = ctx.value or "" + + if not globals.REDDIT_BOT: + return [] + + try: + reddit_users = self.rank_system.db.get_community_users( + platform='reddit', + community_id=globals.REDDIT_BOT.subreddit.id, + search=current, + ) + + # Extract usernames from user objects + users = [user.get('username', '') for user in reddit_users[:25] if user.get('username')] + + return users + except Exception: + return [] + + @discord.slash_command(name="rank", description="Check your rank or another user's rank") + @option( + name="discord_user", + description="Discord user to check rank for", + required=False, + type=discord.Member, + ) + @option( + name="reddit_user", + description="Reddit username to check rank for", + required=False, + autocomplete=reddit_user_autocomplete, + type=discord.SlashCommandOptionType.string, + ) + async def rank( + self, + ctx, + discord_user: discord.Member = None, + reddit_user: str = None + ): + """ + Command to check a user's rank on either Discord or Reddit. + + Parameters + ---------- + ctx : discord.ApplicationContext + The context of the command. + discord_user : discord.Member, optional + The Discord user to check rank for. If not provided, defaults to the command invoker. + reddit_user : str, optional + The Reddit username to check rank for. If not provided, will check the Discord user. + """ + if reddit_user: + target_user = globals.REDDIT_BOT.fetch_user(name=reddit_user) + if not target_user: + await ctx.respond(f"Reddit user '{reddit_user}' not found.", ephemeral=True) + return + platform_name = "Reddit" + user_data = self.rank_system.get_rank_data( + platform='reddit', + user=target_user, + create_if_not_exists=False, + ) + rank_position = self.rank_system.get_user_rank_position( + platform='reddit', + user=target_user, + ) + display_name = f"u/{reddit_user}" + avatar_url = target_user.icon_img + color = discord.Color.orange() # Reddit's color + else: + target_user = discord_user or ctx.author + platform_name = "Discord" + user_data = self.rank_system.get_rank_data( + platform='discord', + user=target_user, + create_if_not_exists=False, + ) + rank_position = self.rank_system.get_user_rank_position( + platform='discord', + user=target_user, + ) + display_name = target_user.display_name + avatar_url = target_user.display_avatar.url + color = target_user.color if hasattr(target_user, 'color') else discord.Color.blue() + + if rank_position is None: + await ctx.respond(f"{platform_name} user '{display_name}' not found in the rank system.", ephemeral=True) + return + + # Calculate level data + level = self.rank_system.calculate_level(xp=user_data['xp']) + current_xp = user_data['xp'] + xp_for_current = self.rank_system.calculate_xp_for_level(level=level) + xp_for_next = self.rank_system.calculate_xp_for_level(level=level + 1) + + # Calculate progress bar + progress = (current_xp - xp_for_current) / (xp_for_next - xp_for_current) if xp_for_next > xp_for_current else 0 + progress_bar_length = 10 + filled_bars = round(progress_bar_length * progress) + progress_bar = f"{'▰' * filled_bars}{'▱' * (progress_bar_length - filled_bars)}" + + # Create embed + embed = discord.Embed( + title=f"{display_name}'s {platform_name} Rank", + timestamp=discord.utils.utcnow(), + color=color + ) + + if avatar_url: + embed.set_thumbnail(url=avatar_url) + + embed.add_field(name="Rank", value=f"#{rank_position}", inline=True) + embed.add_field(name="Level", value=str(level), inline=True) + embed.add_field(name="XP", value=f"{current_xp:,}", inline=True) + embed.add_field( + name=f"Progress to Level {level + 1}", + value=f"{progress_bar} {round(progress * 100)}%\n" + f"{current_xp - xp_for_current:,}/{xp_for_next - xp_for_current:,} XP", + inline=False + ) + + embed.add_field( + name="Messages", + value=f"{user_data.get('message_count', 0):,}", + inline=True + ) + + await ctx.respond(embed=embed) + + async def build_leaderboard_embed(self, platform, leaderboard_data, page, total_pages, total_users, ctx): + """Build the leaderboard embed with improved aesthetics.""" + platform_color = discord.Color.blurple() if platform == "discord" else discord.Color.orange() + + embed = discord.Embed( + title=f"🏆 {platform.capitalize()} XP Leaderboard", + description="", + timestamp=discord.utils.utcnow(), + color=platform_color + ) + + # Add server icon if available + if platform == "discord" and ctx.guild.icon: + embed.set_thumbnail(url=ctx.guild.icon.url) + elif platform == "reddit" and globals.REDDIT_BOT.subreddit.community_icon: + embed.set_thumbnail(url=globals.REDDIT_BOT.subreddit.community_icon) + + # Emojis for top ranks + medal_emojis = [ + "🥇", + "🥈", + "🥉", + ":four:", + ":five:", + ":six:", + ":seven:", + ":eight:", + ":nine:", + ":keycap_ten:", + ] + top_positions = len(medal_emojis) + + # Build leaderboard content + leaderboard_text = "" + offset = (page - 1) * 10 + + for i, entry in enumerate(leaderboard_data, start=1): + rank_num = offset + i + + # Get appropriate medal or number + if rank_num <= top_positions: + rank_display = medal_emojis[rank_num-1] + else: + rank_display = f"`#{rank_num}`" + + try: + if platform == "discord": + user = await self.bot.fetch_user(entry['user_id']) + username = user.display_name if user else f"User {entry['user_id']}" + if user: + username = f"**{username}**" + else: + username = f"**u/{entry.get('username', f'User {entry['user_id']}')}**" + except Exception: + username = f"**{entry.get('username', f'User {entry['user_id']}')}**" + + level = self.rank_system.calculate_level(xp=entry['xp']) + + # Progress bar for current level + current_level_xp = self.rank_system.calculate_xp_for_level(level) + next_level_xp = self.rank_system.calculate_xp_for_level(level + 1) + progress = (entry['xp'] - current_level_xp) / (next_level_xp - current_level_xp) \ + if next_level_xp > current_level_xp else 0 + + progress_bar_length = 10 + filled_bars = round(progress_bar_length * progress) + progress_bar = f"{'▰' * filled_bars}{'▱' * (progress_bar_length - filled_bars)}" + + leaderboard_text += ( + f"{rank_display} {username}\n" + f"Lvl {level} | XP: {entry['xp']:,} | Messages: {entry.get('message_count', 0):,}\n" + f"{progress_bar} {int(progress*100)}%\n" + ) + + # Add decorative separator between entries + if i < len(leaderboard_data): + leaderboard_text += "┄┄┄┄┄┄┄┄┄┄┄┄\n" + + embed.description = leaderboard_text + + # Add footer + embed.set_footer(text=f"Page {page}/{total_pages} • {total_users:,} total ranked users") + + return embed + + def create_leaderboard_buttons(self, page, total_pages, platform): + """Create navigation buttons for the leaderboard.""" + view = discord.ui.View(timeout=300) # 5 minutes timeout + + # First page button + first_button = discord.ui.Button( + emoji="⏮️", + style=discord.ButtonStyle.gray, + disabled=(page == 1), + custom_id=f"leaderboard:{platform}:first:{page}" # Make unique with button type + ) + first_button.callback = lambda i: self.handle_leaderboard_button(i, platform, 1) + + # Previous page button + prev_button = discord.ui.Button( + emoji="◀️", + style=discord.ButtonStyle.gray, + disabled=(page == 1), + custom_id=f"leaderboard:{platform}:prev:{page}" # Make unique with button type + ) + prev_button.callback = lambda i: self.handle_leaderboard_button(i, platform, max(1, page-1)) + + # Page indicator (not clickable) + page_indicator = discord.ui.Button( + label=f"{page}/{total_pages}", + style=discord.ButtonStyle.gray, + disabled=True, + custom_id=f"leaderboard:{platform}:indicator:{page}" # Make unique with page number + ) + + # Next page button + next_button = discord.ui.Button( + emoji="▶️", + style=discord.ButtonStyle.gray, + disabled=(page == total_pages), + custom_id=f"leaderboard:{platform}:next:{page}" # Make unique with button type + ) + next_button.callback = lambda i: self.handle_leaderboard_button(i, platform, min(total_pages, page+1)) + + # Last page button + last_button = discord.ui.Button( + emoji="⏭️", + style=discord.ButtonStyle.gray, + disabled=(page == total_pages), + custom_id=f"leaderboard:{platform}:last:{page}" # Make unique with button type + ) + last_button.callback = lambda i: self.handle_leaderboard_button(i, platform, total_pages) + + view.add_item(first_button) + view.add_item(prev_button) + view.add_item(page_indicator) + view.add_item(next_button) + view.add_item(last_button) + + return view + + async def get_leaderboard_data( + self, + platform: str, + community_id: Union[int, str], + page: int = 1, + per_page: int = 10, + ): + """Get all necessary leaderboard data for the given page.""" + offset = (page - 1) * per_page + + leaderboard_data = self.rank_system.get_leaderboard( + platform=platform, + community_id=community_id, + limit=per_page, + offset=offset, + ) + + # Get total users for pagination + total_users = len(self.rank_system.db.get_community_users( + platform=platform, + community_id=community_id + )) + total_pages = max(1, (total_users + per_page - 1) // per_page) + + return leaderboard_data, total_users, total_pages + + @discord.slash_command(name="leaderboard", description="View the server's XP leaderboard") + @option( + name="platform", + description="Platform to view the leaderboard for", + required=False, + choices=["discord", "reddit"], + default="discord", + type=str, + ) + @option( + name="page", + description="Page number", + required=False, + type=int, + min_value=1, + default=1 + ) + async def leaderboard(self, ctx, platform: str = "discord", page: int = 1): + """Command to view the server leaderboard with pagination.""" + await ctx.defer(ephemeral=False) + + communities = dict( + discord=ctx.guild.id, + reddit=globals.REDDIT_BOT.subreddit.id if globals.REDDIT_BOT else None, + ) + + community_id = communities.get(platform) + if not community_id: + await ctx.respond(f"No community ID found for platform: {platform}") + return + + # Get leaderboard data and pagination info + leaderboard_data, total_users, total_pages = await self.get_leaderboard_data( + platform=platform, + community_id=community_id, + page=page, + ) + + if not leaderboard_data: + await ctx.respond("No leaderboard data available.") + return + + # Create the embed and buttons + embed = await self.build_leaderboard_embed( + platform=platform, + leaderboard_data=leaderboard_data, + page=page, + total_pages=total_pages, + total_users=total_users, + ctx=ctx, + ) + view = self.create_leaderboard_buttons( + page=page, + total_pages=total_pages, + platform=platform, + ) + + await ctx.respond(embed=embed, view=view) + + async def handle_leaderboard_button(self, interaction: discord.Interaction, platform: str, page: int): + """Handle pagination button clicks for the leaderboard.""" + await interaction.response.defer() + + communities = dict( + discord=interaction.guild.id, + reddit=globals.REDDIT_BOT.subreddit.id if globals.REDDIT_BOT else None, + ) + + community_id = communities.get(platform) + if not community_id: + await interaction.edit_original_response(content="Could not determine community ID") + return + + # Get leaderboard data and pagination info + leaderboard_data, total_users, total_pages = await self.get_leaderboard_data( + platform=platform, + community_id=community_id, + page=page, + ) + + if not leaderboard_data: + await interaction.edit_original_response(content="No leaderboard data available.") + return + + # Create the embed and buttons + embed = await self.build_leaderboard_embed( + platform=platform, + leaderboard_data=leaderboard_data, + page=page, + total_pages=total_pages, + total_users=total_users, + ctx=interaction, + ) + view = self.create_leaderboard_buttons( + page=page, + total_pages=total_pages, + platform=platform, + ) + + await interaction.edit_original_response(embed=embed, view=view) + + async def auto_migrate_mee6(self): + """ + Automatically migrate Mee6 data when the bot starts, + but only if it hasn't already been migrated. + """ + await self.bot.wait_until_ready() + + # Process each guild the bot is in + for guild in self.bot.guilds: + # Check if migration already done + migration_status = self.rank_system.get_migration_status( + platform='discord', + community_id=guild.id, + source_id=guild.id, + ) + if migration_status: + print(f"Migration already completed for guild: {guild.name} ({guild.id})") + continue # Skip if already migrated + + try: + print(f"Starting automatic Mee6 migration for guild: {guild.name} ({guild.id})") + result = await self.rank_system.migrate_from_mee6(guild_id=guild.id) + + # Save migration status + self.rank_system.set_migration_completed( + platform='discord', + community_id=guild.id, + source_id=guild.id, + stats=result, + ) + + print(f"Completed Mee6 migration for {guild.name}: {result['total_processed']} users processed") + + # Optional: Notify in a system channel or log channel + system_channel = guild.system_channel + if system_channel and system_channel.permissions_for(guild.me).send_messages: + embed = discord.Embed( + title="Rank System Initialized", + description=f"Successfully migrated {result['total_processed']} users from Mee6!", + timestamp=discord.utils.utcnow(), + color=discord.Color.green(), + ) + embed.add_field(name="New Users", value=str(result['new_users']), inline=True) + embed.add_field(name="Updated Users", value=str(result['updated_users']), inline=True) + + try: + await system_channel.send(embed=embed) + except discord.HTTPException: + pass # Silently fail if can't send + + except Exception as e: + print(f"Error during automatic Mee6 migration for guild {guild.id}: {e}") + + +def setup(bot): + bot.add_cog(RankCog(bot)) diff --git a/src/reddit_bot/bot.py b/src/reddit_bot/bot.py index 1b116ee9..bce1b612 100644 --- a/src/reddit_bot/bot.py +++ b/src/reddit_bot/bot.py @@ -4,19 +4,20 @@ import sys import threading import time +from typing import Optional # lib imports import discord import praw from praw import models import prawcore -from tinydb import Query # local imports from src.common import common from src.common import globals from src.common import inspector from src.common.database import Database +from src.common.rank import RankSystem class Bot: @@ -34,7 +35,9 @@ def __init__(self, **kwargs): self.env_valid = self.validate_env() self.version = kwargs.get('version', 'v1') - self.user_agent = kwargs.get('user_agent', f'{common.bot_name} {self.version}') + self.user_agent = kwargs.get( + 'user_agent', + f'praw:dev.lizardbyte.app.support-bot:{self.version} (by /u/{os.getenv("REDDIT_USERNAME")})') self.avatar = kwargs.get('avatar', common.get_bot_avatar(gravatar=os.environ['GRAVATAR_EMAIL'])) self.subreddit_name = kwargs.get('subreddit', os.getenv('PRAW_SUBREDDIT', 'LizardByte')) self.redirect_uri = kwargs.get('redirect_uri', os.getenv('REDIRECT_URI', 'http://localhost:8080')) @@ -52,6 +55,12 @@ def __init__(self, **kwargs): db.table('comments') db.table('submissions') + # Create rank system instance directly + self.rank_system = RankSystem( + bot=self, + xp_range=(150, 250), # use a higher XP because reddit is not nearly as active as discord + ) + self.reddit = praw.Reddit( client_id=os.environ['PRAW_CLIENT_ID'], client_secret=os.environ['PRAW_CLIENT_SECRET'], @@ -62,6 +71,9 @@ def __init__(self, **kwargs): ) self.subreddit = self.reddit.subreddit(self.subreddit_name) # "AskReddit" for faster testing of submission loop + # Run Reddit rank migration on startup + self.migrate_reddit_ranks() + def validate_env(self) -> bool: required_env = [ 'DISCORD_REDDIT_CHANNEL_ID', @@ -79,11 +91,37 @@ def validate_env(self) -> bool: return False return True + def fetch_user(self, name: str) -> Optional[models.Redditor]: + """ + Get a Redditor object by username. + + Parameters + ---------- + name : str + The Reddit username. + + Returns + ------- + praw.models.Redditor + The Redditor object. + """ + redditor = self.reddit.redditor(name=name) + + try: + # praw does not actually get the user object until you access it + redditor.id + except prawcore.NotFound: + # If the user is suspended or deleted, return None + print(f"User {name} not found or suspended.") + return None + + return redditor + def process_comment(self, comment: models.Comment): with self.db as db: + q = self.db.query() comments_table = db.table('comments') - c = Query() - existing_comment = comments_table.get(c.reddit_id == comment.id) + existing_comment = comments_table.get(q.reddit_id == comment.id) if existing_comment and existing_comment.get('processed', False): return @@ -97,13 +135,24 @@ def process_comment(self, comment: models.Comment): 'slash_command': {'project': None, 'command': None}, } + # Award XP for the comment if it's from a valid user + try: + if comment.author: + # Pass the actual Reddit user object to award_xp + xp_result = self.award_reddit_xp(comment.author) + if xp_result and xp_result.get('level_up'): + print(f"User {comment.author.name} leveled up to {xp_result.get('level')}!") + except Exception as e: + print(f"Error awarding XP: {e}") + comment_data = self.slash_commands(comment=comment, comment_data=comment_data) comment_data['processed'] = True - if existing_comment: - comments_table.update(comment_data, c.reddit_id == comment.id) - else: - comments_table.insert(comment_data) + with self.db: + if existing_comment: + comments_table.update(comment_data, q.reddit_id == comment.id) + else: + comments_table.insert(comment_data) def process_submission(self, submission: models.Submission): """ @@ -115,9 +164,9 @@ def process_submission(self, submission: models.Submission): The submission to process. """ with self.db as db: + q = self.db.query() submissions_table = db.table('submissions') - s = Query() - existing_submission = submissions_table.get(s.reddit_id == submission.id) + existing_submission = submissions_table.get(q.reddit_id == submission.id) # Extract submission data to store submission_data = { @@ -137,17 +186,95 @@ def process_submission(self, submission: models.Submission): if existing_submission: submission_data['bot_discord'] = existing_submission.get( 'bot_discord', {'sent': False, 'sent_utc': None}) - submissions_table.update(submission_data, s.reddit_id == submission.id) - else: - print(f'submission id: {submission.id}') - print(f'submission title: {submission.title}') - print('---------') - if os.getenv('DISCORD_REDDIT_CHANNEL_ID'): - submission_data = self.discord(submission=submission, submission_data=submission_data) - submission_data = self.flair(submission=submission, submission_data=submission_data) - submission_data = self.karma(submission=submission, submission_data=submission_data) + submissions_table.update(submission_data, q.reddit_id == submission.id) + return + + print(f'submission id: {submission.id}') + print(f'submission title: {submission.title}') + print('---------') - submissions_table.insert(submission_data) + # Award XP for new submissions + try: + if submission.author: + # Pass the actual Reddit user object + xp_result = self.award_reddit_xp(submission.author) + if xp_result and xp_result.get('level_up'): + print(f"User {submission.author.name} leveled up to {xp_result.get('level')}!") + except Exception as e: + print(f"Error awarding XP: {e}") + + if os.getenv('DISCORD_REDDIT_CHANNEL_ID'): + submission_data = self.discord(submission=submission, submission_data=submission_data) + submission_data = self.flair(submission=submission, submission_data=submission_data) + submission_data = self.karma(submission=submission, submission_data=submission_data) + + with self.db: + submissions_table.insert(submission_data) + + def award_reddit_xp(self, user: models.Redditor): + """ + Award XP to a Reddit user. + + Parameters + ---------- + user : praw.models.Redditor + The Reddit user to award XP to. + + Returns + ------- + dict or None + XP award result or None if on cooldown + """ + # Set the subreddit_id as a property on the user object for the rank system + # This is a hack since Reddit user objects don't have subreddit_id by default + user.subreddit_id = self.subreddit.id + + return self.rank_system.award_xp( + platform='reddit', + user=user, + ) + + def migrate_reddit_ranks(self): + """ + Migrate existing Reddit data to the rank system. + This will grant points for all existing submissions and comments. + """ + try: + # Check if migration has already been performed + migration_status = self.rank_system.get_migration_status( + platform='reddit', + community_id=self.subreddit.id, + source_id='reddit_bot_database', + ) + + if migration_status: + print(f"Reddit ranks migration already completed on {migration_status.get('timestamp')}") + return + + print("Starting Reddit ranks migration...") + + # Start the migration process + stats = self.rank_system.migrate_from_reddit_database( + reddit_bot=self, + reddit_db=self.db, + community_id=self.subreddit.id, + ) + + # Record the migration as completed + self.rank_system.set_migration_completed( + platform='reddit', + community_id=self.subreddit.id, + source_id='reddit_bot_database', + stats=stats, + ) + + print(f"Reddit ranks migration completed: {stats}") + + except Exception as e: + print(f"Error during Reddit ranks migration: {e}") + self.DEGRADED = True + reason = inspector.current_name() + self.DEGRADED_REASONS.append(reason) if reason not in self.DEGRADED_REASONS else None def discord(self, submission: models.Submission, submission_data: dict) -> dict: """ @@ -167,7 +294,7 @@ def discord(self, submission: models.Submission, submission_data: dict) -> dict: color = common.colors['white'] try: - redditor = self.reddit.redditor(name=submission.author) + redditor = self.fetch_user(name=submission.author) except Exception: self.DEGRADED = True reason = inspector.current_name() @@ -177,8 +304,8 @@ def discord(self, submission: models.Submission, submission_data: dict) -> dict: # create the discord embed embed = discord.Embed( author=discord.EmbedAuthor( - name=str(submission.author), - url=f'https://www.reddit.com/user/{submission.author}', + name=str(redditor.name), + url=f'https://www.reddit.com/user/{redditor.name}', icon_url=str(redditor.icon_img), ), color=color, diff --git a/src/reddit_bot/cogs/rank.py b/src/reddit_bot/cogs/rank.py new file mode 100644 index 00000000..32a4ab04 --- /dev/null +++ b/src/reddit_bot/cogs/rank.py @@ -0,0 +1,235 @@ +# lib imports +from praw import models + + +class RedditRankManager: + """ + Class to handle Reddit rank-related functionality. + """ + + def __init__(self, bot): + """ + Initialize the Reddit rank manager. + + Parameters + ---------- + bot : Bot + Reddit bot instance + """ + self.bot = bot + self.rank_system = bot.rank_system + self.subreddit_id = bot.subreddit.id if bot.subreddit else None + + def get_user_rank(self, username: str): + """ + Get rank information for a specific Reddit user. + + Parameters + ---------- + username : str + Reddit username to look up + + Returns + ------- + dict + Rank information including level, XP, and position + """ + try: + # Create a dummy user object for the rank system + class DummyRedditUser: + def __init__(self, name, subreddit_id): + self.name = name + self.id = name # Use the username as ID + self.subreddit_id = subreddit_id + + dummy_user = DummyRedditUser(username, self.subreddit_id) + + # Get user data from rank system + user_data = self.rank_system.get_rank_data( + platform='reddit', + user=dummy_user, + create_if_not_exists=False, + ) + level = self.rank_system.calculate_level(xp=user_data['xp']) + rank_position = self.rank_system.get_user_rank_position( + platform='reddit', + user=dummy_user, + ) + + # Calculate progress to next level + current_level_xp = self.rank_system.calculate_xp_for_level(level) + next_level_xp = self.rank_system.calculate_xp_for_level(level + 1) + progress = (user_data['xp'] - current_level_xp) / (next_level_xp - current_level_xp) \ + if next_level_xp > current_level_xp else 0 + + return { + 'username': username, + 'level': level, + 'xp': user_data['xp'], + 'message_count': user_data.get('message_count', 0), + 'submission_count': user_data.get('submission_count', 0), + 'comment_count': user_data.get('comment_count', 0), + 'rank': rank_position, + 'progress': progress, + 'xp_for_next_level': next_level_xp - user_data['xp'] + } + except Exception as e: + print(f"Error getting rank for Reddit user {username}: {e}") + return None + + def get_leaderboard(self, limit: int = 10, offset: int = 0): + """ + Get the Reddit leaderboard. + + Parameters + ---------- + limit : int + Maximum number of entries to return + offset : int + Number of entries to skip + + Returns + ------- + list + List of user rank data + """ + try: + leaderboard = self.rank_system.get_leaderboard( + platform='reddit', + community_id=self.subreddit_id, + limit=limit, + offset=offset + ) + + # Add level to each entry + for entry in leaderboard: + entry['level'] = self.rank_system.calculate_level(entry['xp']) + + return leaderboard + except Exception as e: + print(f"Error getting Reddit leaderboard: {e}") + return [] + + def respond_to_rank_command(self, comment: models.Comment): + """ + Respond to a /rank command in Reddit. + + Parameters + ---------- + comment : models.Comment + The Reddit comment containing the rank command + + Returns + ------- + bool + True if the command was handled, False otherwise + """ + try: + # Parse command - format could be "/rank" or "/rank username" + parts = comment.body.strip().split() + + if len(parts) == 1 and parts[0].lower() == "/rank": + # User is checking their own rank + username = comment.author.name + elif len(parts) == 2 and parts[0].lower() == "/rank": + # User is checking someone else's rank + username = parts[1].strip() + # Remove u/ prefix if present + if username.startswith('u/'): + username = username[2:] + else: + # Not a valid rank command + return False + + # Get rank data + rank_data = self.get_user_rank(username) + + if not rank_data: + comment.reply(f"Sorry, I couldn't find rank data for u/{username}.") + return True + + # Create a nice Reddit markdown response + level_bar = "▰" * int(rank_data['progress'] * 20) + "▱" * (20 - int(rank_data['progress'] * 20)) + + response = ( + f"# Rank for u/{rank_data['username']}\n\n" + f"**Rank:** #{rank_data['rank']}\n\n" + f"**Level:** {rank_data['level']}\n\n" + f"**XP:** {rank_data['xp']:,}\n\n" + f"**Progress to Level {rank_data['level'] + 1}:** {int(rank_data['progress'] * 100)}%\n\n" + f"{level_bar}\n\n" + f"*Need {rank_data['xp_for_next_level']:,} more XP for next level*\n\n" + f"**Activity:** {rank_data['message_count']:,} total posts " + f"({rank_data.get('submission_count', 0):,} submissions, " + f"{rank_data.get('comment_count', 0):,} comments)\n\n" + f"---\n^(This action was performed by a bot. For issues, please contact the moderators.)" + ) + + comment.reply(response) + return True + + except Exception as e: + print(f"Error responding to rank command: {e}") + return False + + def respond_to_leaderboard_command(self, comment: models.Comment): + """ + Respond to a /leaderboard command in Reddit. + + Parameters + ---------- + comment : models.Comment + The Reddit comment containing the leaderboard command + + Returns + ------- + bool + True if the command was handled, False otherwise + """ + try: + # Parse command - format could be "/leaderboard" or "/leaderboard 2" for page + parts = comment.body.strip().split() + + if len(parts) == 1 and parts[0].lower() == "/leaderboard": + # Default to first page + page = 1 + elif len(parts) == 2 and parts[0].lower() == "/leaderboard": + # User specified a page + try: + page = int(parts[1]) + if page < 1: + page = 1 + except ValueError: + page = 1 + else: + # Not a valid leaderboard command + return False + + per_page = 10 + offset = (page - 1) * per_page + + # Get leaderboard data + leaderboard_data = self.get_leaderboard(limit=per_page, offset=offset) + + if not leaderboard_data: + comment.reply("No leaderboard data available yet.") + return True + + # Create a nice Reddit markdown response + response = f"# r/{self.bot.subreddit_name} XP Leaderboard (Page {page})\n\n" + response += "Rank | User | Level | XP | Activity\n" + response += "---|---|---|---|---\n" + + for i, entry in enumerate(leaderboard_data, start=1): + username = entry.get('username', f"User {entry['user_id']}") + response += f"{offset + i} | u/{username} | {entry['level']} | {entry['xp']:,} | " + response += f"{entry.get('message_count', 0):,} posts\n" + + response += "\n\n---\n^(This action was performed by a bot. For issues, please contact the moderators.)" + + comment.reply(response) + return True + + except Exception as e: + print(f"Error responding to leaderboard command: {e}") + return False diff --git a/tests/fixtures/cassettes/fixture__submission.json b/tests/fixtures/cassettes/fixture__submission.json index eecf7cd3..193bab63 100644 --- a/tests/fixtures/cassettes/fixture__submission.json +++ b/tests/fixtures/cassettes/fixture__submission.json @@ -1,7 +1,7 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T14:17:31", + "recorded_at": "2025-05-20T23:55:47", "request": { "body": { "encoding": "utf-8", @@ -21,209 +21,19 @@ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=fmihacdopjrqqrldfg.0.1714532801785.Z0FBQUFBQm1NYkhDS0Nqa3N0UXJEMTZndnhDWEh4QUMwd0hDS0dMNDh6WkpBNGdkbXh0a0ZPZXFSOVJjdkxLRmZWTnIybWxtTGFtc0V3bmZiZ1dXemR4aTJCdDd3cTA5bkZ3cXdQa3FldmFQd1g3NGdaenNZUmJNSGdWdXhTVFlZTHFPZFNsZ1p3WmE; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785337261.Z0FBQUFBQm9MUlo1ZUxBYkVpS05EVzJJQWNjemdRMUVYRVBuSHpETGtvOG0tSUlMX2FJY2pOcU0yZTZxeDZQUHFIOU5IMTRGeGtodU1OZXBRQzZTVHVTRnBBczRZcGQ5VDNKbnB1UFhRNEdXaFFMbDNzdTRGbFo3akV3OTkzclpuRkxEUDhyb1UtbF8; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/comments/w03cku/?limit=2048&sort=confidence&raw_json=1" + "uri": "https://oauth.reddit.com/comments/vuoiqg/?limit=2048&sort=confidence&raw_json=1" }, "response": { "body": { "encoding": "UTF-8", - "string": "reddit.com: page not found
jump to content
reddit.com page not found
Want to join? Log in or sign up in seconds.|
\"\"

page not found

the page you requested does not exist

\n\n

Use of this site constitutes acceptance of our User Agreement and Privacy Policy. © 2024 reddit inc. All rights reserved.

REDDIT and the ALIEN Logo are registered trademarks of reddit inc.

π Rendered by PID 205845 on reddit-service-r2-comment-579895b85-ppjgs at 2024-05-01 14:17:31.275057+00:00 running 0fe8e6a country code: US.

" - }, - "headers": { - "Accept-Ranges": [ - "bytes" - ], - "Cache-Control": [ - "private, max-age=3600" - ], - "Connection": [ - "keep-alive" - ], - "Content-Length": [ - "32889" - ], - "Date": [ - "Wed, 01 May 2024 14:17:31 GMT" - ], - "NEL": [ - "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" - ], - "Report-To": [ - "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" - ], - "Server": [ - "snooserv" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubdomains" - ], - "Vary": [ - "accept-encoding, Accept-Encoding" - ], - "Via": [ - "1.1 varnish" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-XSS-Protection": [ - "1; mode=block" - ], - "content-type": [ - "text/html; charset=UTF-8" - ], - "www-authenticate": [ - "Bearer realm=\"reddit\", error=\"invalid_token\"" - ], - "x-ua-compatible": [ - "IE=edge" - ] - }, - "status": { - "code": 401, - "message": "Unauthorized" - }, - "url": "https://oauth.reddit.com/comments/w03cku/?limit=2048&sort=confidence&raw_json=1" - } - }, - { - "recorded_at": "2024-05-01T14:17:32", - "request": { - "body": { - "encoding": "utf-8", - "string": "grant_type=password&password=&username=" - }, - "headers": { - "Accept": [ - "*/*" - ], - "Accept-Encoding": [ - "identity" - ], - "Authorization": [ - "Basic " - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=fmihacdopjrqqrldfg.0.1714532801785.Z0FBQUFBQm1NYkhDS0Nqa3N0UXJEMTZndnhDWEh4QUMwd0hDS0dMNDh6WkpBNGdkbXh0a0ZPZXFSOVJjdkxLRmZWTnIybWxtTGFtc0V3bmZiZ1dXemR4aTJCdDd3cTA5bkZ3cXdQa3FldmFQd1g3NGdaenNZUmJNSGdWdXhTVFlZTHFPZFNsZ1p3WmE; csv=2" - ], - "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" - ] - }, - "method": "POST", - "uri": "https://www.reddit.com/api/v1/access_token" - }, - "response": { - "body": { - "encoding": "UTF-8", - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 86400, \"scope\": \"*\"}" - }, - "headers": { - "Accept-Ranges": [ - "bytes" - ], - "Cache-Control": [ - "private, max-age=3600" - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "848" - ], - "Date": [ - "Wed, 01 May 2024 14:17:32 GMT" - ], - "NEL": [ - "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" - ], - "Report-To": [ - "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" - ], - "Server": [ - "snooserv" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubdomains" - ], - "Vary": [ - "accept-encoding, Accept-Encoding" - ], - "Via": [ - "1.1 varnish" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-XSS-Protection": [ - "1; mode=block" - ], - "content-type": [ - "application/json; charset=UTF-8" - ] - }, - "status": { - "code": 200, - "message": "OK" - }, - "url": "https://www.reddit.com/api/v1/access_token" - } - }, - { - "recorded_at": "2024-05-01T14:17:33", - "request": { - "body": { - "encoding": "utf-8", - "string": "" - }, - "headers": { - "Accept": [ - "*/*" - ], - "Accept-Encoding": [ - "identity" - ], - "Authorization": [ - "bearer " - ], - "Connection": [ - "keep-alive" - ], - "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=fmihacdopjrqqrldfg.0.1714532801785.Z0FBQUFBQm1NYkhDS0Nqa3N0UXJEMTZndnhDWEh4QUMwd0hDS0dMNDh6WkpBNGdkbXh0a0ZPZXFSOVJjdkxLRmZWTnIybWxtTGFtc0V3bmZiZ1dXemR4aTJCdDd3cTA5bkZ3cXdQa3FldmFQd1g3NGdaenNZUmJNSGdWdXhTVFlZTHFPZFNsZ1p3WmE; csv=2" - ], - "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" - ] - }, - "method": "GET", - "uri": "https://oauth.reddit.com/comments/w03cku/?limit=2048&sort=confidence&raw_json=1" - }, - "response": { - "body": { - "encoding": "UTF-8", - "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Thank you for joining our LizardByte subreddit! We are still in process of updating our projects on GitHub!\\n\\nLook out for additional updates!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Welcome to LizardByte!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": null, \"hide_score\": false, \"name\": \"t3_w03cku\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.84, \"ignore_reports\": false, \"ups\": 8, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"is_original_content\": false, \"author_fullname\": \"t2_jwdeap93\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 8, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"previous_visits\": [1714572100.0], \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1657930958.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for joining our LizardByte subreddit! We are still in process of updating our projects on GitHub!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELook out for additional updates!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ff4500\", \"id\": \"w03cku\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": [], \"author\": \"tata_contreras\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_subscribers\": 876, \"created_utc\": 1657930958.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removed\": false, \"removal_reason\": null, \"link_id\": \"t3_w03cku\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l208o07\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": \"DELETED\", \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_w03cku\", \"score\": 1, \"approved_by\": null, \"report_reasons\": [], \"ignore_reports\": false, \"all_awardings\": [], \"subreddit_id\": \"t5_6o778z\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": true, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l208o07/\", \"num_reports\": 0, \"locked\": false, \"name\": \"t1_l208o07\", \"created\": 1714515075.0, \"subreddit\": \"LizardByte\", \"author_flair_text\": null, \"treatment_tags\": [], \"spam\": false, \"created_utc\": 1714515075.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"distinguished\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l20s3cv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"rte_mode\": \"markdown\", \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_l20s3cv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l20s3cv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1714522560.0, \"author_flair_text\": \"Bot\", \"collapsed\": false, \"spam\": false, \"created_utc\": 1714522560.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"l20s21b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_w03cku\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/sunshine vban\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_l20s21b\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E/sunshine vban\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_w03cku\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l20s21b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1714522546.0, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"author\": \"ReenigneArcher\", \"created_utc\": 1714522546.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"A place for members of r/LizardByte to chat with each other\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"r/LizardByte Lounge\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_vuoiqg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.88, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"is_original_content\": false, \"author_fullname\": \"t2_393wfkmy\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1657324719.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": true, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA place for members of \\u003Ca href=\\\"/r/LizardByte\\\"\\u003Er/LizardByte\\u003C/a\\u003E to chat with each other\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"vuoiqg\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": [], \"author\": \"ReenigneArcher\", \"discussion_type\": \"CHAT\", \"num_comments\": 30, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"stickied\": true, \"url\": \"https://www.reddit.com/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1657324719.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": 1747711234, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mp56h65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_1l1bxggtg0\", \"removal_reason\": null, \"approved_by\": \"ReenigneArcher\", \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hello, and thank for LizardByte work. \\n\\nI would like to know if someone use sunshine on Elementary OS and if it\\u2019s working on it?\\n\\nThanks you.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_mp56h65\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, and thank for LizardByte work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to know if someone use sunshine on Elementary OS and if it\\u2019s working on it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": true, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/mp56h65/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1745674399.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Tricky_Obligation193\", \"created_utc\": 1745674399.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mashss2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ige9jge\", \"score\": 1, \"author_fullname\": \"t2_e850n\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Ok, but what about using Plex with RetroArch, did that application die?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_mashss2\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOk, but what about using Plex with RetroArch, did that application die?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/mashss2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1738611761.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"kratoz29\", \"created_utc\": 1738611761.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 2, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ige9jge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ige8evy\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Our organization name is now LizardByte. We will have various applications within the organization.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ige9jge\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOur organization name is now LizardByte. We will have various applications within the organization.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ige9jge/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1657980322.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1657980322.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ige8evy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_4aq7o\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Wait, it's called *LizardByte* now?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ige8evy\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWait, it\\u0026#39;s called \\u003Cem\\u003ELizardByte\\u003C/em\\u003E now?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ige8evy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1657979778.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"jiznon\", \"created_utc\": 1657979778.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"igfnd6w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 1, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igeh4rd\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It's not an application name, it's an organization name. Relax.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_igfnd6w\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not an application name, it\\u0026#39;s an organization name. Relax.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igfnd6w/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658001890.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1658001890.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ii4n0ce\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ignjiyh\", \"score\": 2, \"author_fullname\": \"t2_bdqgu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Sunshine is a FOSS version of Nvidia GameStream. You can use it in conjunction with Moonlight to basically host your own Cloud Gaming Service. Or, just Stream your gaming rig to your TV, a Laptop, or your Phone.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ii4n0ce\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESunshine is a FOSS version of Nvidia GameStream. You can use it in conjunction with Moonlight to basically host your own Cloud Gaming Service. Or, just Stream your gaming rig to your TV, a Laptop, or your Phone.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ii4n0ce/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1659103353.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"KaosC57\", \"created_utc\": 1659103353.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 6, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ignnoi3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ignm0e8\", \"score\": 2, \"author_fullname\": \"t2_301azck\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The post you just linked says RetroArcher will be rebranded, and you made this comment\\n\\n\\u003EPart of the reason I am rebranding is the name is too close to RetroArch, but there are multitude of reasons.\\n\\nSo like I said your posts imply that it's being renamed. Explicitly state almost actually.\\n\\nI'm not complaining? I'm giving you feedback? I'm not sure why you're being so sensitive about me taking an interest in the future and reception of your project? If you'd rather I can just stop paying attention to it? I thought you made it to build a community of passionate users but maybe not.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ignnoi3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe post you just linked says RetroArcher will be rebranded, and you made this comment\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EPart of the reason I am rebranding is the name is too close to RetroArch, but there are multitude of reasons.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003ESo like I said your posts imply that it\\u0026#39;s being renamed. Explicitly state almost actually.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not complaining? I\\u0026#39;m giving you feedback? I\\u0026#39;m not sure why you\\u0026#39;re being so sensitive about me taking an interest in the future and reception of your project? If you\\u0026#39;d rather I can just stop paying attention to it? I thought you made it to build a community of passionate users but maybe not.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ignnoi3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658160148.0, \"author_flair_text\": null, \"collapsed\": false, \"author\": \"Inthewirelain\", \"created_utc\": 1658160148.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 7, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ignm0e8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ignjiyh\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"There's more details in the first post I made, but no I did not communicate every single detail (on purpose). I know that a few people will not like the brand name, oh well. It's nearly impossible to find any name that's available as a domain name, github username, and on all the social platforms we need.\\n https://www.reddit.com/r/RetroArcher/comments/vuo4x6/rebranding_retroarcher/?utm_medium=android_app\\u0026utm_source=share\\n\\nSunshine is an open source version of GeForce Experience that will be a critical piece in allowing RetroArcher to be cross platform. Supporting Windows, Linux, Mac, and even Docker. It also supports Nvidia, AMD, and software encoding. I don't know when I'll be moving it, but I'm sure when I do there will be more crying about the name.\\n\\nThis all very petty to complain about. It's basically complaining that it's no longer named after me. Archer in RetroArcher is based on my username, not RetroArch...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ignm0e8\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s more details in the first post I made, but no I did not communicate every single detail (on purpose). I know that a few people will not like the brand name, oh well. It\\u0026#39;s nearly impossible to find any name that\\u0026#39;s available as a domain name, github username, and on all the social platforms we need.\\n \\u003Ca href=\\\"https://www.reddit.com/r/RetroArcher/comments/vuo4x6/rebranding_retroarcher/?utm_medium=android_app\\u0026amp;utm_source=share\\\"\\u003Ehttps://www.reddit.com/r/RetroArcher/comments/vuo4x6/rebranding_retroarcher/?utm_medium=android_app\\u0026amp;utm_source=share\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESunshine is an open source version of GeForce Experience that will be a critical piece in allowing RetroArcher to be cross platform. Supporting Windows, Linux, Mac, and even Docker. It also supports Nvidia, AMD, and software encoding. I don\\u0026#39;t know when I\\u0026#39;ll be moving it, but I\\u0026#39;m sure when I do there will be more crying about the name.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis all very petty to complain about. It\\u0026#39;s basically complaining that it\\u0026#39;s no longer named after me. Archer in RetroArcher is based on my username, not RetroArch...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ignm0e8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658159487.0, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"author\": \"ReenigneArcher\", \"created_utc\": 1658159487.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 6, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ignjiyh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ignhstb\", \"score\": 2, \"author_fullname\": \"t2_301azck\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's sunshine? You haven't really communicated any of this. The post in the RA sub just says it will be rebranded LizardByte, which sounds like you're implying RA will now be LB.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_ignjiyh\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s sunshine? You haven\\u0026#39;t really communicated any of this. The post in the RA sub just says it will be rebranded LizardByte, which sounds like you\\u0026#39;re implying RA will now be LB.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ignjiyh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658158496.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Inthewirelain\", \"created_utc\": 1658158496.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 5, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ignhstb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ign8zko\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"That's correct. I'm also the primary maintainer of Sunshine since the original developer kind of stepped away. Sunshine will be brought into LizardByte fairly soon. Sunshine must be successful in order for RetroArcher to succeed.\\n\\nThese will be the two main projects, but you would be surprised how many side projects are required to have all of this working well. Some of the side projects can now be shared between RetroArcher and Sunshine, which will give me a lot more time back to focus on more important things, instead of duplicating work in multiple github orgs.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ignhstb\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s correct. I\\u0026#39;m also the primary maintainer of Sunshine since the original developer kind of stepped away. Sunshine will be brought into LizardByte fairly soon. Sunshine must be successful in order for RetroArcher to succeed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese will be the two main projects, but you would be surprised how many side projects are required to have all of this working well. Some of the side projects can now be shared between RetroArcher and Sunshine, which will give me a lot more time back to focus on more important things, instead of duplicating work in multiple github orgs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ignhstb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658157798.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1658157798.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 4, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ign8zko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igj7id7\", \"score\": 1, \"author_fullname\": \"t2_301azck\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"So retroarcher is staying retroarcher, LB I'd your team name?\\n\\nI'd your team going to make commercial products?\\n\\nI still think you'd be better off focusing on just a foundation for RA myself. It'll confuse people and it'll split your and the teams focus, and the product is still quite young.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ign8zko\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo retroarcher is staying retroarcher, LB I\\u0026#39;d your team name?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;d your team going to make commercial products?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI still think you\\u0026#39;d be better off focusing on just a foundation for RA myself. It\\u0026#39;ll confuse people and it\\u0026#39;ll split your and the teams focus, and the product is still quite young.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ign8zko/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658154148.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Inthewirelain\", \"created_utc\": 1658154148.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 3, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"igj7id7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igehi88\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"That wouldn't make sense considering we are developing more than emulator tools.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_igj7id7\", \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat wouldn\\u0026#39;t make sense considering we are developing more than emulator tools.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igj7id7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658075302.0, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"author\": \"ReenigneArcher\", \"created_utc\": 1658075302.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 2, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"igehi88\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igeh4rd\", \"score\": 1, \"author_fullname\": \"t2_301azck\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yeah nobody will know what this is on a list and it'll be dead in the water. It needs retro or game or emu in the name. Even something basic like StreamEmu would be better.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_igehi88\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah nobody will know what this is on a list and it\\u0026#39;ll be dead in the water. It needs retro or game or emu in the name. Even something basic like StreamEmu would be better.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igehi88/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1657983967.0, \"author_flair_text\": null, \"collapsed\": false, \"author\": \"Inthewirelain\", \"created_utc\": 1657983967.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"igeh4rd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 2, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_q7mwx\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This is quite easily one of the stupidest names you could've picked.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_igeh4rd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is quite easily one of the stupidest names you could\\u0026#39;ve picked.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igeh4rd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1657983803.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Scioptic-\", \"created_utc\": 1657983803.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"igfqxe9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igfo44p\", \"score\": 1, \"author_fullname\": \"t2_jhvqvynt\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yeah that's what I figured after the initial glance. Makes sense.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_igfqxe9\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah that\\u0026#39;s what I figured after the initial glance. Makes sense.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igfqxe9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658003452.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"nwskier1111\", \"created_utc\": 1658003452.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 2, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"igfo44p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_igfk5ap\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I am bringing in all the the projects I maintain into one GitHub organization as it's too much to maintain multiple orgs. The rebrand will allow me to spend less time on tedious tasks and more time developing. It will also expose all the projects to more developers which will ultimately be better for all the projects. \\n\\n\\nMost notable projects are RetroArcher and Sunshine.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_igfo44p\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am bringing in all the the projects I maintain into one GitHub organization as it\\u0026#39;s too much to maintain multiple orgs. The rebrand will allow me to spend less time on tedious tasks and more time developing. It will also expose all the projects to more developers which will ultimately be better for all the projects. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost notable projects are RetroArcher and Sunshine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igfo44p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658002215.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1658002215.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"igfk5ap\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_jhvqvynt\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"would love to hear the reasoning behind the name, if there is one.... is there one?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_igfk5ap\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewould love to hear the reasoning behind the name, if there is one.... is there one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igfk5ap/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658000485.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"nwskier1111\", \"created_utc\": 1658000485.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"igfkb2e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_jhvqvynt\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Since this is an org name with Apps underneath, is it going to be RetroArcher by LizardByte?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_igfkb2e\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESince this is an org name with Apps underneath, is it going to be RetroArcher by LizardByte?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/igfkb2e/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1658000552.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"nwskier1111\", \"created_utc\": 1658000552.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ilfmnj8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ilbbswa\", \"score\": 1, \"author_fullname\": \"t2_d06twfxg\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Happy to share more information. Can you share your email or any other contact details in DM may be?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_ilfmnj8\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHappy to share more information. Can you share your email or any other contact details in DM may be?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ilfmnj8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1661245967.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Least_Assistance5401\", \"created_utc\": 1661245967.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 2, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ilbbswa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ilaw8qs\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Before I decide, please describe your needs in more detail. Alternatively reach out to us on discord.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ilbbswa\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBefore I decide, please describe your needs in more detail. Alternatively reach out to us on discord.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ilbbswa/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1661172142.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1661172142.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ilaw8qs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_d06twfxg\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Can we get some consulting help from you for some specific desktop capture needs using Sunshine?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ilaw8qs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan we get some consulting help from you for some specific desktop capture needs using Sunshine?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ilaw8qs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1661162207.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Least_Assistance5401\", \"created_utc\": 1661162207.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ivokev5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_ivo9pyt\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"it's on our website https://app.lizardbyte.dev\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_ivokev5\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s on our website \\u003Ca href=\\\"https://app.lizardbyte.dev\\\"\\u003Ehttps://app.lizardbyte.dev\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ivokev5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1668002102.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1668002102.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"ivo9pyt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_3jd3m26z\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Whats the link for the discord? Can't seem to find it anywhere.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_ivo9pyt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhats the link for the discord? Can\\u0026#39;t seem to find it anywhere.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/ivo9pyt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1667996436.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"ForceSpike\", \"created_utc\": 1667996436.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j1goh41\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_9tonf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I just was researching how to stream games from my PC to my laptop and stumbled upon Sunshine. \\nThe name is hilarious because we have a lizard (Bearded dragon) named Sunshine.\\nJust wanted to share\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_j1goh41\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just was researching how to stream games from my PC to my laptop and stumbled upon Sunshine. \\nThe name is hilarious because we have a lizard (Bearded dragon) named Sunshine.\\nJust wanted to share\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j1goh41/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1671858006.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"butt_badg3r\", \"created_utc\": 1671858006.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j3bhl9r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_4qj3hpkf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Having an issue where Sunshine wont even install. Part way through the installers there is a write error\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_j3bhl9r\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaving an issue where Sunshine wont even install. Part way through the installers there is a write error\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j3bhl9r/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1673087107.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"SnooSquirrels9023\", \"created_utc\": 1673087107.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j3bznlt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_eu7ph74r\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Sorry no sure in correct area but gone through all of wiki instructions, everything setup but plex not seeing any roms, just trying c64 at the moment\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_j3bznlt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry no sure in correct area but gone through all of wiki instructions, everything setup but plex not seeing any roms, just trying c64 at the moment\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j3bznlt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1673099635.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"No_Stand8571\", \"created_utc\": 1673099635.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removed\": false, \"removal_reason\": null, \"link_id\": \"t3_vuoiqg\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j3ov7yw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_j3ev2hu\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It's not dead. I'm slowly working on a complete re-write. I probably won't update the current RetroArcher.bundle. It should be considered proof of concept, and yes there are some bugs unfortunately.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_j3ov7yw\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not dead. I\\u0026#39;m slowly working on a complete re-write. I probably won\\u0026#39;t update the current RetroArcher.bundle. It should be considered proof of concept, and yes there are some bugs unfortunately.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j3ov7yw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1673314062.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1673314062.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"j3ev2hu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": \"DELETED\", \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"approved_by\": null, \"report_reasons\": [], \"ignore_reports\": false, \"all_awardings\": [], \"subreddit_id\": \"t5_6o778z\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": true, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j3ev2hu/\", \"num_reports\": 0, \"locked\": false, \"name\": \"t1_j3ev2hu\", \"created\": 1673142476.0, \"subreddit\": \"LizardByte\", \"author_flair_text\": null, \"treatment_tags\": [], \"spam\": false, \"created_utc\": 1673142476.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j6s778p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t1_j6nuyxu\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The old sub is no longer maintained or monitored. We're not having a dedicated sub for each application we create. Also, probably not going to create anything on Telegram. We have enough channels to receive updates on (GitHub, Discord, r/LizardByte, Facebook page \\u0026 group, and Twitter).\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_j6s778p\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe old sub is no longer maintained or monitored. We\\u0026#39;re not having a dedicated sub for each application we create. Also, probably not going to create anything on Telegram. We have enough channels to receive updates on (GitHub, Discord, \\u003Ca href=\\\"/r/LizardByte\\\"\\u003Er/LizardByte\\u003C/a\\u003E, Facebook page \\u0026amp; group, and Twitter).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j6s778p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1675263750.0, \"author_flair_text\": \"Developer\", \"collapsed\": false, \"author\": \"ReenigneArcher\", \"created_utc\": 1675263750.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 1, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"j6nuyxu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_5gxlc\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I think retroacher updates should stay on the old sub, even better zap those updates in a Telegram channel as well. You can open a LizardByte forum on Telegram with a Topic of each project.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_j6nuyxu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think retroacher updates should stay on the old sub, even better zap those updates in a Telegram channel as well. You can open a LizardByte forum on Telegram with a Topic of each project.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j6nuyxu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1675186520.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"Stiltzkinn\", \"created_utc\": 1675186520.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"author_flair_background_color\": null, \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": 1697510504, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"removed\": false, \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"j7sej29\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"can_mod_post\": true, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_ujz4jezt\", \"removal_reason\": null, \"approved_by\": \"ReenigneArcher\", \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hi Team. How should I proceed in Win11 to send 7.1 audio to my shield with moonlight?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_j7sej29\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi Team. How should I proceed in Win11 to send 7.1 audio to my shield with moonlight?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"link_id\": \"t3_vuoiqg\", \"unrepliable_reason\": null, \"approved\": true, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/j7sej29/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": [], \"created\": 1675907336.0, \"author_flair_text\": null, \"treatment_tags\": [], \"author\": \"annakin171\", \"created_utc\": 1675907336.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"depth\": 0, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": 0, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": [ @@ -233,10 +43,10 @@ "keep-alive" ], "Content-Length": [ - "12299" + "75380" ], "Date": [ - "Wed, 01 May 2024 14:17:32 GMT" + "Tue, 20 May 2025 23:55:47 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -248,7 +58,7 @@ "snooserv" ], "Set-Cookie": [ - "session_tracker=hjgieqemmchoocirph.0.1714573052783.Z0FBQUFBQm1Nazc4MFBhTDdhc0xUdnNEdWlVZUpvMnFMTFFEenJPLXNTRDFPWjVBT05od292dk5DMkdtSDhhSDVNbjhiLUlSMzVDaGwwcXVGZm1CejhaZjF2dVpsZ2VyNXI3S2pJSzI2RVJfMVEzeG8ycDZEUHY1bGNJSzRBay1iRVhEZEZWMlhmYUc; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 16:17:32 GMT; secure; SameSite=None; Secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785347314.Z0FBQUFBQm9MUmFEQXl1b2twMFE0c1M4dTk2SUpFMUJEUklpWDM1YXdEQUdTWW41RnJ2MFI4d2ROdHlyMzZObzN4TmlTX0pqYnQ5NEtvM18xdkpTMUE2eXZtbkdic1djVDY1TWFka3ZnbmdyV1RRdGhaeEU4OVJ4cnFuVkpHODdaY1E0aUFETXY0OUw; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:47 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -278,13 +88,13 @@ "-1" ], "x-ratelimit-remaining": [ - "939" + "935.0" ], "x-ratelimit-reset": [ - "148" + "252" ], "x-ratelimit-used": [ - "57" + "65" ], "x-ua-compatible": [ "IE=edge" @@ -294,7 +104,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/comments/w03cku/?limit=2048&sort=confidence&raw_json=1" + "url": "https://oauth.reddit.com/comments/vuoiqg/?limit=2048&sort=confidence&raw_json=1" } } ], diff --git a/tests/fixtures/cassettes/fixture_slash_command_comment.json b/tests/fixtures/cassettes/fixture_slash_command_comment.json index 1d578278..bc92b33e 100644 --- a/tests/fixtures/cassettes/fixture_slash_command_comment.json +++ b/tests/fixtures/cassettes/fixture_slash_command_comment.json @@ -1,102 +1,7 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T02:35:44", - "request": { - "body": { - "encoding": "utf-8", - "string": "grant_type=password&password=&username=" - }, - "headers": { - "Accept": [ - "*/*" - ], - "Accept-Encoding": [ - "identity" - ], - "Authorization": [ - "Basic " - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" - ] - }, - "method": "POST", - "uri": "https://www.reddit.com/api/v1/access_token" - }, - "response": { - "body": { - "encoding": "UTF-8", - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 86400, \"scope\": \"*\"}" - }, - "headers": { - "Accept-Ranges": [ - "bytes" - ], - "Cache-Control": [ - "private, max-age=3600" - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "848" - ], - "Date": [ - "Wed, 01 May 2024 02:35:44 GMT" - ], - "NEL": [ - "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" - ], - "Report-To": [ - "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" - ], - "Server": [ - "snooserv" - ], - "Set-Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; Domain=reddit.com; Max-Age=63071999; Path=/; secure" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubdomains" - ], - "Vary": [ - "accept-encoding, Accept-Encoding" - ], - "Via": [ - "1.1 varnish" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-XSS-Protection": [ - "1; mode=block" - ], - "content-type": [ - "application/json; charset=UTF-8" - ] - }, - "status": { - "code": 200, - "message": "OK" - }, - "url": "https://www.reddit.com/api/v1/access_token" - } - }, - { - "recorded_at": "2024-05-01T02:35:44", + "recorded_at": "2025-05-20T23:55:36", "request": { "body": { "encoding": "utf-8", @@ -110,16 +15,16 @@ "identity" ], "Authorization": [ - "bearer " + "bearer " ], "Connection": [ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785334238.Z0FBQUFBQm9MUloybmtfd1Q2UVNaeUl1Z2tXVEVSMEp6QXdDUjdqTzh1eWJBWEd6OUdVRXFYd1NxSWVkc2lGWkU1SUNGLUsyUGpTNklnMG5YVm5tMll5VHUzcGFNOC1MOHlNamRDZnRGdVUzbk5pc3NESGI1NjhwZFNvVHZrWFBPX1dObjU3bTEyTlk; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", @@ -141,7 +46,7 @@ "2037" ], "Date": [ - "Wed, 01 May 2024 02:35:44 GMT" + "Tue, 20 May 2025 23:55:36 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -153,9 +58,7 @@ "snooserv" ], "Set-Cookie": [ - "loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; Domain=reddit.com; Max-Age=63071999; Path=/; expires=Fri, 01-May-2026 02:35:44 GMT; secure; SameSite=None; Secure", - "session_tracker=goeleipgnjpgmqklcp.0.1714530944660.Z0FBQUFBQm1NYXFBcFRER1ZtRGdHYkVrSUpZQ1JmVTUwNkVWWDNzNzBKSUQtQnVsZ2JHTVladHNsLU5xSFB4SG9hVlZ4YTNQTWZHcDFBek00QlY0Q1V5WTY3cUpfV2ZvU0lBMEZLaXItbGFnTkItVzBMcEtoX2l1eUQyS1BtdS02d19tS1N4WVVKbzI; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 04:35:44 GMT; secure; SameSite=None; Secure", - "csv=2; Max-Age=63072000; Domain=.reddit.com; Path=/; Secure; SameSite=None" + "session_tracker=adhdnlqbpoljraclbh.0.1747785336843.Z0FBQUFBQm9MUlo0QTk1WEpOb2VFVUM4cVZkb0pWbFBDVm51RHM2N3dsNzVia2EtRDhBSkZGa2FBOWFoMWVuQm44ZFo1NHp2QXZTeEVWblNjWU1CeUMxYUE4WnZ6dml4NDhHeVNUS3lwRUpUWDh1NzJDRXl1MGh3Q3RLZF9XVzNaVmxlajJMX1lST3I; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:36 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -185,13 +88,13 @@ "-1" ], "x-ratelimit-remaining": [ - "954" + "940.0" ], "x-ratelimit-reset": [ - "256" + "263" ], "x-ratelimit-used": [ - "42" + "60" ], "x-ua-compatible": [ "IE=edge" diff --git a/tests/fixtures/cassettes/test_comment_loop.json b/tests/fixtures/cassettes/test_comment_loop.json index 52ca18a6..7598398e 100644 --- a/tests/fixtures/cassettes/test_comment_loop.json +++ b/tests/fixtures/cassettes/test_comment_loop.json @@ -1,7 +1,7 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T14:21:57", + "recorded_at": "2025-05-20T23:55:50", "request": { "body": { "encoding": "utf-8", @@ -21,10 +21,10 @@ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573053011.Z0FBQUFBQm1Nazc5QnZtNzNFM0x3QmZiYWJOUmw1cTgwRGJRNXZaZEh6dDRfVkY3WVRKMEwzLVBTbFNNSndvV0ExREtpSkI3SDVZVVZMSkJBWkwyaUZfazFhbGRYRWU3SzF6U1c2ZTNTSTd4TTJOeDJoenpyUkdLZ01va1oxOTY4b0RrbkRDU0RSU0o; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785348003.Z0FBQUFBQm9MUmFFdHFJakh2UHVTZ19CQ2lTWXk5dEozaTdlME5vX2cwUW80NVpSVk4zYXFtNUFobncyTmdsNW9idUhmT1NzS0pjWUtDU081VjR5MHRtNENGMV81dlF0cmxFZjJWVjR3VENWVUROUE9uY1dxVHJ5c3F0aUN1RENjU2VXaFQyc01wRFU; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", @@ -33,23 +33,20 @@ "response": { "body": { "encoding": "UTF-8", - "string": "LizardByte: page not found
\"\"

page not found

the page you requested does not exist

\n\n

Use of this site constitutes acceptance of our User Agreement and Privacy Policy. © 2024 reddit inc. All rights reserved.

REDDIT and the ALIEN Logo are registered trademarks of reddit inc.

π Rendered by PID 32 on reddit-service-r2-comment-579895b85-mpf4s at 2024-05-01 14:21:56.972791+00:00 running 0fe8e6a country code: US.

" + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": \"t1_m84x922\", \"dist\": 100, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Welcome to LizardByte!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mtdyx3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1747785337.0, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#ffd635\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/mtdyx3d/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"name\": \"t1_mtdyx3d\", \"created\": 1747785337.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Bot\", \"removed\": false, \"spam\": false, \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Welcome to LizardByte!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mtdybsz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1747785128.0, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#ffd635\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/mtdybsz/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"name\": \"t1_mtdybsz\", \"created\": 1747785128.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Bot\", \"removed\": false, \"spam\": false, \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Welcome to LizardByte!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mt8m8ag\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1747712287.0, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#ffd635\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/mt8m8ag/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"name\": \"t1_mt8m8ag\", \"created\": 1747712287.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Bot\", \"removed\": false, \"spam\": false, \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mqu8ncl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1746510000.0, \"send_replies\": true, \"parent_id\": \"t3_1icqylj\", \"score\": 1, \"author_fullname\": \"t2_9sq6lxhf\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I got it all working well on m3 max . But I can\\u2019t get pass the permissions denied issue that shows on logs once I tried running any games that are not in steam .\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI got it all working well on m3 max . But I can\\u2019t get pass the permissions denied issue that shows on logs once I tried running any games that are not in steam .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/mqu8ncl/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_mqu8ncl\", \"created\": 1746510000.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"whatislov1\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Is Sunshine working with Debian 13 testing\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"forwardslashroot\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mpxp5wd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1746058557.0, \"send_replies\": true, \"parent_id\": \"t1_mpxozcb\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Yea, the docs have instructions.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYea, the docs have instructions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1kbb6wg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/mpxp5wd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"name\": \"t1_mpxp5wd\", \"created\": 1746058557.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Is Sunshine working with Debian 13 testing\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"forwardslashroot\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mpxozcb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1746058494.0, \"send_replies\": true, \"parent_id\": \"t1_mptlw46\", \"score\": 1, \"author_fullname\": \"t2_4b61cig1\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Is there a guide how to compile Sunshine to get it to work on Debian 13?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a guide how to compile Sunshine to get it to work on Debian 13?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1kbb6wg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/mpxozcb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"name\": \"t1_mpxozcb\", \"created\": 1746058494.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"forwardslashroot\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Is Sunshine working with Debian 13 testing\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"forwardslashroot\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mptlw46\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1746012517.0, \"send_replies\": true, \"parent_id\": \"t3_1kbb6wg\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"No, you'll need to self compile\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, you\\u0026#39;ll need to self compile\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1kbb6wg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/mptlw46/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"name\": \"t1_mptlw46\", \"created\": 1746012517.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ChimeraOS Sunshine help\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"OmniiOMEGA\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mpgcfb7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1745830727.0, \"send_replies\": true, \"parent_id\": \"t1_mpgcarl\", \"score\": 1, \"author_fullname\": \"t2_q97n9jfj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Np I fixed it easily actually, now everything is perfect \\ud83d\\udc4d\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENp I fixed it easily actually, now everything is perfect \\ud83d\\udc4d\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1d02qss\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/mpgcfb7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"name\": \"t1_mpgcfb7\", \"created\": 1745830727.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Yxtomix\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ChimeraOS Sunshine help\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"OmniiOMEGA\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mpgcarl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1745830644.0, \"send_replies\": true, \"parent_id\": \"t1_mpej915\", \"score\": 1, \"author_fullname\": \"t2_kbarf010u\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Sorry but i sadly just switched to linux mint, i had a bunch of problems on bazzite so i just switched, and on linux mint i am having a good experience, though on mint i didn't try sunshine, maybe i will.\\n\\nSorry if i can't help.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry but i sadly just switched to linux mint, i had a bunch of problems on bazzite so i just switched, and on linux mint i am having a good experience, though on mint i didn\\u0026#39;t try sunshine, maybe i will.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry if i can\\u0026#39;t help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1d02qss\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/mpgcarl/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"name\": \"t1_mpgcarl\", \"created\": 1745830644.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Successful-Bar2579\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"ChimeraOS Sunshine help\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"OmniiOMEGA\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mpej915\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1745799492.0, \"send_replies\": true, \"parent_id\": \"t1_lxfwzoh\", \"score\": 1, \"author_fullname\": \"t2_q97n9jfj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Did you found a fix, I have the exact same issued but on bazzite.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid you found a fix, I have the exact same issued but on bazzite.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1d02qss\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/mpej915/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"name\": \"t1_mpej915\", \"created\": 1745799492.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Yxtomix\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Fedora 42\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Few_Imagination1769\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mp96pik\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1745723218.0, \"send_replies\": true, \"parent_id\": \"t1_mp8tu4n\", \"score\": 2, \"author_fullname\": \"t2_xguspqcsg\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thank you!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1k7t2tz\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1k7t2tz/fedora_42/mp96pik/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"name\": \"t1_mp96pik\", \"created\": 1745723218.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Few_Imagination1769\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1k6qqcj/steam_app/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Steam app\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Chukkles22\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mp8u01y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1745718175.0, \"send_replies\": true, \"parent_id\": \"t3_1k6qqcj\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"See the last bullet point here: [https://docs.lizardbyte.dev/projects/sunshine/latest/md\\\\_docs\\\\_2getting\\\\_\\\\_started.html#considerations](https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#considerations)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESee the last bullet point here: \\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#considerations\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#considerations\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1k6qqcj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1k6qqcj/steam_app/mp8u01y/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1k6qqcj/steam_app/\", \"name\": \"t1_mp8u01y\", \"created\": 1745718175.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Fedora 42\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Few_Imagination1769\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mp8tu4n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1745718112.0, \"send_replies\": true, \"parent_id\": \"t3_1k7t2tz\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It's working but you have to use our beta repo.\\n\\n[https://docs.lizardbyte.dev/projects/sunshine/latest/md\\\\_docs\\\\_2getting\\\\_\\\\_started.html#fedora](https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#fedora)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s working but you have to use our beta repo.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#fedora\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#fedora\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1k7t2tz\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1k7t2tz/fedora_42/mp8tu4n/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"name\": \"t1_mp8tu4n\", \"created\": 1745718112.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": 1747711234, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"r/LizardByte Lounge\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ReenigneArcher\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mp56h65\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 30, \"can_mod_post\": true, \"created_utc\": 1745674399.0, \"send_replies\": true, \"parent_id\": \"t3_vuoiqg\", \"score\": 1, \"author_fullname\": \"t2_1l1bxggtg0\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": \"ReenigneArcher\", \"controversiality\": 0, \"body\": \"Hello, and thank for LizardByte work. \\n\\nI would like to know if someone use sunshine on Elementary OS and if it\\u2019s working on it?\\n\\nThanks you.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, and thank for LizardByte work. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would like to know if someone use sunshine on Elementary OS and if it\\u2019s working on it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": true, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/mp56h65/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"name\": \"t1_mp56h65\", \"created\": 1745674399.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Tricky_Obligation193\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mosoxu3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745505760.0, \"send_replies\": true, \"parent_id\": \"t1_mosoe97\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"No problem. I should probably add it to the flathub landing page as well.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo problem. I should probably add it to the flathub landing page as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mosoxu3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mosoxu3\", \"created\": 1745505760.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mosoe97\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745505598.0, \"send_replies\": true, \"parent_id\": \"t1_mos2397\", \"score\": 1, \"author_fullname\": \"t2_8y693gj0\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks must of overlocked that in docs last night was kind of late.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks must of overlocked that in docs last night was kind of late.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mosoe97/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mosoe97\", \"created\": 1745505598.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Chukkles22\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mos2397\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745498422.0, \"send_replies\": true, \"parent_id\": \"t1_mos114h\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"All commands from flatpak version need to have a prefix applied. This is in the documentation.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAll commands from flatpak version need to have a prefix applied. This is in the documentation.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mos2397/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mos2397\", \"created\": 1745498422.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mos114h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745498034.0, \"send_replies\": true, \"parent_id\": \"t1_morz867\", \"score\": 1, \"author_fullname\": \"t2_8y693gj0\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I am running the flatpak I am pretty sure I installed as system should I uninstall and reinstall under a user instead of system?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am running the flatpak I am pretty sure I installed as system should I uninstall and reinstall under a user instead of system?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mos114h/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mos114h\", \"created\": 1745498034.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Chukkles22\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"morz867\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745497359.0, \"send_replies\": true, \"parent_id\": \"t1_moryxrv\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Sunshine is probably running under a different environment or different user\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESunshine is probably running under a different environment or different user\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/morz867/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_morz867\", \"created\": 1745497359.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"moryxrv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1745497249.0, \"send_replies\": true, \"parent_id\": \"t1_mh21jw4\", \"score\": 1, \"author_fullname\": \"t2_8y693gj0\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I am running into the same issue and when I run the command from terminal it works just fine.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am running into the same issue and when I run the command from terminal it works just fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/moryxrv/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_moryxrv\", \"created\": 1745497249.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Chukkles22\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Why all repos of Themerr are archived?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"felipemarinho\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"moni1ku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1745433039.0, \"send_replies\": true, \"parent_id\": \"t1_molo0g0\", \"score\": 1, \"author_fullname\": \"t2_fkslh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Unfortunately I'm not a programmer, just an enthusiast. I joined the Discord server if you wanna shoot me a message when your online. (Same username)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately I\\u0026#39;m not a programmer, just an enthusiast. I joined the Discord server if you wanna shoot me a message when your online. (Same username)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1g3ke6p\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/moni1ku/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"name\": \"t1_moni1ku\", \"created\": 1745433039.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damienlee69\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Why all repos of Themerr are archived?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"felipemarinho\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"molo0g0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1745413332.0, \"send_replies\": true, \"parent_id\": \"t1_mok2h4w\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Are you a programmer?\\n\\nThe first step would be reviving ThemerrDB. I'm happy to unarchive it if any solutions are found.\\n\\nProbably better discuss on our discord server.\\n\\nP.S. Piracy is not a valid solution if that's what you're thinking. We originally went with YouTube because it still required the user to actually have access to the content.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you a programmer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe first step would be reviving ThemerrDB. I\\u0026#39;m happy to unarchive it if any solutions are found.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProbably better discuss on our discord server.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EP.S. Piracy is not a valid solution if that\\u0026#39;s what you\\u0026#39;re thinking. We originally went with YouTube because it still required the user to actually have access to the content.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1g3ke6p\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/molo0g0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"name\": \"t1_molo0g0\", \"created\": 1745413332.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Why all repos of Themerr are archived?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"felipemarinho\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mok2h4w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1745382742.0, \"send_replies\": true, \"parent_id\": \"t1_lrwwgse\", \"score\": 1, \"author_fullname\": \"t2_fkslh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I just found out that you could use themes on movies too. Which led me to this project only to install and discover this sad news. Today I noticed that popular downloaders have stopped working as well, like 4k, I downloaded and Stacher. I got one working again though. I was thinking maybe what I did to fix it (msg me) would be a solution for your plugin..? Although I'm sure you've already tried it. Anyways, I would love to see this project come alive again, even better would be Arr integration.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just found out that you could use themes on movies too. Which led me to this project only to install and discover this sad news. Today I noticed that popular downloaders have stopped working as well, like 4k, I downloaded and Stacher. I got one working again though. I was thinking maybe what I did to fix it (msg me) would be a solution for your plugin..? Although I\\u0026#39;m sure you\\u0026#39;ve already tried it. Anyways, I would love to see this project come alive again, even better would be Arr integration.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1g3ke6p\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/mok2h4w/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"name\": \"t1_mok2h4w\", \"created\": 1745382742.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damienlee69\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Using sunshine on raspberry pi 5?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"rents17\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mmv0qjn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1744528815.0, \"send_replies\": true, \"parent_id\": \"t1_mcif304\", \"score\": 1, \"author_fullname\": \"t2_grpht11r5\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hello, can you share your config please?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, can you share your config please?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i522bs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/mmv0qjn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"name\": \"t1_mmv0qjn\", \"created\": 1744528815.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Hour-Collar1015\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mmc5fq0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1744259434.0, \"send_replies\": true, \"parent_id\": \"t3_1j6x9w9\", \"score\": 1, \"author_fullname\": \"t2_a9g7cmuq\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You found any solution? I'm facing the same issue\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou found any solution? I\\u0026#39;m facing the same issue\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mmc5fq0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mmc5fq0\", \"created\": 1744259434.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"siralysson\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"missing master file\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"THE_INVINCIBLE_MOMO\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mm3jyb2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1744144760.0, \"send_replies\": true, \"parent_id\": \"t1_mm3jrlo\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"This is no longer true. Everything is in sync now and LizardByte now controls the flathub package.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is no longer true. Everything is in sync now and LizardByte now controls the flathub package.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_173w3qy\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/173w3qy/missing_master_file/mm3jyb2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"name\": \"t1_mm3jyb2\", \"created\": 1744144760.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"missing master file\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"THE_INVINCIBLE_MOMO\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mm3jrlo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1744144708.0, \"send_replies\": true, \"parent_id\": \"t1_lyt6pqo\", \"score\": 1, \"author_fullname\": \"t2_1wfkavw5\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"OK! THANKS!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOK! THANKS!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_173w3qy\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/173w3qy/missing_master_file/mm3jrlo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"name\": \"t1_mm3jrlo\", \"created\": 1744144708.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Schlart1\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stream 4K from non-4K system/monitor\", \"mod_reason_by\": null, \"banned_by\": \"AutoModerator\", \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"ban_note\": \"remove not spam\", \"saved\": false, \"id\": \"mm1tevq\", \"banned_at_utc\": 1744126631, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1744126630.0, \"send_replies\": true, \"parent_id\": \"t1_k58f8jj\", \"score\": 1, \"author_fullname\": \"t2_1mw6yub7un\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"ITS NOT\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"removal_reason\": null, \"link_id\": \"t3_179agja\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/mm1tevq/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"name\": \"t1_mm1tevq\", \"created\": 1744126630.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Fit_Glass8761\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EITS NOT\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Controller not recognized on Linux host, Unable to create controller\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjrcyas\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1742951515.0, \"send_replies\": true, \"parent_id\": \"t1_mjrcn6l\", \"score\": 2, \"author_fullname\": \"t2_xp713\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"No way! Can't believe I missed the comment. Thanks tho, I'll make sure to get the latest changes\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo way! Can\\u0026#39;t believe I missed the comment. Thanks tho, I\\u0026#39;ll make sure to get the latest changes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jhnkpf\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/mjrcyas/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"name\": \"t1_mjrcyas\", \"created\": 1742951515.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Eubank31\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Controller not recognized on Linux host, Unable to create controller\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjrcn6l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1742951409.0, \"send_replies\": true, \"parent_id\": \"t1_mjrcjma\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It's already merged\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s already merged\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jhnkpf\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/mjrcn6l/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"name\": \"t1_mjrcn6l\", \"created\": 1742951409.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Controller not recognized on Linux host, Unable to create controller\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjrcjma\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1742951374.0, \"send_replies\": true, \"parent_id\": \"t1_mjf0dle\", \"score\": 1, \"author_fullname\": \"t2_xp713\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Lucky for you, I am actually a CS graduate so I'll give it a go. Thanks so much!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELucky for you, I am actually a CS graduate so I\\u0026#39;ll give it a go. Thanks so much!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jhnkpf\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/mjrcjma/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"name\": \"t1_mjrcjma\", \"created\": 1742951374.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Eubank31\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Using sunshine on raspberry pi 5?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"rents17\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjpqgr2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1742933218.0, \"send_replies\": true, \"parent_id\": \"t1_mcif304\", \"score\": 1, \"author_fullname\": \"t2_9oxh386s\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You can share the process and its results? thank you.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can share the process and its results? thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i522bs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/mjpqgr2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"name\": \"t1_mjpqgr2\", \"created\": 1742933218.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ffluis1000\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Controller not recognized on Linux host, Unable to create controller\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjf0dle\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1742783275.0, \"send_replies\": true, \"parent_id\": \"t3_1jhnkpf\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I've put up a PR to try to improve this situation. If you're familiar with GitHub, feel free to test it.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve put up a PR to try to improve this situation. If you\\u0026#39;re familiar with GitHub, feel free to test it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jhnkpf\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/mjf0dle/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jhnkpf/controller_not_recognized_on_linux_host_unable_to/\", \"name\": \"t1_mjf0dle\", \"created\": 1742783275.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjd9kdx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1742761847.0, \"send_replies\": true, \"parent_id\": \"t3_1j27efb\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I solved it. I don't know why, but Sunshine (when dealing with my setup) requires that every time before you use it, you first delete the controller from known previously paired bluetooth devices. Only if you do this things work. Reinstalling everything on smartphone client or on PC host doesn't change anything, only deleting the controller from known previously paired bluetooth devices works.\\n\\nThe only line about gamepads that appears in my log when things work is \\\"Info: Gamepad 0 will be Xbox 360 controller (default)\\\"\\n\\nI don't know why, but with Gamestream I can use bluetooth gamepads without having to delete them from the client's known bluetooth devices beforehand.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI solved it. I don\\u0026#39;t know why, but Sunshine (when dealing with my setup) requires that every time before you use it, you first delete the controller from known previously paired bluetooth devices. Only if you do this things work. Reinstalling everything on smartphone client or on PC host doesn\\u0026#39;t change anything, only deleting the controller from known previously paired bluetooth devices works.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only line about gamepads that appears in my log when things work is \\u0026quot;Info: Gamepad 0 will be Xbox 360 controller (default)\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know why, but with Gamestream I can use bluetooth gamepads without having to delete them from the client\\u0026#39;s known bluetooth devices beforehand.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mjd9kdx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mjd9kdx\", \"created\": 1742761847.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mjd5x2e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1742760738.0, \"send_replies\": true, \"parent_id\": \"t1_mfwvzi0\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The site I used, [https://hardwaretester.com/gamepad](https://hardwaretester.com/gamepad), says \\\"None detected\\\" even when the controler is recognized by Gamestream, so that site is kind of useless for my problem.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe site I used, \\u003Ca href=\\\"https://hardwaretester.com/gamepad\\\"\\u003Ehttps://hardwaretester.com/gamepad\\u003C/a\\u003E, says \\u0026quot;None detected\\u0026quot; even when the controler is recognized by Gamestream, so that site is kind of useless for my problem.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mjd5x2e/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mjd5x2e\", \"created\": 1742760738.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jh7e9m/stylus_cursor_has_lag_upon_start_of_a_stroke/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stylus cursor has lag upon start of a stroke\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"testerl101\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mj4weku\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1742646805.0, \"send_replies\": true, \"parent_id\": \"t3_1jh7e9m\", \"score\": 1, \"author_fullname\": \"t2_362mkgds\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Just to add to this, after i start a stroke if i dont let go then its completely fine with 0 issues. I also tried disabeling the scroll in the ipad moonlight config with no effect.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to add to this, after i start a stroke if i dont let go then its completely fine with 0 issues. I also tried disabeling the scroll in the ipad moonlight config with no effect.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jh7e9m\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jh7e9m/stylus_cursor_has_lag_upon_start_of_a_stroke/mj4weku/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jh7e9m/stylus_cursor_has_lag_upon_start_of_a_stroke/\", \"name\": \"t1_mj4weku\", \"created\": 1742646805.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"testerl101\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Using sunshine on raspberry pi 5?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"rents17\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"miqrjlc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1742443562.0, \"send_replies\": true, \"parent_id\": \"t1_mcif304\", \"score\": 1, \"author_fullname\": \"t2_12dn32c3sx\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Yes! I would like to know how you got it working and any known limitations. Thanks in advance\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes! I would like to know how you got it working and any known limitations. Thanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i522bs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/miqrjlc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"name\": \"t1_miqrjlc\", \"created\": 1742443562.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"sparkthenation13\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mioevgw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742415091.0, \"send_replies\": true, \"parent_id\": \"t1_mio87lg\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I need to drop off for a bit, but if you have any ideas on what to look for in the logs, I'm happy to keep trying. I like this solution and while this is a bit more complex than normal usage, it does feel like it should be capable.\\n\\nI cannot not see anything in the logs for the second client until the first client is closed.\\n\\nIt is almost as if internally sunshine only has 1 thread running the other side of multiple listeners.\\n\\nI was using Parsec until about a month ago when I set sunshine up because Parsec needed an external login, which often needed an email to approve your ip address. Not something I am interested in for just LAN remote access.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need to drop off for a bit, but if you have any ideas on what to look for in the logs, I\\u0026#39;m happy to keep trying. I like this solution and while this is a bit more complex than normal usage, it does feel like it should be capable.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI cannot not see anything in the logs for the second client until the first client is closed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt is almost as if internally sunshine only has 1 thread running the other side of multiple listeners.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was using Parsec until about a month ago when I set sunshine up because Parsec needed an external login, which often needed an email to approve your ip address. Not something I am interested in for just LAN remote access.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mioevgw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mioevgw\", \"created\": 1742415091.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio8ys3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742413225.0, \"send_replies\": true, \"parent_id\": \"t1_mio87lg\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I have shut down steam, but as I am running putty to control both machines, and firefox to talk to you on here, there is not much more I can shut down.\\n\\nStill the same.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have shut down steam, but as I am running putty to control both machines, and firefox to talk to you on here, there is not much more I can shut down.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EStill the same.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio8ys3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio8ys3\", \"created\": 1742413225.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio87lg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742413004.0, \"send_replies\": true, \"parent_id\": \"t1_mio7w4q\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I mean try with just the desktop, no app or steam running\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean try with just the desktop, no app or steam running\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio87lg/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio87lg\", \"created\": 1742413004.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio8567\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412984.0, \"send_replies\": true, \"parent_id\": \"t1_mio5w0i\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I have turned the logging to verbose and still not seeing anything for the second client. I can only see the first one that connected, which ever one that is.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have turned the logging to verbose and still not seeing anything for the second client. I can only see the first one that connected, which ever one that is.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio8567/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio8567\", \"created\": 1742412984.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio7w4q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412910.0, \"send_replies\": true, \"parent_id\": \"t1_mio7apb\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I am only trying to stream desktop to both machines. Or do you mean remove Steam from available applications on the host?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am only trying to stream desktop to both machines. Or do you mean remove Steam from available applications on the host?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio7w4q/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio7w4q\", \"created\": 1742412910.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio7apb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412735.0, \"send_replies\": true, \"parent_id\": \"t1_mio6x3i\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Try when streaming just the desktop\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry when streaming just the desktop\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio7apb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio7apb\", \"created\": 1742412735.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio6x3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412625.0, \"send_replies\": true, \"parent_id\": \"t1_mio5w0i\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I will check.\\n\\nAs a side note, I can see the sunshine service listening on the correct port and and has a connection established to the existing client.\\n\\nWhen I try and connect the second client, it marks the connection as established, but the application itself appears not to be responding.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI will check.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a side note, I can see the sunshine service listening on the correct port and and has a connection established to the existing client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I try and connect the second client, it marks the connection as established, but the application itself appears not to be responding.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio6x3i/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio6x3i\", \"created\": 1742412625.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio5w0i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412327.0, \"send_replies\": true, \"parent_id\": \"t1_mio5hcb\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"No, it will be hardware dependent... And your hardware is unlikely to handle anywhere close to the limit.\\n\\nI don't know why it's falling. What do the Sunshine logs say?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, it will be hardware dependent... And your hardware is unlikely to handle anywhere close to the limit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t know why it\\u0026#39;s falling. What do the Sunshine logs say?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio5w0i/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio5w0i\", \"created\": 1742412327.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio5hcb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742412208.0, \"send_replies\": true, \"parent_id\": \"t1_mio48sb\", \"score\": 1, \"author_fullname\": \"t2_m8z6laxt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"So, what could be the reason the second client can not connect?\\n\\nIf the setting was removed and a limit of 128 set, does that mean sunshine should be able to handle 128 simultaneous connections? My machine certainly can, it's running a Ryzen 5950x, 32gb Ram and a 12gb RTX 3060 OC.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo, what could be the reason the second client can not connect?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the setting was removed and a limit of 128 set, does that mean sunshine should be able to handle 128 simultaneous connections? My machine certainly can, it\\u0026#39;s running a Ryzen 5950x, 32gb Ram and a 12gb RTX 3060 OC.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio5hcb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio5hcb\", \"created\": 1742412208.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"FullClip_Killer\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mio48sb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742411846.0, \"send_replies\": true, \"parent_id\": \"t3_1jf2lqu\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The limit is now 128, there's no reason to set the channels setting anymore and in fact it does nothing.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe limit is now 128, there\\u0026#39;s no reason to set the channels setting anymore and in fact it does nothing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio48sb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio48sb\", \"created\": 1742411846.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Multiple clients connecting to Windows Sunshine host\", \"mod_reason_by\": null, \"banned_by\": \"ReenigneArcher\", \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"FullClip_Killer\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"ban_note\": \"spam\", \"saved\": false, \"id\": \"mio0ao8\", \"banned_at_utc\": 1742411801, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": true, \"num_comments\": 11, \"can_mod_post\": true, \"created_utc\": 1742410696.0, \"send_replies\": true, \"parent_id\": \"t3_1jf2lqu\", \"score\": 1, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The only multiple clients in aware of is by offering for a month's patreon of duo.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"removal_reason\": null, \"link_id\": \"t3_1jf2lqu\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/mio0ao8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"name\": \"t1_mio0ao8\", \"created\": 1742410696.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe only multiple clients in aware of is by offering for a month\\u0026#39;s patreon of duo.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Host it in your Apple Silicon machine , here is how\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SecretTwo7329\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mhqdzlr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1741953129.0, \"send_replies\": true, \"parent_id\": \"t1_mhkr4sd\", \"score\": 1, \"author_fullname\": \"t2_78hoo1y6\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"What errors shows there?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat errors shows there?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ivgwj8\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/mhqdzlr/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"name\": \"t1_mhqdzlr\", \"created\": 1741953129.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"SecretTwo7329\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Host it in your Apple Silicon machine , here is how\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SecretTwo7329\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mhkr4sd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1741878241.0, \"send_replies\": true, \"parent_id\": \"t3_1ivgwj8\", \"score\": 1, \"author_fullname\": \"t2_3pxc3jt1\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"nice work but didn't work for me...\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enice work but didn\\u0026#39;t work for me...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ivgwj8\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/mhkr4sd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"name\": \"t1_mhkr4sd\", \"created\": 1741878241.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Jaaack_2000\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://app.lizardbyte.dev/2025-01-22-v2025.122.141614/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v2025.122.141614 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mhi9tsg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1741836274.0, \"send_replies\": true, \"parent_id\": \"t3_1i7j3qs\", \"score\": 1, \"author_fullname\": \"t2_18g05ei140\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hey, you leaving me now lizzy? No please dont\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, you leaving me now lizzy? No please dont\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i7j3qs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i7j3qs/sunshine_v2025122141614_released/mhi9tsg/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i7j3qs/sunshine_v2025122141614_released/\", \"name\": \"t1_mhi9tsg\", \"created\": 1741836274.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"camo1888\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://app.lizardbyte.dev/2025-01-18-v2025.118.151840/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v2025.118.151840 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mhi9prm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1741836231.0, \"send_replies\": true, \"parent_id\": \"t3_1i4ma0r\", \"score\": 1, \"author_fullname\": \"t2_18g05ei140\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Lizzy boy\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELizzy boy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i4ma0r\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/mhi9prm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/\", \"name\": \"t1_mhi9prm\", \"created\": 1741836231.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"camo1888\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"sunshine and macOS\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"fraaaaa4\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mhfosho\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1741806921.0, \"send_replies\": true, \"parent_id\": \"t1_mh5ee11\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"When someone implements it\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen someone implements it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6vogw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6vogw/sunshine_and_macos/mhfosho/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"name\": \"t1_mhfosho\", \"created\": 1741806921.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"sunshine and macOS\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"fraaaaa4\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mh5ee11\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1741665922.0, \"send_replies\": true, \"parent_id\": \"t1_mgsbxgp\", \"score\": 1, \"author_fullname\": \"t2_ib35a8es\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"damn :( will it ever be?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edamn :( will it ever be?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6vogw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6vogw/sunshine_and_macos/mh5ee11/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"name\": \"t1_mh5ee11\", \"created\": 1741665922.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"RainnChild\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"GoodBus9133\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mh21jw4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1741628148.0, \"send_replies\": true, \"parent_id\": \"t3_1j6x9w9\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Does the command you're using work from terminal?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes the command you\\u0026#39;re using work from terminal?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6x9w9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/mh21jw4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"name\": \"t1_mh21jw4\", \"created\": 1741628148.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"sunshine and macOS\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"fraaaaa4\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mgsbxgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1741486599.0, \"send_replies\": true, \"parent_id\": \"t3_1j6vogw\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Gamepad input is not supported on macOS.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGamepad input is not supported on macOS.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j6vogw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j6vogw/sunshine_and_macos/mgsbxgp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"name\": \"t1_mgsbxgp\", \"created\": 1741486599.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mghyyn8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1741350107.0, \"send_replies\": true, \"parent_id\": \"t1_men9kgk\", \"score\": 1, \"author_fullname\": \"t2_78hoo1y6\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"here we go:\\n\\n[https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host\\\\_it\\\\_in\\\\_your\\\\_apple\\\\_silicon\\\\_machine\\\\_here\\\\_is\\\\_how/](https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehere we go:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\\\"\\u003Ehttps://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/mghyyn8/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_mghyyn8\", \"created\": 1741350107.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"SecretTwo7329\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://app.lizardbyte.dev/2025-01-22-v2025.122.141614/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v2025.122.141614 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfxken2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1741078772.0, \"send_replies\": true, \"parent_id\": \"t3_1i7j3qs\", \"score\": 1, \"author_fullname\": \"t2_3zw2duhm\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hello, I am using sunshine a lot on windows pcs ( win11 ) to cast on TVs, I tried to update to the last version of sunshine and since I constantly have errors on the client ( error -1 ). I was not able to find the issue, so I went back to the last stable version and I don't have any issue anymore.\\n\\n\\nThank you\\u00a0\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I am using sunshine a lot on windows pcs ( win11 ) to cast on TVs, I tried to update to the last version of sunshine and since I constantly have errors on the client ( error -1 ). I was not able to find the issue, so I went back to the last stable version and I don\\u0026#39;t have any issue anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you\\u00a0\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i7j3qs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i7j3qs/sunshine_v2025122141614_released/mfxken2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i7j3qs/sunshine_v2025122141614_released/\", \"name\": \"t1_mfxken2\", \"created\": 1741078772.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"razikblades\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfwvzi0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741065034.0, \"send_replies\": true, \"parent_id\": \"t1_mfuzf2t\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Gamepad Tester shows \\\"None detected\\\".\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGamepad Tester shows \\u0026quot;None detected\\u0026quot;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfwvzi0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfwvzi0\", \"created\": 1741065034.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfuzf2t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741041077.0, \"send_replies\": true, \"parent_id\": \"t1_mfuv0q3\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I think there's a gamepad tester you can use\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think there\\u0026#39;s a gamepad tester you can use\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfuzf2t/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfuzf2t\", \"created\": 1741041077.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfuv0q3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741039772.0, \"send_replies\": true, \"parent_id\": \"t1_mfuifzf\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hm.\\n\\nSteam is also not recognizing. If it is a virtual input blocking situation, how can I investigate further and remedy it somehow?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHm.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESteam is also not recognizing. If it is a virtual input blocking situation, how can I investigate further and remedy it somehow?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfuv0q3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfuv0q3\", \"created\": 1741039772.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfuifzf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741036151.0, \"send_replies\": true, \"parent_id\": \"t1_mfuhzie\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Nvidia virtual input is whitelisted by many games\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENvidia virtual input is whitelisted by many games\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfuifzf/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfuifzf\", \"created\": 1741036151.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfuhzie\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741036022.0, \"send_replies\": true, \"parent_id\": \"t1_mfu4pdx\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Using GeForce Experience Gamestream for hosting, along Moonlight, the controller is recognized and works in every game I've tested.\\n\\nWhen Sunshine is used for hosting, without changing anything in the Moonlight setup, the same games don't recognize the controller.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing GeForce Experience Gamestream for hosting, along Moonlight, the controller is recognized and works in every game I\\u0026#39;ve tested.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen Sunshine is used for hosting, without changing anything in the Moonlight setup, the same games don\\u0026#39;t recognize the controller.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfuhzie/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfuhzie\", \"created\": 1741036022.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfu4z5b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741032362.0, \"send_replies\": true, \"parent_id\": \"t1_mfu35br\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"So I probably started using it after 01/22/2025 and the build is the lastest from the beginning.\\n\\nWere the logs useful to you in any way?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I probably started using it after 01/22/2025 and the build is the lastest from the beginning.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWere the logs useful to you in any way?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfu4z5b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfu4z5b\", \"created\": 1741032362.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfu4pdx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741032284.0, \"send_replies\": true, \"parent_id\": \"t1_mfu2hvh\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The game might be blocking virtual input. Not 100% sure.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe game might be blocking virtual input. Not 100% sure.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfu4pdx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfu4pdx\", \"created\": 1741032284.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfu35br\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741031844.0, \"send_replies\": true, \"parent_id\": \"t1_mfu2hvh\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Sunshine doesn't update itself, unless you've automated that somehow.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESunshine doesn\\u0026#39;t update itself, unless you\\u0026#39;ve automated that somehow.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfu35br/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfu35br\", \"created\": 1741031844.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfu2hvh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741031657.0, \"send_replies\": true, \"parent_id\": \"t1_mfte1e2\", \"score\": 1, \"author_fullname\": \"t2_10pmfh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I restarted.\\n\\nI looked at the logs but didn't find anything related to controllers. Seems that Sunshine didn't even notice its existence.\\n\\nThe controller is a GameSir X2s in Xbox mode connected via bluetooth to a Samsung S23 running Moonlight. Using that same setup, Gamestream recognizes the controller. And even more strangely, Sunshine used to recognize it too, but now it doesn't.\\n\\nI think in that meantime I've mandatorily installed Windows 2H24 and Sunshine updated itself a few times, but then why would Gamestream still be working?\\n\\nThe logs:\\n\\n[https://pastebin.com/9KLWysjG](https://pastebin.com/9KLWysjG)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI restarted.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI looked at the logs but didn\\u0026#39;t find anything related to controllers. Seems that Sunshine didn\\u0026#39;t even notice its existence.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe controller is a GameSir X2s in Xbox mode connected via bluetooth to a Samsung S23 running Moonlight. Using that same setup, Gamestream recognizes the controller. And even more strangely, Sunshine used to recognize it too, but now it doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI think in that meantime I\\u0026#39;ve mandatorily installed Windows 2H24 and Sunshine updated itself a few times, but then why would Gamestream still be working?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe logs:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://pastebin.com/9KLWysjG\\\"\\u003Ehttps://pastebin.com/9KLWysjG\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfu2hvh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfu2hvh\", \"created\": 1741031657.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JulioPSGuarize\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"JulioPSGuarize\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mfte1e2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 12, \"can_mod_post\": true, \"created_utc\": 1741024694.0, \"send_replies\": true, \"parent_id\": \"t3_1j27efb\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Typically this is usually a missing or corrupt vigembus installation. Since you already tried reinstalling, maybe there are hints in the logs about the issue.\\n\\nAlso did you restart Sunshine after reinstalling vigembus?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETypically this is usually a missing or corrupt vigembus installation. Since you already tried reinstalling, maybe there are hints in the logs about the issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso did you restart Sunshine after reinstalling vigembus?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1j27efb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/mfte1e2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"name\": \"t1_mfte1e2\", \"created\": 1741024694.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"men9kgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1740455965.0, \"send_replies\": true, \"parent_id\": \"t1_me5ck10\", \"score\": 1, \"author_fullname\": \"t2_18iw0zsl\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Please do - it works on my M1 max but not the m4 I have.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPlease do - it works on my M1 max but not the m4 I have.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/men9kgk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_men9kgk\", \"created\": 1740455965.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ElonsAlcantaraJacket\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Host it in your Apple Silicon machine , here is how\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SecretTwo7329\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"me72wi4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1740245374.0, \"send_replies\": true, \"parent_id\": \"t1_me5peul\", \"score\": 1, \"author_fullname\": \"t2_78hoo1y6\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"and after another hours , just solve the app icon did not showing on the moonlight of my ipad , still need to git clone the repo , the follow my above instructrctions, please sudo cmake \\u2014install , then start the sunshine later \\u2026\\u2026\\u2026.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eand after another hours , just solve the app icon did not showing on the moonlight of my ipad , still need to git clone the repo , the follow my above instructrctions, please sudo cmake \\u2014install , then start the sunshine later \\u2026\\u2026\\u2026.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ivgwj8\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/me72wi4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"name\": \"t1_me72wi4\", \"created\": 1740245374.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"SecretTwo7329\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Host it in your Apple Silicon machine , here is how\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SecretTwo7329\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"me5peul\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1740229729.0, \"send_replies\": true, \"parent_id\": \"t3_1ivgwj8\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"nholman-json should be downloaded automatically during the cmake configuration step.\\n\\nDoxygen has a bug in v1.13 they have fixed for the next release but it's not yet available.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enholman-json should be downloaded automatically during the cmake configuration step.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoxygen has a bug in v1.13 they have fixed for the next release but it\\u0026#39;s not yet available.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ivgwj8\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/me5peul/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"name\": \"t1_me5peul\", \"created\": 1740229729.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"me5ck10\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1740223757.0, \"send_replies\": true, \"parent_id\": \"t3_1icqylj\", \"score\": 1, \"author_fullname\": \"t2_78hoo1y6\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"hi same error as you did , but you may just forget the building ,with some customized configuration during make process, the document is the main issue, so you may just ignore the document part and just directly compile the program , then it will work, I just did it let me make some instructions later, I am using M4 Mac, so all the apple silicon shall works .\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi same error as you did , but you may just forget the building ,with some customized configuration during make process, the document is the main issue, so you may just ignore the document part and just directly compile the program , then it will work, I just did it let me make some instructions later, I am using M4 Mac, so all the apple silicon shall works .\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/me5ck10/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_me5ck10\", \"created\": 1740223757.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"SecretTwo7329\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Retroarcher update?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Appropriate-Bank6316\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdrzo2u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1740044805.0, \"send_replies\": true, \"parent_id\": \"t1_mdqduxa\", \"score\": 2, \"author_fullname\": \"t2_byle8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"That sucks about the plug-ins, a game streaming function would be a great step forward in video game preservation, to be able to share archived gaming content similarly to plex. I really appreciate the update, I hope you get to see your new project come to fruition!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat sucks about the plug-ins, a game streaming function would be a great step forward in video game preservation, to be able to share archived gaming content similarly to plex. I really appreciate the update, I hope you get to see your new project come to fruition!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179a2t6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/mdrzo2u/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"name\": \"t1_mdrzo2u\", \"created\": 1740044805.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Derwinx\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Retroarcher update?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Appropriate-Bank6316\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdqduxa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1740017815.0, \"send_replies\": true, \"parent_id\": \"t1_mdlag7x\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Unfortunately, since this post was made Plex has officially killed off plugins, so RetroArcher work will no longer continue. It was kind of a hack anyway to get it working with Plex.\\n\\nBut with that said, I am now actively working on a Plex/Jellyfin alternative. I'm in the extremely early stages and can't make any promises or timing estimates. The primary focus will be the standard media supported by Plex/Jellyfin (Movies, Shows, Music), but I also have a goal to have built in and native game streaming (along with other features Plex has dropped or ignored for the last 15 years). Again, no guarantees but this is my dream project so hopefully it comes to light.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately, since this post was made Plex has officially killed off plugins, so RetroArcher work will no longer continue. It was kind of a hack anyway to get it working with Plex.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut with that said, I am now actively working on a Plex/Jellyfin alternative. I\\u0026#39;m in the extremely early stages and can\\u0026#39;t make any promises or timing estimates. The primary focus will be the standard media supported by Plex/Jellyfin (Movies, Shows, Music), but I also have a goal to have built in and native game streaming (along with other features Plex has dropped or ignored for the last 15 years). Again, no guarantees but this is my dream project so hopefully it comes to light.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179a2t6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/mdqduxa/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"name\": \"t1_mdqduxa\", \"created\": 1740017815.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdq1bia\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1740013603.0, \"send_replies\": true, \"parent_id\": \"t1_mdq13am\", \"score\": 1, \"author_fullname\": \"t2_6k1lr\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Could you DM me it maybe? Appreciate any help!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould you DM me it maybe? Appreciate any help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/mdq1bia/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_mdq1bia\", \"created\": 1740013603.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Ltsmba\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdq13am\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1740013528.0, \"send_replies\": true, \"parent_id\": \"t1_mdpzuxw\", \"score\": 1, \"author_fullname\": \"t2_71uwuxdy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I've just been using ... a fork that apparently I'm not allowed to mention, per the bot that deleted my prior reply, but that for the moment is serving my needs better. But I was curious about this implementation of the similar feature as well.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve just been using ... a fork that apparently I\\u0026#39;m not allowed to mention, per the bot that deleted my prior reply, but that for the moment is serving my needs better. But I was curious about this implementation of the similar feature as well.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/mdq13am/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_mdq13am\", \"created\": 1740013528.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Accomplished-Lack721\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": \"AutoModerator\", \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"ban_note\": \"remove not spam\", \"saved\": false, \"id\": \"mdq0v7q\", \"banned_at_utc\": 1740013453, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1740013453.0, \"send_replies\": true, \"parent_id\": \"t1_mdpzuxw\", \"score\": 1, \"author_fullname\": \"t2_71uwuxdy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I've just been using Apollo. I was curious about this implementation of a similar feature, but for now, Apollo is serving my needs better.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"collapsed_reason\": null, \"removal_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/mdq0v7q/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_mdq0v7q\", \"created\": 1740013453.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Accomplished-Lack721\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve just been using Apollo. I was curious about this implementation of a similar feature, but for now, Apollo is serving my needs better.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdpzuxw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1740013122.0, \"send_replies\": true, \"parent_id\": \"t3_1i5u7ul\", \"score\": 1, \"author_fullname\": \"t2_6k1lr\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Were you ever able to get this part of your question to work?\\n\\n\\\\* If you're using MTT's VDD and you set Sunshine to stream the virtual display, can it also automatically switch that display to be primary, so that games and other applications open there? Can it disable your physical displays while streaming? Does it return to your previous setup -- typically with a physical display as primary -- once the stream is done?\\n\\nThis is the part that seems to be a problem with this driver. \\nWhen I remote in using moonlight, and later come back and turn on my display physically connected to my PC, it seems like I have to screw around with it to get things to go back to normal.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWere you ever able to get this part of your question to work?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* If you\\u0026#39;re using MTT\\u0026#39;s VDD and you set Sunshine to stream the virtual display, can it also automatically switch that display to be primary, so that games and other applications open there? Can it disable your physical displays while streaming? Does it return to your previous setup -- typically with a physical display as primary -- once the stream is done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is the part that seems to be a problem with this driver.\\u003Cbr/\\u003E\\nWhen I remote in using moonlight, and later come back and turn on my display physically connected to my PC, it seems like I have to screw around with it to get things to go back to normal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/mdpzuxw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_mdpzuxw\", \"created\": 1740013122.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Ltsmba\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Retroarcher update?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Appropriate-Bank6316\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mdlag7x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1739959873.0, \"send_replies\": true, \"parent_id\": \"t1_k57kefa\", \"score\": 2, \"author_fullname\": \"t2_byle8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Sorry to necro, but I just wanted to share appreciation for this thoughtful and detailed response, and wish you continued fortune with this project!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry to necro, but I just wanted to share appreciation for this thoughtful and detailed response, and wish you continued fortune with this project!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179a2t6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/mdlag7x/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"name\": \"t1_mdlag7x\", \"created\": 1739959873.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Derwinx\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Using sunshine on raspberry pi 5?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"rents17\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mcif304\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1739428668.0, \"send_replies\": true, \"parent_id\": \"t1_m9ccjs9\", \"score\": 1, \"author_fullname\": \"t2_1835k3s7\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Got this pretty much working now. If anyone needs info, i\\u2019ll take some time to share\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGot this pretty much working now. If anyone needs info, i\\u2019ll take some time to share\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i522bs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/mcif304/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"name\": \"t1_mcif304\", \"created\": 1739428668.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Midifreakz\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1iko9jg/desligar_o_monitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Desligar o monitor\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 3, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Ambitious_Dig_5561\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mbo0kti\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1739026814.0, \"send_replies\": true, \"parent_id\": \"t3_1iko9jg\", \"score\": 3, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Posting in English might help.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPosting in English might help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1iko9jg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1iko9jg/desligar_o_monitor/mbo0kti/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1iko9jg/desligar_o_monitor/\", \"name\": \"t1_mbo0kti\", \"created\": 1739026814.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to disable Geforce Experience SHIELD streaming when the tab is gone\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"masovp1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1738613712.0, \"send_replies\": true, \"parent_id\": \"t3_1796xpe\", \"score\": 1, \"author_fullname\": \"t2_cehcp\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"For anyone arriving here in 2025 (or later) where the new Nvidia App has replaced GFE:\\n\\nYou don't need to disable Game Stream as it no longer exists. Simply update GFE to replace it with the Nvidia app, then restart your PC and Sunshine won't complain about it anymore because it's gone! :)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor anyone arriving here in 2025 (or later) where the new Nvidia App has replaced GFE:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou don\\u0026#39;t need to disable Game Stream as it no longer exists. Simply update GFE to replace it with the Nvidia app, then restart your PC and Sunshine won\\u0026#39;t complain about it anymore because it\\u0026#39;s gone! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1796xpe\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/masovp1/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"name\": \"t1_masovp1\", \"created\": 1738613712.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ImSuperSerialGuys\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"r/LizardByte Lounge\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ReenigneArcher\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mashss2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 30, \"can_mod_post\": true, \"created_utc\": 1738611761.0, \"send_replies\": true, \"parent_id\": \"t1_ige9jge\", \"score\": 1, \"author_fullname\": \"t2_e850n\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Ok, but what about using Plex with RetroArch, did that application die?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOk, but what about using Plex with RetroArch, did that application die?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_vuoiqg\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/mashss2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/vuoiqg/rlizardbyte_lounge/\", \"name\": \"t1_mashss2\", \"created\": 1738611761.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kratoz29\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mai8g3c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1738473269.0, \"send_replies\": true, \"parent_id\": \"t1_ma6r94r\", \"score\": 1, \"author_fullname\": \"t2_18iw0zsl\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Yeah at some point more people may get affected.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah at some point more people may get affected.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/mai8g3c/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_mai8g3c\", \"created\": 1738473269.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ElonsAlcantaraJacket\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mai8f3p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1738473257.0, \"send_replies\": true, \"parent_id\": \"t3_1icqylj\", \"score\": 1, \"author_fullname\": \"t2_18iw0zsl\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Tried again today hoping something was updated :(\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETried again today hoping something was updated :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/mai8f3p/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_mai8f3p\", \"created\": 1738473257.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ElonsAlcantaraJacket\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Unable to build sunshine in macOs Sequoia.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"ElonsAlcantaraJacket\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ma6r94r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 7, \"can_mod_post\": true, \"created_utc\": 1738328151.0, \"send_replies\": true, \"parent_id\": \"t3_1icqylj\", \"score\": 1, \"author_fullname\": \"t2_x44aq89ij\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I've got same error on m1 Sequioia(latest).\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve got same error on m1 Sequioia(latest).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1icqylj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/ma6r94r/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"name\": \"t1_ma6r94r\", \"created\": 1738328151.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Drier3921\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://app.lizardbyte.dev/2025-01-18-v2025.118.151840/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v2025.118.151840 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ma63oyo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1738315626.0, \"send_replies\": true, \"parent_id\": \"t3_1i4ma0r\", \"score\": 1, \"author_fullname\": \"t2_bxz8bq9y\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Is there problem cant connect to moonlight for sometime, the site for sunshine isn't showing at all\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there problem cant connect to moonlight for sometime, the site for sunshine isn\\u0026#39;t showing at all\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i4ma0r\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/ma63oyo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/\", \"name\": \"t1_ma63oyo\", \"created\": 1738315626.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"LegIcy1309\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1dixdhw/how_to_start_sunshine_from_remote/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to start sunshine from remote?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"maxawake\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9r4wkx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1738117335.0, \"send_replies\": true, \"parent_id\": \"t1_l97ofqs\", \"score\": 2, \"author_fullname\": \"t2_8xy9qr72\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"you just saved me on a long plane ride. Thanks!!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou just saved me on a long plane ride. Thanks!!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1dixdhw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1dixdhw/how_to_start_sunshine_from_remote/m9r4wkx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1dixdhw/how_to_start_sunshine_from_remote/\", \"name\": \"t1_m9r4wkx\", \"created\": 1738117335.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"rofocalus\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9ogon9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738089040.0, \"send_replies\": true, \"parent_id\": \"t1_m9o95c5\", \"score\": 1, \"author_fullname\": \"t2_dty63\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"After closing and reopening sunlight a few times from task manager, I managed to get the app to stay open and eventually open the local host to pop up but not connect.\\n\\nThe icon in the system tray is still appearing and the sunshine app in task manager keeps closing and reopening. The sunshine service is staying loaded it seems though \\n\\nNot sure about logging if the program keeps crashing cant have it spit out its own logs , I did manage to get a dump from task man if that means anything\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter closing and reopening sunlight a few times from task manager, I managed to get the app to stay open and eventually open the local host to pop up but not connect.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe icon in the system tray is still appearing and the sunshine app in task manager keeps closing and reopening. The sunshine service is staying loaded it seems though \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENot sure about logging if the program keeps crashing cant have it spit out its own logs , I did manage to get a dump from task man if that means anything\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9ogon9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9ogon9\", \"created\": 1738089040.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"R0ars\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9o95c5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738086991.0, \"send_replies\": true, \"parent_id\": \"t3_1ic17wr\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Start by disabling the service and trying to run sunshine manually. Then provide logs.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStart by disabling the service and trying to run sunshine manually. Then provide logs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9o95c5/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9o95c5\", \"created\": 1738086991.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9mwun2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738072710.0, \"send_replies\": true, \"parent_id\": \"t1_m9mv21g\", \"score\": 1, \"author_fullname\": \"t2_4w0v05pgt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Your other comment is a good start ;)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYour other comment is a good start ;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9mwun2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9mwun2\", \"created\": 1738072710.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"pbeucher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9mvsrm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738072345.0, \"send_replies\": true, \"parent_id\": \"t3_1ic17wr\", \"score\": 1, \"author_fullname\": \"t2_dty63\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Just installed the program and it's launched itself, but it only opens as the tray icon, and when I hover over it it, it Closes itself and reopens itself. leaving a phantom icon that disappears when you hover over it leading to this limitless number of icons \\n\\nI'm guessing it's struggling BC I only have a igpu but I wanted to test it anyway\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed the program and it\\u0026#39;s launched itself, but it only opens as the tray icon, and when I hover over it it, it Closes itself and reopens itself. leaving a phantom icon that disappears when you hover over it leading to this limitless number of icons \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m guessing it\\u0026#39;s struggling BC I only have a igpu but I wanted to test it anyway\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9mvsrm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9mvsrm\", \"created\": 1738072345.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"R0ars\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9mv21g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738072082.0, \"send_replies\": true, \"parent_id\": \"t1_m9mrbh4\", \"score\": 1, \"author_fullname\": \"t2_dty63\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Adding a picture didn't let me add text \\ud83e\\udd37\\ud83c\\udffb\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAdding a picture didn\\u0026#39;t let me add text \\ud83e\\udd37\\ud83c\\udffb\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9mv21g/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9mv21g\", \"created\": 1738072082.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"R0ars\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"new to this , having trouble opening the program. . .\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"R0ars\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9mrbh4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1738070725.0, \"send_replies\": true, \"parent_id\": \"t3_1ic17wr\", \"score\": 1, \"author_fullname\": \"t2_4w0v05pgt\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You need to give more context if you want people to give help. What are you trying to achieve ? What steps did you run to arrive at this situation ?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou need to give more context if you want people to give help. What are you trying to achieve ? What steps did you run to arrive at this situation ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ic17wr\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/m9mrbh4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"name\": \"t1_m9mrbh4\", \"created\": 1738070725.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"pbeucher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Using sunshine on raspberry pi 5?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"rents17\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m9ccjs9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1737928926.0, \"send_replies\": true, \"parent_id\": \"t3_1i522bs\", \"score\": 1, \"author_fullname\": \"t2_1835k3s7\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Its stuff with permissions. I am currently trying to set this exact scenario up\\u2014 but streaming to moonlight on iPhone. i\\u2019m at a phase now where it crashes after 2 minutes of streaming. If it works out and is stable i\\u2019ll share my findings.\\n\\nChat GPT is your friend. For the audio to work, check creating a virtual sink and routing the hdmi output to a virtual sink. However this also could be the cause of the crashes i\\u2019m experiencing\\n\\nConcerning the no tv output. You can buy simple cheap dongles to trick the Pi into thinking it\\u2019s connected to a TV\\u00a0\", \"edited\": 1737959700.0, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIts stuff with permissions. I am currently trying to set this exact scenario up\\u2014 but streaming to moonlight on iPhone. i\\u2019m at a phase now where it crashes after 2 minutes of streaming. If it works out and is stable i\\u2019ll share my findings.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EChat GPT is your friend. For the audio to work, check creating a virtual sink and routing the hdmi output to a virtual sink. However this also could be the cause of the crashes i\\u2019m experiencing\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EConcerning the no tv output. You can buy simple cheap dongles to trick the Pi into thinking it\\u2019s connected to a TV\\u00a0\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i522bs\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/m9ccjs9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"name\": \"t1_m9ccjs9\", \"created\": 1737928926.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Midifreakz\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m8e7ypm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1737485350.0, \"send_replies\": true, \"parent_id\": \"t1_m88lj86\", \"score\": 1, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I stream between native and a single vdd with multiple setups. I use a paid for programme from the Microsoft store to manage monitor setups. Display Changer X. The programme saves all current monitor settings as one file. Then running the file applies everything as it was when saved. I then use windows/keyboard shortcuts to run the file I want. The reason is that it allows very specific flexible settings. So if I stream to my laptop ctrl + alt + L and all scaling and calibration settings are exactly how I want. When I want to go back to my TV I press ctrl + alt + t (my desktop is connected to the tv). Similar shortcuts for wide-screen monitor, iPad and phone. As long as I have a Keyboard attached I can switch. If for some reason the programme broke I can always resort to the windows shortcut win + p to switch between internal and external. Not as useful on a keyboardless but it's still just a case of running the file. \\n\\nI don't run any scripts as I don't necessarily want 1:1 settings:client and I don't want scripts running when things aren't right. I want the strength and solid functioning of an RDP setup combined with the performance of a game streaming setup.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI stream between native and a single vdd with multiple setups. I use a paid for programme from the Microsoft store to manage monitor setups. Display Changer X. The programme saves all current monitor settings as one file. Then running the file applies everything as it was when saved. I then use windows/keyboard shortcuts to run the file I want. The reason is that it allows very specific flexible settings. So if I stream to my laptop ctrl + alt + L and all scaling and calibration settings are exactly how I want. When I want to go back to my TV I press ctrl + alt + t (my desktop is connected to the tv). Similar shortcuts for wide-screen monitor, iPad and phone. As long as I have a Keyboard attached I can switch. If for some reason the programme broke I can always resort to the windows shortcut win + p to switch between internal and external. Not as useful on a keyboardless but it\\u0026#39;s still just a case of running the file. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t run any scripts as I don\\u0026#39;t necessarily want 1:1 settings:client and I don\\u0026#39;t want scripts running when things aren\\u0026#39;t right. I want the strength and solid functioning of an RDP setup combined with the performance of a game streaming setup.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/m8e7ypm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_m8e7ypm\", \"created\": 1737485350.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m8ba28d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1737444005.0, \"send_replies\": true, \"parent_id\": \"t1_m88lj86\", \"score\": 1, \"author_fullname\": \"t2_9eudzvik\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I have VDD installed and no other display is connected, VDD + Sunshine works just fine for me \\nI have issues with HDR on iPad but everything else just works (macos, ipad streaming from windows servers)\\n\\n\\\\+ I have upgraded in advance for this dynamic resolution switch and confirms that it works \\n(you just need to have needed resolution in VDD config)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have VDD installed and no other display is connected, VDD + Sunshine works just fine for me\\u003Cbr/\\u003E\\nI have issues with HDR on iPad but everything else just works (macos, ipad streaming from windows servers)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E+ I have upgraded in advance for this dynamic resolution switch and confirms that it works\\u003Cbr/\\u003E\\n(you just need to have needed resolution in VDD config)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/m8ba28d/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_m8ba28d\", \"created\": 1737444005.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"tauronus77\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m88lj86\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1737410052.0, \"send_replies\": true, \"parent_id\": \"t1_m87r2um\", \"score\": 1, \"author_fullname\": \"t2_71uwuxdy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks much. So when you stream with Sunshine, are you streaming your VDD? And if so, how are you handling switching off primary status from any physical display to that and back?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks much. So when you stream with Sunshine, are you streaming your VDD? And if so, how are you handling switching off primary status from any physical display to that and back?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/m88lj86/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_m88lj86\", \"created\": 1737410052.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Accomplished-Lack721\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Accomplished-Lack721\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m87r2um\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 8, \"can_mod_post\": true, \"created_utc\": 1737401868.0, \"send_replies\": true, \"parent_id\": \"t3_1i5u7ul\", \"score\": 1, \"author_fullname\": \"t2_844sh5pr\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I only use MTT VDD to provide resolutions and refresh rates so most of that I cannot answer. For resolutions. The VDD folder has a file called vdd\\\\_settings.xml . If you open it with notepad you can change/add/remove any of the lines near the top that say \\n\\n\\t\\t\\u003Cg\\\\_refresh\\\\_rate\\u003E60\\u003C/g\\\\_refresh\\\\_rate\\u003E\\n\\nso that you only have the refresh rates you want. The example above is 60hz. You can to the same with the blocks that look like this...\\n\\n\\u003Cresolution\\u003E\\n\\n\\u003Cwidth\\u003E2560\\u003C/width\\u003E\\n\\n\\u003Cheight\\u003E1600\\u003C/height\\u003E\\n\\n\\u003Crefresh\\\\_rate\\u003E30\\u003C/refresh\\\\_rate\\u003E\\n\\n\\u003C/resolution\\u003E\\n\\n \\nto setup only the resolutions you require. The example above is 2560x1600. You can but don't need to worry about the refresh rate in this bit. Then restart the computer. If you are worried about breaking it you can create a copy of the file before editing it. You can optionally download notepad++ to see it all in pretty colour formatting.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI only use MTT VDD to provide resolutions and refresh rates so most of that I cannot answer. For resolutions. The VDD folder has a file called vdd_settings.xml . If you open it with notepad you can change/add/remove any of the lines near the top that say \\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E \\u0026lt;g\\\\_refresh\\\\_rate\\u0026gt;60\\u0026lt;/g\\\\_refresh\\\\_rate\\u0026gt;\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eso that you only have the refresh rates you want. The example above is 60hz. You can to the same with the blocks that look like this...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;resolution\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;width\\u0026gt;2560\\u0026lt;/width\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;height\\u0026gt;1600\\u0026lt;/height\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;refresh\\\\_rate\\u0026gt;30\\u0026lt;/refresh\\\\_rate\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026lt;/resolution\\u0026gt;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eto setup only the resolutions you require. The example above is 2560x1600. You can but don\\u0026#39;t need to worry about the refresh rate in this bit. Then restart the computer. If you are worried about breaking it you can create a copy of the file before editing it. You can optionally download notepad++ to see it all in pretty colour formatting.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i5u7ul\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/m87r2um/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"name\": \"t1_m87r2um\", \"created\": 1737401868.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Comprehensive_Star72\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://app.lizardbyte.dev/2025-01-18-v2025.118.151840/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v2025.118.151840 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"m84x922\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1737365540.0, \"send_replies\": true, \"parent_id\": \"t3_1i4ma0r\", \"score\": 1, \"author_fullname\": \"t2_12bzch\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"What impresses me the most on this release is the number of new contributors. That's great news for the future of the project.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat impresses me the most on this release is the number of new contributors. That\\u0026#39;s great news for the future of the project.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1i4ma0r\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/m84x922/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/\", \"name\": \"t1_m84x922\", \"created\": 1737365540.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"ConflictOfEvidence\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}], \"before\": null}}" }, "headers": { "Accept-Ranges": [ "bytes" ], - "Cache-Control": [ - "private, max-age=3600" - ], "Connection": [ "keep-alive" ], "Content-Length": [ - "32625" + "271492" ], "Date": [ - "Wed, 01 May 2024 14:21:57 GMT" + "Tue, 20 May 2025 23:55:49 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -60,6 +57,9 @@ "Server": [ "snooserv" ], + "Set-Cookie": [ + "session_tracker=adhdnlqbpoljraclbh.0.1747785349448.Z0FBQUFBQm9MUmFGc1RQTjVsOGNtcFVucHRhV3drdjNTZlFlVEI3eGkzNU1JT1R4T1hRT1dMTHlGV1FwOWpDd3N0Z3pCbWdjLU4yVGVKRFpqNC1SWGpFUGZmeHhtdmE2T2x4UXdkd2VtZUpWRFhQMW9nTmZHbHpjX2xlbFNCNWV5RzBXZldnN0ptRnM; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:49 GMT; secure; SameSite=None; Secure" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" ], @@ -78,120 +78,37 @@ "X-XSS-Protection": [ "1; mode=block" ], - "content-type": [ - "text/html; charset=UTF-8" - ], - "www-authenticate": [ - "Bearer realm=\"reddit\", error=\"invalid_token\"" - ], - "x-ua-compatible": [ - "IE=edge" - ] - }, - "status": { - "code": 401, - "message": "Unauthorized" - }, - "url": "https://oauth.reddit.com/r/LizardByte/comments/?limit=100&raw_json=1" - } - }, - { - "recorded_at": "2024-05-01T14:21:58", - "request": { - "body": { - "encoding": "utf-8", - "string": "grant_type=password&password=&username=" - }, - "headers": { - "Accept": [ - "*/*" - ], - "Accept-Encoding": [ - "identity" - ], - "Authorization": [ - "Basic " - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573053011.Z0FBQUFBQm1Nazc5QnZtNzNFM0x3QmZiYWJOUmw1cTgwRGJRNXZaZEh6dDRfVkY3WVRKMEwzLVBTbFNNSndvV0ExREtpSkI3SDVZVVZMSkJBWkwyaUZfazFhbGRYRWU3SzF6U1c2ZTNTSTd4TTJOeDJoenpyUkdLZ01va1oxOTY4b0RrbkRDU0RSU0o; csv=2" - ], - "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" - ] - }, - "method": "POST", - "uri": "https://www.reddit.com/api/v1/access_token" - }, - "response": { - "body": { - "encoding": "UTF-8", - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 86400, \"scope\": \"*\"}" - }, - "headers": { - "Accept-Ranges": [ - "bytes" - ], - "Cache-Control": [ - "private, max-age=3600" - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "845" - ], - "Date": [ - "Wed, 01 May 2024 14:21:58 GMT" - ], - "NEL": [ - "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" - ], - "Report-To": [ - "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" - ], - "Server": [ - "snooserv" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubdomains" + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-store" ], - "Vary": [ - "accept-encoding, Accept-Encoding" + "content-type": [ + "application/json; charset=UTF-8" ], - "Via": [ - "1.1 varnish" + "expires": [ + "-1" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ratelimit-remaining": [ + "932.0" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "x-ratelimit-reset": [ + "250" ], - "X-XSS-Protection": [ - "1; mode=block" + "x-ratelimit-used": [ + "68" ], - "content-type": [ - "application/json; charset=UTF-8" + "x-ua-compatible": [ + "IE=edge" ] }, "status": { "code": 200, "message": "OK" }, - "url": "https://www.reddit.com/api/v1/access_token" + "url": "https://oauth.reddit.com/r/LizardByte/comments/?limit=100&raw_json=1" } }, { - "recorded_at": "2024-05-01T14:21:58", + "recorded_at": "2025-05-20T23:55:50", "request": { "body": { "encoding": "utf-8", @@ -205,25 +122,25 @@ "identity" ], "Authorization": [ - "bearer " + "bearer " ], "Connection": [ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573053011.Z0FBQUFBQm1Nazc5QnZtNzNFM0x3QmZiYWJOUmw1cTgwRGJRNXZaZEh6dDRfVkY3WVRKMEwzLVBTbFNNSndvV0ExREtpSkI3SDVZVVZMSkJBWkwyaUZfazFhbGRYRWU3SzF6U1c2ZTNTSTd4TTJOeDJoenpyUkdLZ01va1oxOTY4b0RrbkRDU0RSU0o; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785349448.Z0FBQUFBQm9MUmFGc1RQTjVsOGNtcFVucHRhV3drdjNTZlFlVEI3eGkzNU1JT1R4T1hRT1dMTHlGV1FwOWpDd3N0Z3pCbWdjLU4yVGVKRFpqNC1SWGpFUGZmeHhtdmE2T2x4UXdkd2VtZUpWRFhQMW9nTmZHbHpjX2xlbFNCNWV5RzBXZldnN0ptRnM; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/r/LizardByte/comments/?limit=100&raw_json=1" + "uri": "https://oauth.reddit.com/user/ConflictOfEvidence/about/?raw_json=1" }, "response": { "body": { "encoding": "UTF-8", - "string": "{\"kind\": \"Listing\", \"data\": {\"after\": \"t1_k57kefa\", \"dist\": 100, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Welcome to LizardByte!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"tata_contreras\", \"distinguished\": null, \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l20s3cv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1714522560.0, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#ffd635\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l20s3cv/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"name\": \"t1_l20s3cv\", \"created\": 1714522560.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Bot\", \"removed\": false, \"spam\": false, \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"rte_mode\": \"markdown\", \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Welcome to LizardByte!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"tata_contreras\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l20s21b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1714522546.0, \"send_replies\": true, \"parent_id\": \"t3_w03cku\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"/sunshine vban\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E/sunshine vban\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_w03cku\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l20s21b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/\", \"name\": \"t1_l20s21b\", \"created\": 1714522546.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to customize application order?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Only_Hard\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l14mslw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1714004374.0, \"send_replies\": true, \"parent_id\": \"t3_1bj8equ\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It's not currently possible.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s not currently possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bj8equ\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/l14mslw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"name\": \"t1_l14mslw\", \"created\": 1714004374.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine install: Errors!\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Gozzylord\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kvlq3sp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1710867668.0, \"send_replies\": true, \"parent_id\": \"t3_18g4s64\", \"score\": 1, \"author_fullname\": \"t2_hffmh2mo\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You're a sexual predator\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re a sexual predator\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18g4s64\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18g4s64/sunshine_install_errors/kvlq3sp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"name\": \"t1_kvlq3sp\", \"created\": 1710867668.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Remmist-204\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"VirusTotal W64.AIDetectMalware Trojan\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SandyCheeks888\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kv4jtts\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1710588924.0, \"send_replies\": true, \"parent_id\": \"t3_1bfwgdt\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"False positive\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFalse positive\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bfwgdt\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/kv4jtts/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"name\": \"t1_kv4jtts\", \"created\": 1710588924.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to reduce input lag/delay when connecting controller directly to the client?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"mosfetparadox\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuq9xwz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1710360926.0, \"send_replies\": true, \"parent_id\": \"t1_kuok0ck\", \"score\": 1, \"author_fullname\": \"t2_i7l5smbm2\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Did you try a DS4? I have no noticeable latency issues with DS4 over bluetooth\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid you try a DS4? I have no noticeable latency issues with DS4 over bluetooth\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b6xkbp\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/kuq9xwz/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"name\": \"t1_kuq9xwz\", \"created\": 1710360926.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"mosfetparadox\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to reduce input lag/delay when connecting controller directly to the client?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"mosfetparadox\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuok0ck\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1710340470.0, \"send_replies\": true, \"parent_id\": \"t3_1b6xkbp\", \"score\": 1, \"author_fullname\": \"t2_6pgghuhw\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"This means that the problem is probably in between your iPad and controllers and it is not related to Sunshine streaming. Probably Moonlight but take my opinion with a pinch of salt as I am not a CS expert but used Sunshine for a long time now on my iPhone and have the same issues with any kind of bluetooth controller over iOS, and with any software. Maybe an IOS update will address this problem. (try using linux/windows laptop if you can, BT works flawlessly there and those systems are way more verbose and configurable imo)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis means that the problem is probably in between your iPad and controllers and it is not related to Sunshine streaming. Probably Moonlight but take my opinion with a pinch of salt as I am not a CS expert but used Sunshine for a long time now on my iPhone and have the same issues with any kind of bluetooth controller over iOS, and with any software. Maybe an IOS update will address this problem. (try using linux/windows laptop if you can, BT works flawlessly there and those systems are way more verbose and configurable imo)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b6xkbp\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/kuok0ck/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"name\": \"t1_kuok0ck\", \"created\": 1710340470.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"DemonChaserr\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kun1ktt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1710309712.0, \"send_replies\": true, \"parent_id\": \"t3_1b31w2a\", \"score\": 1, \"author_fullname\": \"t2_w6wkp\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Have you seen https://github.com/Steam-Headless/docker-steam-headless\\n\\nI use it on a headless cloud compute gpu instance and it works great.\\nAlthough it specifies steam, you get a X11 with Xfce4.\\nAll wrapped up in a container.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHave you seen \\u003Ca href=\\\"https://github.com/Steam-Headless/docker-steam-headless\\\"\\u003Ehttps://github.com/Steam-Headless/docker-steam-headless\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use it on a headless cloud compute gpu instance and it works great.\\nAlthough it specifies steam, you get a X11 with Xfce4.\\nAll wrapped up in a container.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kun1ktt/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kun1ktt\", \"created\": 1710309712.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Alex_Vy\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Moonlight on MacOS - Can't submit mouse input ( click or right click )\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"AlphabeticalMistery\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuj3xr6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1710256160.0, \"send_replies\": true, \"parent_id\": \"t3_18tumrw\", \"score\": 1, \"author_fullname\": \"t2_fg1ppsfb\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"how did you set up macOS? Is there something similar to the NVIDIA solution to host?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehow did you set up macOS? Is there something similar to the NVIDIA solution to host?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18tumrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/kuj3xr6/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"name\": \"t1_kuj3xr6\", \"created\": 1710256160.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Amazing-Passion987\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuiw4mq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710253368.0, \"send_replies\": true, \"parent_id\": \"t1_kuiugsl\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Yes\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuiw4mq/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuiw4mq\", \"created\": 1710253368.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuiugsl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710252753.0, \"send_replies\": true, \"parent_id\": \"t1_kuiu09s\", \"score\": 1, \"author_fullname\": \"t2_z7vt67c\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I'm on 0.22 now and that appears to have fixed things. For future reference do I need to keep it updated manually?\\n\\nThank you for your help.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m on 0.22 now and that appears to have fixed things. For future reference do I need to keep it updated manually?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for your help.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuiugsl/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuiugsl\", \"created\": 1710252753.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"glass_needles\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuiu09s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710252579.0, \"send_replies\": true, \"parent_id\": \"t1_kuits8k\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The first step would be updating to v0.22.0, as we don't support old versions.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe first step would be updating to v0.22.0, as we don\\u0026#39;t support old versions.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuiu09s/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuiu09s\", \"created\": 1710252579.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuits8k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710252495.0, \"send_replies\": true, \"parent_id\": \"t1_kuisgh3\", \"score\": 1, \"author_fullname\": \"t2_z7vt67c\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Sorry about not including that! As I couldn't get access to the web ui it took me a second to work out how to get it. Opening up the foreground mode I managed to get a screenshot of everything that appears in the command prompt before it closes itself. Version number is 0.19.1.d7longhexidecimal bit.\\n\\nI uploaded it to imgur and you can see it [here](https://imgur.com/a/L969Cgc).\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESorry about not including that! As I couldn\\u0026#39;t get access to the web ui it took me a second to work out how to get it. Opening up the foreground mode I managed to get a screenshot of everything that appears in the command prompt before it closes itself. Version number is 0.19.1.d7longhexidecimal bit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI uploaded it to imgur and you can see it \\u003Ca href=\\\"https://imgur.com/a/L969Cgc\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuits8k/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuits8k\", \"created\": 1710252495.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"glass_needles\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuisgh3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710251986.0, \"send_replies\": true, \"parent_id\": \"t1_kuijdfn\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"What version?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat version?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuisgh3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuisgh3\", \"created\": 1710251986.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Anyone know how to stop this from happening?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"glass_needles\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kuijdfn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1710248284.0, \"send_replies\": true, \"parent_id\": \"t3_1bcwlr3\", \"score\": 1, \"author_fullname\": \"t2_z7vt67c\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Running Windows 11, done the usual troubleshooting steps of restarting the PC and stopping and restarting the service which don't fix the issue. \\n\\nClicking on the icons does nothing and I can't access the Web UI on port 47990\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERunning Windows 11, done the usual troubleshooting steps of restarting the PC and stopping and restarting the service which don\\u0026#39;t fix the issue. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EClicking on the icons does nothing and I can\\u0026#39;t access the Web UI on port 47990\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1bcwlr3\", \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/kuijdfn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"name\": \"t1_kuijdfn\", \"created\": 1710248284.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"glass_needles\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ktw4i1m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709886651.0, \"send_replies\": true, \"parent_id\": \"t1_ktuib5o\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"What I did was running the following commands when I want to start sunshine:\\n\\n* `sudo systemctl start xorg`\\n* `export DISPLAY=:0`\\n* `gnome-session \\u0026 sunshine`\\n\\nAssuming you\\u2019ve followed the guide. \\n\\nWhen I\\u2019m done I interrupt sunshine and stop xorg. \\n\\nDon\\u2019t forget to forward some ports.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat I did was running the following commands when I want to start sunshine:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Esudo systemctl start xorg\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Eexport DISPLAY=:0\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Ccode\\u003Egnome-session \\u0026amp; sunshine\\u003C/code\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAssuming you\\u2019ve followed the guide. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I\\u2019m done I interrupt sunshine and stop xorg. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDon\\u2019t forget to forward some ports.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ktw4i1m/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ktw4i1m\", \"created\": 1709886651.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ktuib5o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709858793.0, \"send_replies\": true, \"parent_id\": \"t1_kt5t6ug\", \"score\": 1, \"author_fullname\": \"t2_j5fqh\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"How did you end up getting it working? I'm also getting the black screen and cursor with the xorg.conf config. If I delete the config and use a dummy plug with auto config it works fine.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow did you end up getting it working? I\\u0026#39;m also getting the black screen and cursor with the xorg.conf config. If I delete the config and use a dummy plug with auto config it works fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ktuib5o/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ktuib5o\", \"created\": 1709858793.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"SlickUnderTheGun\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to launch Sunshine on Mac Os?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SpyvsMerc\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ktgcjwp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1709648796.0, \"send_replies\": true, \"parent_id\": \"t3_14jk3x5\", \"score\": 1, \"author_fullname\": \"t2_wx50x\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"How do you update sunshine with macports?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you update sunshine with macports?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_14jk3x5\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/ktgcjwp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"name\": \"t1_ktgcjwp\", \"created\": 1709648796.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"eastcoastninja\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kt5xtfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709483082.0, \"send_replies\": true, \"parent_id\": \"t1_kt5t6ug\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"https://app.lizardbyte.dev/discord\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://app.lizardbyte.dev/discord\\\"\\u003Ehttps://app.lizardbyte.dev/discord\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kt5xtfx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kt5xtfx\", \"created\": 1709483082.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kt5t6ug\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709481413.0, \"send_replies\": true, \"parent_id\": \"t1_kt5bofm\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks! Will do. It\\u2019s the Discord channel that\\u2019s on GitHub right?\\n\\nMeanwhile I got it to work (my brain started working lol) but I still have some issues I\\u2019d like to sort out.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! Will do. It\\u2019s the Discord channel that\\u2019s on GitHub right?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeanwhile I got it to work (my brain started working lol) but I still have some issues I\\u2019d like to sort out.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kt5t6ug/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kt5t6ug\", \"created\": 1709481413.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kt5bofm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709474228.0, \"send_replies\": true, \"parent_id\": \"t1_ksvm04z\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Can you try creating a virtual monitor with `Xvfb`. This will at least allow software encoding.\\n\\nOtherwise you may want to reach out on our discord. The person who wrote the headless guide is quite responsive to questions about it.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECan you try creating a virtual monitor with \\u003Ccode\\u003EXvfb\\u003C/code\\u003E. This will at least allow software encoding.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOtherwise you may want to reach out on our discord. The person who wrote the headless guide is quite responsive to questions about it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kt5bofm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kt5bofm\", \"created\": 1709474228.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksy7rcf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709347883.0, \"send_replies\": true, \"parent_id\": \"t1_ksvm8dn\", \"score\": 1, \"author_fullname\": \"t2_x3hdf\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Oh great, at least you found what you were looking for! \\nIf you are able to see the X cursor, that means X is working! \\ud83d\\udc4d\\ud83c\\udffc\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh great, at least you found what you were looking for! \\nIf you are able to see the X cursor, that means X is working! \\ud83d\\udc4d\\ud83c\\udffc\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ksy7rcf/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ksy7rcf\", \"created\": 1709347883.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kevintyk\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksvm8dn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709313659.0, \"send_replies\": true, \"parent_id\": \"t1_kstxmze\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Turns out the guide ReenigneArcher suggested was it I believe. I was overthinking it and posted before trying... However, I'm getting an all-black screen with an X cursor.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETurns out the guide ReenigneArcher suggested was it I believe. I was overthinking it and posted before trying... However, I\\u0026#39;m getting an all-black screen with an X cursor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ksvm8dn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ksvm8dn\", \"created\": 1709313659.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksvm04z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709313583.0, \"send_replies\": true, \"parent_id\": \"t1_ksplynu\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Could you point me in any direction to try and find information on any errors that might occur?\\n\\nI'm getting a all-black screen with a X cursor and the only step I didn't do was the Sudo Configuration because I have no file on my sudoers.d for my user.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECould you point me in any direction to try and find information on any errors that might occur?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m getting a all-black screen with a X cursor and the only step I didn\\u0026#39;t do was the Sudo Configuration because I have no file on my sudoers.d for my user.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ksvm04z/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ksvm04z\", \"created\": 1709313583.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kstxmze\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709286872.0, \"send_replies\": true, \"parent_id\": \"t1_ksttlnu\", \"score\": 1, \"author_fullname\": \"t2_x3hdf\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I doubt Sunshine can stream anything without X or Wayland. I did a quick search and found this link: https://discussion.fedoraproject.org/t/start-steam-remotely-with-ssh/75505\\n\\nMaybe its something similar to what you wanna achieve?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI doubt Sunshine can stream anything without X or Wayland. I did a quick search and found this link: \\u003Ca href=\\\"https://discussion.fedoraproject.org/t/start-steam-remotely-with-ssh/75505\\\"\\u003Ehttps://discussion.fedoraproject.org/t/start-steam-remotely-with-ssh/75505\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe its something similar to what you wanna achieve?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kstxmze/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kstxmze\", \"created\": 1709286872.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kevintyk\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksttlnu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709283827.0, \"send_replies\": true, \"parent_id\": \"t1_kss8vzn\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Basically I'm looking for the same: streaming games. The thing is I like my server with only CLI.\\n\\nMy question essentially is if I could use sunshine to stream games without installing anything such as Gnome or any other GUI.\\n\\nMeaning: if I login to my server physically I'd like to still see the CLI instead of a login window.\\n\\nI'm sorry for not being able to explain myself very well...\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBasically I\\u0026#39;m looking for the same: streaming games. The thing is I like my server with only CLI.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy question essentially is if I could use sunshine to stream games without installing anything such as Gnome or any other GUI.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMeaning: if I login to my server physically I\\u0026#39;d like to still see the CLI instead of a login window.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m sorry for not being able to explain myself very well...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ksttlnu/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ksttlnu\", \"created\": 1709283827.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kss8vzn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709255037.0, \"send_replies\": true, \"parent_id\": \"t3_1b31w2a\", \"score\": 1, \"author_fullname\": \"t2_x3hdf\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Im using it headless with virtual display. But I have Gnome installed, since I mainly use it to stream games from it. Im not sure whether Sunshine support streaming console only, I highly doubt it supports it. Just wondering what is your use case? If you are only using it for console tasks, why do you need Sunshine? Simple SSH is good enough I believe?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIm using it headless with virtual display. But I have Gnome installed, since I mainly use it to stream games from it. Im not sure whether Sunshine support streaming console only, I highly doubt it supports it. Just wondering what is your use case? If you are only using it for console tasks, why do you need Sunshine? Simple SSH is good enough I believe?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kss8vzn/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kss8vzn\", \"created\": 1709255037.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kevintyk\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/xtp9dk/is_it_safe_to_expose_the_sunshine_stream_to_wan/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Is it safe to expose the Sunshine stream to WAN?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Saterlite\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kspv9zf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1709225825.0, \"send_replies\": true, \"parent_id\": \"t1_iqrgn3t\", \"score\": 1, \"author_fullname\": \"t2_g8gp3\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Video/Audio encryption has been merged into the sunshine nightly branch on 2024-01-20: [https://github.com/LizardByte/Sunshine/pull/2025](https://github.com/LizardByte/Sunshine/pull/2025)\\n\\nCurrently there is no stable version containing the code, and I expect that it will take a while for clients to adopt this.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVideo/Audio encryption has been merged into the sunshine nightly branch on 2024-01-20: \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/pull/2025\\\"\\u003Ehttps://github.com/LizardByte/Sunshine/pull/2025\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECurrently there is no stable version containing the code, and I expect that it will take a while for clients to adopt this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_xtp9dk\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/xtp9dk/is_it_safe_to_expose_the_sunshine_stream_to_wan/kspv9zf/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/xtp9dk/is_it_safe_to_expose_the_sunshine_stream_to_wan/\", \"name\": \"t1_kspv9zf\", \"created\": 1709225825.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"HashWorks\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksplynu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709222735.0, \"send_replies\": true, \"parent_id\": \"t1_kspjizq\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I don't really use Linux, but you definitely need x11/xorg or wayland/kms... If that's what you're asking\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t really use Linux, but you definitely need x11/xorg or wayland/kms... If that\\u0026#39;s what you\\u0026#39;re asking\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/ksplynu/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_ksplynu\", \"created\": 1709222735.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kspjizq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709221916.0, \"send_replies\": true, \"parent_id\": \"t1_kspfbqb\", \"score\": 1, \"author_fullname\": \"t2_b63yn\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I've seen it but I didn't understand if there's a need for a GUI or not. That's why I came here: to check if anyone could elucidate me.\\n\\nI may have it wrong but from reading the guide I had the feeling that by headless they meant no display. Not necessarily meaning that there was no GUI installed on it.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve seen it but I didn\\u0026#39;t understand if there\\u0026#39;s a need for a GUI or not. That\\u0026#39;s why I came here: to check if anyone could elucidate me.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI may have it wrong but from reading the guide I had the feeling that by headless they meant no display. Not necessarily meaning that there was no GUI installed on it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kspjizq/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kspjizq\", \"created\": 1709221916.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"PeterShowFull\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on a no-GUI Server\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 4, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"PeterShowFull\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kspfbqb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"spam\": false, \"num_comments\": 15, \"can_mod_post\": true, \"created_utc\": 1709220469.0, \"send_replies\": true, \"parent_id\": \"t3_1b31w2a\", \"score\": 4, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"There's a guide for using sunshine headless in our docs. [https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless\\\\_ssh.html](https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s a guide for using sunshine headless in our docs. \\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b31w2a\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/kspfbqb/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"name\": \"t1_kspfbqb\", \"created\": 1709220469.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksave54\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708993384.0, \"send_replies\": true, \"parent_id\": \"t1_ksav5ze\", \"score\": 1, \"author_fullname\": \"t2_bdqgu\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"UnRAID has a VM section that makes it easy to spool up VMs for multiple people on one PC.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnRAID has a VM section that makes it easy to spool up VMs for multiple people on one PC.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ksave54/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ksave54\", \"created\": 1708993384.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"KaosC57\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksav5ze\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708993298.0, \"send_replies\": true, \"parent_id\": \"t1_ksaqf9p\", \"score\": 1, \"author_fullname\": \"t2_452qc27\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Don't think UnRAID has anything to do with this - it's a storage solution. But it seems [https://games-on-whales.github.io/gow/index.html](https://games-on-whales.github.io/gow/index.html) can stream per container so I guess each user could start own container on the server. Also [https://github.com/games-on-whales/wolf](https://github.com/games-on-whales/wolf) is working on something similar if I understand correctly. None of the two solutions require a beefy server (also explained in their docs). It's just a SW problem nobody apparently wants to solve in the FOSS space.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t think UnRAID has anything to do with this - it\\u0026#39;s a storage solution. But it seems \\u003Ca href=\\\"https://games-on-whales.github.io/gow/index.html\\\"\\u003Ehttps://games-on-whales.github.io/gow/index.html\\u003C/a\\u003E can stream per container so I guess each user could start own container on the server. Also \\u003Ca href=\\\"https://github.com/games-on-whales/wolf\\\"\\u003Ehttps://github.com/games-on-whales/wolf\\u003C/a\\u003E is working on something similar if I understand correctly. None of the two solutions require a beefy server (also explained in their docs). It\\u0026#39;s just a SW problem nobody apparently wants to solve in the FOSS space.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ksav5ze/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ksav5ze\", \"created\": 1708993298.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"jmakov\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksaqf9p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708991515.0, \"send_replies\": true, \"parent_id\": \"t1_ksao1w3\", \"score\": 1, \"author_fullname\": \"t2_bdqgu\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"For many user options you\\u2019re going to need a solution like UnRAID to spool up multiple VMs. Then you\\u2019ll need enough CPU cores and GPU resources too.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor many user options you\\u2019re going to need a solution like UnRAID to spool up multiple VMs. Then you\\u2019ll need enough CPU cores and GPU resources too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ksaqf9p/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ksaqf9p\", \"created\": 1708991515.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"KaosC57\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksao1w3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708990633.0, \"send_replies\": true, \"parent_id\": \"t1_ksai0sl\", \"score\": 1, \"author_fullname\": \"t2_452qc27\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks for the feedback. That's a blocker then.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for the feedback. That\\u0026#39;s a blocker then.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ksao1w3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ksao1w3\", \"created\": 1708990633.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"jmakov\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ksai0sl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708988435.0, \"send_replies\": true, \"parent_id\": \"t1_ks9z4f3\", \"score\": 1, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Many users at the same time no.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMany users at the same time no.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ksai0sl/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ksai0sl\", \"created\": 1708988435.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine as remote desktop for many users\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"jmakov\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ks9z4f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1708982098.0, \"send_replies\": true, \"parent_id\": \"t3_1b0hp04\", \"score\": 1, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You can setup a virtual display using Mike the tech virtual display driver. Connect moonlight to sunshine and use it as a regular pc.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can setup a virtual display using Mike the tech virtual display driver. Connect moonlight to sunshine and use it as a regular pc.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1b0hp04\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/ks9z4f3/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"name\": \"t1_ks9z4f3\", \"created\": 1708982098.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Need help WOL over the internet (WAN)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"eastcoastninja\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kqyji4e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1708238934.0, \"send_replies\": true, \"parent_id\": \"t3_18ihw99\", \"score\": 1, \"author_fullname\": \"t2_n1gqq5qk\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I use tailscale for this.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use tailscale for this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18ihw99\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/kqyji4e/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"name\": \"t1_kqyji4e\", \"created\": 1708238934.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"lashram32\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine Intel N100 - No Quicksync Available\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Cheapskate2020\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kqijbze\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1707991472.0, \"send_replies\": true, \"parent_id\": \"t1_kqhd34b\", \"score\": 1, \"author_fullname\": \"t2_apa87avj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thank you for the reply. I've actually changed my N100 setup and realised that I don't actually need a desktop environment, so I am now using Openmediavault and Portainer/Docker, which is working great so far! \\n\\nSunshine works fine from my AMD/Nvidia PC using Quicksync. I don't know why I could never get it to work properly on N100. I think Ubuntu runs on 23.10 whereas Zorin and some of the other distros I tried were 22.04 or something. I can't remember which, but definitely older, so maybe that was my issue.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for the reply. I\\u0026#39;ve actually changed my N100 setup and realised that I don\\u0026#39;t actually need a desktop environment, so I am now using Openmediavault and Portainer/Docker, which is working great so far! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESunshine works fine from my AMD/Nvidia PC using Quicksync. I don\\u0026#39;t know why I could never get it to work properly on N100. I think Ubuntu runs on 23.10 whereas Zorin and some of the other distros I tried were 22.04 or something. I can\\u0026#39;t remember which, but definitely older, so maybe that was my issue.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ak59mh\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/kqijbze/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"name\": \"t1_kqijbze\", \"created\": 1707991472.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Cheapskate2020\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine Intel N100 - No Quicksync Available\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Cheapskate2020\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kqhd34b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1707965916.0, \"send_replies\": true, \"parent_id\": \"t1_kp5sgge\", \"score\": 1, \"author_fullname\": \"t2_2gphd1f\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It's working great on my N100 using ubuntu server 23.04 and an headless script to start it.\\n\\nYou may need to add root privilege to sunshine, for capturing kms. explanation here: [https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/advanced\\\\_usage.html#capture](https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/advanced_usage.html#capture)\\n\\nYou could check if hardware acceleration is working, using intel\\\\_gpu\\\\_top. If you have stats in video and your power usage is around 3w, you're good.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s working great on my N100 using ubuntu server 23.04 and an headless script to start it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou may need to add root privilege to sunshine, for capturing kms. explanation here: \\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/advanced_usage.html#capture\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/advanced_usage.html#capture\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou could check if hardware acceleration is working, using intel_gpu_top. If you have stats in video and your power usage is around 3w, you\\u0026#39;re good.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ak59mh\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/kqhd34b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"name\": \"t1_kqhd34b\", \"created\": 1707965916.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kvernNC\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"QRes Download 64 Bit\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"luciel23\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kptp09r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1707594978.0, \"send_replies\": true, \"parent_id\": \"t1_kawk5mm\", \"score\": 1, \"author_fullname\": \"t2_ru9kv\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"for future folks reading, the majorgeeks download has a compiled exe that works with 64 bit systems. I was able to get it all set up and working per the Sunshine docs using that.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efor future folks reading, the majorgeeks download has a compiled exe that works with 64 bit systems. I was able to get it all set up and working per the Sunshine docs using that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1834ou9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1834ou9/qres_download_64_bit/kptp09r/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"name\": \"t1_kptp09r\", \"created\": 1707594978.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"stexus_\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine Intel N100 - No Quicksync Available\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Cheapskate2020\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kp8gibg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1707253821.0, \"send_replies\": true, \"parent_id\": \"t1_kp8eu7y\", \"score\": 1, \"author_fullname\": \"t2_apa87avj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Oh right, thanks. I didn't know Quicksync didn't show in Linux. Maybe something else is going on then. VAAPI does show and it points to the right location, but the remote access is still unusable and my CPU spikes right up, as if it's working only in software mode. Strange.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh right, thanks. I didn\\u0026#39;t know Quicksync didn\\u0026#39;t show in Linux. Maybe something else is going on then. VAAPI does show and it points to the right location, but the remote access is still unusable and my CPU spikes right up, as if it\\u0026#39;s working only in software mode. Strange.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ak59mh\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/kp8gibg/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"name\": \"t1_kp8gibg\", \"created\": 1707253821.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Cheapskate2020\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine Intel N100 - No Quicksync Available\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Cheapskate2020\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kp8eu7y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1707253269.0, \"send_replies\": true, \"parent_id\": \"t3_1ak59mh\", \"score\": 1, \"author_fullname\": \"t2_y3ifz\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You need to use Vaapi as I think Quicksync is windows-only. I had a N100 too and it worked wonder on Debian.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou need to use Vaapi as I think Quicksync is windows-only. I had a N100 too and it worked wonder on Debian.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ak59mh\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/kp8eu7y/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"name\": \"t1_kp8eu7y\", \"created\": 1707253269.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"-Blazy\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine Intel N100 - No Quicksync Available\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Cheapskate2020\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kp5sgge\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1707215664.0, \"send_replies\": true, \"parent_id\": \"t3_1ak59mh\", \"score\": 1, \"author_fullname\": \"t2_apa87avj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Just to add further, here is my sunshine.config file\\n\\n`adapter_name = /dev/dri/renderD128`\\n\\n`sw_tune = fastdecode`\\n\\nI don't understand why Quicksync is missing from the Configuration. Also, it is only working in software mode and is more or less unusable. Appreciate any ideas. Thanks.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust to add further, here is my sunshine.config file\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Eadapter_name = /dev/dri/renderD128\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Esw_tune = fastdecode\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI don\\u0026#39;t understand why Quicksync is missing from the Configuration. Also, it is only working in software mode and is more or less unusable. Appreciate any ideas. Thanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1ak59mh\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/kp5sgge/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"name\": \"t1_kp5sgge\", \"created\": 1707215664.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Cheapskate2020\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"gamestream enabled?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"myraisbeautiful\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kop7pd4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1706937456.0, \"send_replies\": true, \"parent_id\": \"t3_19f3nqb\", \"score\": 1, \"author_fullname\": \"t2_q6pcxsbxo\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Open geforce experience, click settings, go to shield, toggle off gamestream\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOpen geforce experience, click settings, go to shield, toggle off gamestream\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19f3nqb\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19f3nqb/gamestream_enabled/kop7pd4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"name\": \"t1_kop7pd4\", \"created\": 1706937456.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"mostlynocomplaints\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Thank you\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 4, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"billgytes\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kol138q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1706880284.0, \"send_replies\": true, \"parent_id\": \"t3_1agtlvi\", \"score\": 4, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thank you for your post, I really like seeing things like this!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for your post, I really like seeing things like this!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1agtlvi\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1agtlvi/thank_you/kol138q/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"name\": \"t1_kol138q\", \"created\": 1706880284.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Thank you\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 5, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"billgytes\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kojd39q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1706844048.0, \"send_replies\": true, \"parent_id\": \"t3_1agtlvi\", \"score\": 5, \"author_fullname\": \"t2_2upk6j1y\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"+1! It really is amazing. Thankful for it too.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E+1! It really is amazing. Thankful for it too.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1agtlvi\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1agtlvi/thank_you/kojd39q/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"name\": \"t1_kojd39q\", \"created\": 1706844048.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"trevdot\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v0.21.0 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"koad2rf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1706712893.0, \"send_replies\": true, \"parent_id\": \"t1_k53wwgn\", \"score\": 1, \"author_fullname\": \"t2_dbkh1oy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks to all devs!\\n\\nI have an issue with Nvidia control panel not loading. I did a couple of clean installations of nvidia driver but same behavior. I am using Sunshine in a VM with GRID driver which needs a licensing server and when the control panel crashes it doesn't validate the gpu anymore. \\n\\nI will test previous release but was wondering what is the idea of this change in the latest release:\\n (Graphics/NVIDIA) Modify and restore NVIDIA control panel settings before and after stream, respectively\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks to all devs!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an issue with Nvidia control panel not loading. I did a couple of clean installations of nvidia driver but same behavior. I am using Sunshine in a VM with GRID driver which needs a licensing server and when the control panel crashes it doesn\\u0026#39;t validate the gpu anymore. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI will test previous release but was wondering what is the idea of this change in the latest release:\\n (Graphics/NVIDIA) Modify and restore NVIDIA control panel settings before and after stream, respectively\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179554i\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179554i/sunshine_v0210_released/koad2rf/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179554i/sunshine_v0210_released/\", \"name\": \"t1_koad2rf\", \"created\": 1706712893.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"kaizen133\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kjulh16\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1706385694.0, \"send_replies\": true, \"parent_id\": \"t1_kiqcjn5\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"FYI: [https://github.com/LizardByte/Sunshine/pull/2042](https://github.com/LizardByte/Sunshine/pull/2042)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFYI: \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/pull/2042\\\"\\u003Ehttps://github.com/LizardByte/Sunshine/pull/2042\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kjulh16/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kjulh16\", \"created\": 1706385694.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kjrsft2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1706334118.0, \"send_replies\": true, \"parent_id\": \"t1_kipxpdi\", \"score\": 1, \"author_fullname\": \"t2_9jg2qneq3\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thank you!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kjrsft2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kjrsft2\", \"created\": 1706334118.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Commercial-Click-652\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kjrsfc4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1706334110.0, \"send_replies\": true, \"parent_id\": \"t1_kiqcjn5\", \"score\": 1, \"author_fullname\": \"t2_9jg2qneq3\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Get it. Thank you!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGet it. Thank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kjrsfc4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kjrsfc4\", \"created\": 1706334110.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Commercial-Click-652\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Forgoten password on sunshine in linux mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kj34mlo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1705952859.0, \"send_replies\": true, \"parent_id\": \"t1_kj33xjr\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"There certainly is... Troubleshooting section\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere certainly is... Troubleshooting section\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19d46k6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/kj34mlo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"name\": \"t1_kj34mlo\", \"created\": 1705952859.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Forgoten password on sunshine in linux mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kj33xjr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1705952629.0, \"send_replies\": true, \"parent_id\": \"t1_kj33uec\", \"score\": 1, \"author_fullname\": \"t2_b4wr8lky\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"there isnt a soloution :(\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethere isnt a soloution :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19d46k6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/kj33xjr/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"name\": \"t1_kj33xjr\", \"created\": 1705952629.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Revolutionary-Will29\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Forgoten password on sunshine in linux mint\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"[deleted]\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kj33uec\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1705952600.0, \"send_replies\": true, \"parent_id\": \"t3_19d46k6\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Read the manual\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERead the manual\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19d46k6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/kj33uec/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19d46k6/forgoten_password_on_sunshine_in_linux_mint/\", \"name\": \"t1_kj33uec\", \"created\": 1705952600.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to disable Geforce Experience SHIELD streaming when the tab is gone\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kirsypl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1705775325.0, \"send_replies\": true, \"parent_id\": \"t1_k549mvy\", \"score\": 1, \"author_fullname\": \"t2_bne99\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thank you for saving me all that effort\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you for saving me all that effort\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1796xpe\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/kirsypl/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"name\": \"t1_kirsypl\", \"created\": 1705775325.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JibbyJ\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kiqcjn5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1705754533.0, \"send_replies\": true, \"parent_id\": \"t3_19b4bsw\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Unpair all in the ui is the only option. This is something we're trying to improve.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnpair all in the ui is the only option. This is something we\\u0026#39;re trying to improve.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kiqcjn5/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kiqcjn5\", \"created\": 1705754533.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kipxpdi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1705744193.0, \"send_replies\": true, \"parent_id\": \"t3_19b4bsw\", \"score\": 1, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Unpair all clients. It's a button in the troubleshooting menu in sunshine.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnpair all clients. It\\u0026#39;s a button in the troubleshooting menu in sunshine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kipxpdi/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kipxpdi\", \"created\": 1705744193.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to remove a paired device\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Commercial-Click-652\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kipvrw4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1705742730.0, \"send_replies\": true, \"parent_id\": \"t3_19b4bsw\", \"score\": 0, \"author_fullname\": \"t2_4k7uly6d\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I haven't found it. It's probably in a folder in sunshine. However if you uninstall sunshine and then reinstall it everything should reset.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI haven\\u0026#39;t found it. It\\u0026#39;s probably in a folder in sunshine. However if you uninstall sunshine and then reinstall it everything should reset.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_19b4bsw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/kipvrw4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"name\": \"t1_kipvrw4\", \"created\": 1705742730.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"damwookie\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/x8uwb2/sunshine_and_gdm/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine and GDM\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"L-Alto\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kipufpk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1705741720.0, \"send_replies\": true, \"parent_id\": \"t3_x8uwb2\", \"score\": 1, \"author_fullname\": \"t2_12a1w2\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Hi sorry for necroposting.\\n\\nDid you achieve your goal here, OP?\\n\\nI am trying to stream right after booting my debian system. And my linux skills is 3/10 so I am not well versed in terms of configs.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi sorry for necroposting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDid you achieve your goal here, OP?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am trying to stream right after booting my debian system. And my linux skills is 3/10 so I am not well versed in terms of configs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_x8uwb2\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/x8uwb2/sunshine_and_gdm/kipufpk/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/x8uwb2/sunshine_and_gdm/\", \"name\": \"t1_kipufpk\", \"created\": 1705741720.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"sprth\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"can i use sunshine to stresm games from my laptop to my amd pc\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"RightGuide1611\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"ki7izxw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1705451687.0, \"send_replies\": true, \"parent_id\": \"t3_198c1zw\", \"score\": 1, \"author_fullname\": \"t2_n1gqq5qk\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"yes\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyes\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_198c1zw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/ki7izxw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"name\": \"t1_ki7izxw\", \"created\": 1705451687.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"lashram32\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine on MacOS: localhost refused to connect\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Ok-Internal9317\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kgw9vil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1704723023.0, \"send_replies\": true, \"parent_id\": \"t3_1900v2o\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It can't connect because Sunshine has crashed. Please provide verbose logs.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt can\\u0026#39;t connect because Sunshine has crashed. Please provide verbose logs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1900v2o\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/kgw9vil/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"name\": \"t1_kgw9vil\", \"created\": 1704723023.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Help! Sun Shine on Sway (Not working)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"myothk\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kg9n7dd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1704369569.0, \"send_replies\": true, \"parent_id\": \"t1_kg9mflx\", \"score\": 1, \"author_fullname\": \"t2_u49xfx1r\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I tried the flatpak version but no luck.\\nMaybe, I need to compile it myself then.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI tried the flatpak version but no luck.\\nMaybe, I need to compile it myself then.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18yb5hj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/kg9n7dd/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"name\": \"t1_kg9n7dd\", \"created\": 1704369569.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"myothk\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Help! Sun Shine on Sway (Not working)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"myothk\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kg9mflx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1704369100.0, \"send_replies\": true, \"parent_id\": \"t3_18yb5hj\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You can't do setcap on the AppImage.\\n\\nYou can try flatpak but it's far more complicated IMO.\\n\\nBest bet is to use a pre-compiled binary for a specific distro... Or compile yourself.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can\\u0026#39;t do setcap on the AppImage.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can try flatpak but it\\u0026#39;s far more complicated IMO.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBest bet is to use a pre-compiled binary for a specific distro... Or compile yourself.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18yb5hj\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/kg9mflx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"name\": \"t1_kg9mflx\", \"created\": 1704369100.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"GPU Power Draw to high when streaming (Moonlight+Sunshine)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"One-Stress-6734\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kff342h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 1, \"can_mod_post\": true, \"created_utc\": 1703861902.0, \"send_replies\": true, \"parent_id\": \"t3_18tocp4\", \"score\": 2, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Please add your details to the open issue. The more activity on an issue, the more likely it is to gain attention.\\n\\nThank you!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPlease add your details to the open issue. The more activity on an issue, the more likely it is to gain attention.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18tocp4\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/kff342h/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"name\": \"t1_kff342h\", \"created\": 1703861902.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Desktop cannot reconnect after fist connection.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"opUserZero\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kex8hgc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1703548607.0, \"send_replies\": true, \"parent_id\": \"t1_kewbslj\", \"score\": 1, \"author_fullname\": \"t2_n1gqq5qk\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"are you using any other remote apps at the same time? (windows rdp?) Do you have game stream turned off in windows nvidia experience? \\n\\nI would still try UPnP just to see the result as it may provide a clue as to what's going on. \\n\\nI have been using moonlight/sunshine/NV game stream for years and haven't seen this problem for local lan.\\n\\nYou can also try tailscale. I have a tailscale network for all of my personal stuff and it has honestly been a treat. When I travel I use devices out of the country like I am on a home lan including gaming, torrenting and video transcoding.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eare you using any other remote apps at the same time? (windows rdp?) Do you have game stream turned off in windows nvidia experience? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would still try UPnP just to see the result as it may provide a clue as to what\\u0026#39;s going on. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have been using moonlight/sunshine/NV game stream for years and haven\\u0026#39;t seen this problem for local lan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can also try tailscale. I have a tailscale network for all of my personal stuff and it has honestly been a treat. When I travel I use devices out of the country like I am on a home lan including gaming, torrenting and video transcoding.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18q8v56\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/kex8hgc/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"name\": \"t1_kex8hgc\", \"created\": 1703548607.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"lashram32\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Desktop cannot reconnect after fist connection.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"opUserZero\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kewnplf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1703539144.0, \"send_replies\": true, \"parent_id\": \"t3_18q8v56\", \"score\": 1, \"author_fullname\": \"t2_4vcpot72\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You're saying the connection works first go (so sunshine - moonlight works) and it is happening across all devices (can't be an odd setting in OS) then the only suspect left is your router. Try swapping it out to test?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re saying the connection works first go (so sunshine - moonlight works) and it is happening across all devices (can\\u0026#39;t be an odd setting in OS) then the only suspect left is your router. Try swapping it out to test?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18q8v56\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/kewnplf/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"name\": \"t1_kewnplf\", \"created\": 1703539144.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"DanCasper\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Desktop cannot reconnect after fist connection.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"opUserZero\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kewbslj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1703534020.0, \"send_replies\": true, \"parent_id\": \"t1_keucs7b\", \"score\": 1, \"author_fullname\": \"t2_5ge0qxza\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The firewall is disabled and it\\u2019s a local connection.\\nAnd once again it works the first time. It also works on steam app.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe firewall is disabled and it\\u2019s a local connection.\\nAnd once again it works the first time. It also works on steam app.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18q8v56\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/kewbslj/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"name\": \"t1_kewbslj\", \"created\": 1703534020.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"opUserZero\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Desktop cannot reconnect after fist connection.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"opUserZero\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"keucs7b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 4, \"can_mod_post\": true, \"created_utc\": 1703491591.0, \"send_replies\": true, \"parent_id\": \"t3_18q8v56\", \"score\": 1, \"author_fullname\": \"t2_n1gqq5qk\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Open the appropriate ports or use UPnP.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOpen the appropriate ports or use UPnP.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18q8v56\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/keucs7b/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"name\": \"t1_keucs7b\", \"created\": 1703491591.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"lashram32\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Need help WOL over the internet (WAN)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"eastcoastninja\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kdg9pxx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1702641254.0, \"send_replies\": true, \"parent_id\": \"t1_kdg5569\", \"score\": 2, \"author_fullname\": \"t2_wx50x\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks yea I\\u2019m going to have to consider that as a possible avenue. I read some others have success off local so wanted to give it a try.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks yea I\\u2019m going to have to consider that as a possible avenue. I read some others have success off local so wanted to give it a try.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18ihw99\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/kdg9pxx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"name\": \"t1_kdg9pxx\", \"created\": 1702641254.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"eastcoastninja\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Need help WOL over the internet (WAN)\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"eastcoastninja\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kdg5569\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1702638039.0, \"send_replies\": true, \"parent_id\": \"t3_18ihw99\", \"score\": 1, \"author_fullname\": \"t2_31ubfw80\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I\\u2019m pretty sure sending WOL over the internet is too unreliable that you should really just give up trying. Like, in some extremely particular setups it could be possible.\\n\\nYou should have a small server running at your home that you use Zerotier to connect to and send the WOL packet through that.\", \"edited\": 1702653394.0, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019m pretty sure sending WOL over the internet is too unreliable that you should really just give up trying. Like, in some extremely particular setups it could be possible.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou should have a small server running at your home that you use Zerotier to connect to and send the WOL packet through that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18ihw99\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/kdg5569/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"name\": \"t1_kdg5569\", \"created\": 1702638039.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"eidetic0\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/13n1mn6/sunshine_moonlight_on_hypervvm_with_gpupv_results/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine - Moonlight on HyperV-VM with GPU-PV results in Black Screen with no Debug Log Errors\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"strahdvonzar\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kcoiuip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1702154969.0, \"send_replies\": true, \"parent_id\": \"t3_13n1mn6\", \"score\": 1, \"author_fullname\": \"t2_1s1d0324\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Same situation here. Usually after 2-10 attempts on Moonlight it will work. It will play the windows notification sound as I connect, then black screen for 5-10 seconds and error out. Very annoying as I would like to use Sunshine \\u0026 Moonlight as my main streaming client\\n\\nBoth Parsec and Steam Link work without issue though\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESame situation here. Usually after 2-10 attempts on Moonlight it will work. It will play the windows notification sound as I connect, then black screen for 5-10 seconds and error out. Very annoying as I would like to use Sunshine \\u0026amp; Moonlight as my main streaming client\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth Parsec and Steam Link work without issue though\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_13n1mn6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/13n1mn6/sunshine_moonlight_on_hypervvm_with_gpupv_results/kcoiuip/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/13n1mn6/sunshine_moonlight_on_hypervvm_with_gpupv_results/\", \"name\": \"t1_kcoiuip\", \"created\": 1702154969.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Angus__Z\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Looking for a guide to setup Retroarcher on Plex\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Illustrious_Ad_3847\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kcje1lh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1702063345.0, \"send_replies\": true, \"parent_id\": \"t1_kcjcvnr\", \"score\": 1, \"author_fullname\": \"t2_arlmwuod\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18dtoay\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/kcje1lh/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"name\": \"t1_kcje1lh\", \"created\": 1702063345.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Illustrious_Ad_3847\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Looking for a guide to setup Retroarcher on Plex\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Illustrious_Ad_3847\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kcjcvnr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1702062897.0, \"send_replies\": true, \"parent_id\": \"t3_18dtoay\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"You're going to have to wait until it's officially \\\"re\\\"-released\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re going to have to wait until it\\u0026#39;s officially \\u0026quot;re\\u0026quot;-released\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_18dtoay\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/kcjcvnr/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"name\": \"t1_kcjcvnr\", \"created\": 1702062897.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kc6ngmo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1701834584.0, \"send_replies\": true, \"parent_id\": \"t3_17g053k\", \"score\": 1, \"author_fullname\": \"t2_fppmj\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"New release is out now that should fix your problems!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENew release is out now that should fix your problems!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/kc6ngmo/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_kc6ngmo\", \"created\": 1701834584.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"jjnether\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"QRes Download 64 Bit\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"luciel23\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"kawk5mm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1701041903.0, \"send_replies\": true, \"parent_id\": \"t3_1834ou9\", \"score\": 1, \"author_fullname\": \"t2_dzi29\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Same thing here. Lemme know if you find it.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESame thing here. Lemme know if you find it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1834ou9\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1834ou9/qres_download_64_bit/kawk5mm/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"name\": \"t1_kawk5mm\", \"created\": 1701041903.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"pooish\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"wonderbreadofsin\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k8saayr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699711851.0, \"send_replies\": true, \"parent_id\": \"t1_k8s9ym0\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I'm not really that versed on signing anything. I sign my commits to GitHub and that's about it.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not really that versed on signing anything. I sign my commits to GitHub and that\\u0026#39;s about it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17sui0y\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/k8saayr/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"name\": \"t1_k8saayr\", \"created\": 1699711851.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"wonderbreadofsin\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k8s9ym0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699711690.0, \"send_replies\": true, \"parent_id\": \"t1_k8s9dq7\", \"score\": 1, \"author_fullname\": \"t2_4108e\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Makes sense, thanks for the info.\\n\\nDo you use any PGP/GPG signing?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMakes sense, thanks for the info.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you use any PGP/GPG signing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17sui0y\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/k8s9ym0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"name\": \"t1_k8s9ym0\", \"created\": 1699711690.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"wonderbreadofsin\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"wonderbreadofsin\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k8s9dq7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699711423.0, \"send_replies\": true, \"parent_id\": \"t1_k8s90dw\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"The cost isn't that big a deal, it's more that we're also needing a way to do driver signing (not for Sunshine) and that requires being an official company from what I'm told.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe cost isn\\u0026#39;t that big a deal, it\\u0026#39;s more that we\\u0026#39;re also needing a way to do driver signing (not for Sunshine) and that requires being an official company from what I\\u0026#39;m told.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17sui0y\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/k8s9dq7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"name\": \"t1_k8s9dq7\", \"created\": 1699711423.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"wonderbreadofsin\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k8s90dw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699711251.0, \"send_replies\": true, \"parent_id\": \"t1_k8s77v9\", \"score\": 1, \"author_fullname\": \"t2_4108e\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Okay thanks, I just wanted to make sure I hadn't downloaded a corrupted binary.\\n\\nIs it just because of the cost of code signing certificates? It's crazy that certificates are still so expensive.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOkay thanks, I just wanted to make sure I hadn\\u0026#39;t downloaded a corrupted binary.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs it just because of the cost of code signing certificates? It\\u0026#39;s crazy that certificates are still so expensive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17sui0y\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/k8s90dw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"name\": \"t1_k8s90dw\", \"created\": 1699711251.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"wonderbreadofsin\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"wonderbreadofsin\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k8s77v9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699710401.0, \"send_replies\": true, \"parent_id\": \"t3_17sui0y\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"We don't sign binaries\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe don\\u0026#39;t sign binaries\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17sui0y\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/k8s77v9/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"name\": \"t1_k8s77v9\", \"created\": 1699710401.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Moonlight/Sunshine Mouse Input Lag\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Which-Project222\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k81z5g7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1699268662.0, \"send_replies\": true, \"parent_id\": \"t3_16z2kol\", \"score\": 1, \"author_fullname\": \"t2_ug9lztsr\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I also tried all sorts of settings to get rid of the mouse lag. I had no improvements and had to go native. However, now I just read that the problem may have been my mouse polling speed which was too high. Peeps are suggesting 150, but most modern Razer mouses default to 1000. Reducing this to 150 may be the solution. I'll try that later.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI also tried all sorts of settings to get rid of the mouse lag. I had no improvements and had to go native. However, now I just read that the problem may have been my mouse polling speed which was too high. Peeps are suggesting 150, but most modern Razer mouses default to 1000. Reducing this to 150 may be the solution. I\\u0026#39;ll try that later.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_16z2kol\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/k81z5g7/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"name\": \"t1_k81z5g7\", \"created\": 1699268662.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"North-Fisherman2807\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stream 4K from non-4K system/monitor\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k7lb76p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1698974407.0, \"send_replies\": true, \"parent_id\": \"t3_179agja\", \"score\": 1, \"author_fullname\": \"t2_n1gqq5qk\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"[https://github.com/itsmikethetech/Virtual-Display-Driver](https://github.com/itsmikethetech/Virtual-Display-Driver)\\n\\n\\u0026#x200B;\\n\\nuse this\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/itsmikethetech/Virtual-Display-Driver\\\"\\u003Ehttps://github.com/itsmikethetech/Virtual-Display-Driver\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Euse this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179agja\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/k7lb76p/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"name\": \"t1_k7lb76p\", \"created\": 1698974407.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"lashram32\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to launch Sunshine on Mac Os?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"SpyvsMerc\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k7gn1z0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 3, \"can_mod_post\": true, \"created_utc\": 1698895589.0, \"send_replies\": true, \"parent_id\": \"t1_jpzbbmg\", \"score\": 1, \"author_fullname\": \"t2_a6vi754y\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"doesn't allow me to join in the app\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edoesn\\u0026#39;t allow me to join in the app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_14jk3x5\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/k7gn1z0/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"name\": \"t1_k7gn1z0\", \"created\": 1698895589.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"DjCoast\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6isn79\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698318081.0, \"send_replies\": true, \"parent_id\": \"t1_k6hrj8e\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"It does, but it's a branch not a release\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt does, but it\\u0026#39;s a branch not a release\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6isn79/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6isn79\", \"created\": 1698318081.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6ibe03\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698304906.0, \"send_replies\": true, \"parent_id\": \"t1_k6hk5hj\", \"score\": 1, \"author_fullname\": \"t2_b0tqnmx8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"i hope the next release come soon..\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei hope the next release come soon..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6ibe03/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6ibe03\", \"created\": 1698304906.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Critical_Pick8868\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6hrj8e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698291861.0, \"send_replies\": true, \"parent_id\": \"t1_k6hk5hj\", \"score\": 1, \"author_fullname\": \"t2_b0tqnmx8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"nightly doesn't work on synology ?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enightly doesn\\u0026#39;t work on synology ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6hrj8e/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6hrj8e\", \"created\": 1698291861.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Critical_Pick8868\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6hk5hj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698288273.0, \"send_replies\": true, \"parent_id\": \"t1_k6hj4t4\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"v0.3.0 doesn't officially exist\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ev0.3.0 doesn\\u0026#39;t officially exist\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6hk5hj/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6hk5hj\", \"created\": 1698288273.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6hj4t4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698287801.0, \"send_replies\": true, \"parent_id\": \"t1_k6hib5f\", \"score\": 1, \"author_fullname\": \"t2_b0tqnmx8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"you mean 0.2.0 and 0.3.0 doesn't working ??\\n\\nand next will be fixed ??\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou mean 0.2.0 and 0.3.0 doesn\\u0026#39;t working ??\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand next will be fixed ??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6hj4t4/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6hj4t4\", \"created\": 1698287801.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Critical_Pick8868\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6hib5f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698287426.0, \"send_replies\": true, \"parent_id\": \"t1_k6hi1k5\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"As I said, please watch for the next release.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs I said, please watch for the next release.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6hib5f/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6hib5f\", \"created\": 1698287426.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6hi1k5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698287306.0, \"send_replies\": true, \"parent_id\": \"t1_k6h5mak\", \"score\": 1, \"author_fullname\": \"t2_b0tqnmx8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"thank you for your reply \\n\\nbut how do i install nightly ?\\n\\njust overwritten in to Themerr-plex.bundle folder ? \\n\\nor delete Themerr-plex.bundle and unzip [Themerr-plex-nightly.zip](https://Themerr-plex-nightly.zip)\\n\\nand rename it Themerr-plex-nightly ?\\n\\nplz help me\\n\\ni also posted in discord ..\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethank you for your reply \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut how do i install nightly ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ejust overwritten in to Themerr-plex.bundle folder ? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eor delete Themerr-plex.bundle and unzip \\u003Ca href=\\\"https://Themerr-plex-nightly.zip\\\"\\u003EThemerr-plex-nightly.zip\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand rename it Themerr-plex-nightly ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eplz help me\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei also posted in discord ..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6hi1k5/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6hi1k5\", \"created\": 1698287306.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Critical_Pick8868\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex not working.\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Critical_Pick8868\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6h5mak\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 9, \"can_mod_post\": true, \"created_utc\": 1698282042.0, \"send_replies\": true, \"parent_id\": \"t3_17g053k\", \"score\": 1, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"That error occurs for all plex plugins, you can ignore it.\\n\\nThere is a known issue with Synology, but I have a workaround in the nightly branch. Please keep an eye out for the next release.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat error occurs for all plex plugins, you can ignore it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThere is a known issue with Synology, but I have a workaround in the nightly branch. Please keep an eye out for the next release.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_17g053k\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/k6h5mak/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"name\": \"t1_k6h5mak\", \"created\": 1698282042.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v0.2.0\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Themerr-plex v0.2.0 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6gyha2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1698279089.0, \"send_replies\": true, \"parent_id\": \"t3_15elaf5\", \"score\": 1, \"author_fullname\": \"t2_b0tqnmx8\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \" \\n\\nERROR (networking:197) - Error opening URL '[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)'\\n\\n2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\\", line 1293, in get\\\\_resource\\\\_hashes\\n\\njson = self.\\\\_core.networking.http\\\\_request(\\\"[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)\\\", timeout=10).content\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 243, in content\\n\\nreturn self.\\\\_\\\\_str\\\\_\\\\_()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 221, in \\\\_\\\\_str\\\\_\\\\_\\n\\nself.load()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 159, in load\\n\\nf = self.\\\\_opener.open(req, timeout=self.\\\\_timeout)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 435, in open\\n\\nresponse = meth(req, response)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 548, in http\\\\_response\\n\\n'http', request, response, code, msg, hdrs)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 473, in error\\n\\nreturn self.\\\\_call\\\\_chain(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 407, in \\\\_call\\\\_chain\\n\\nresult = func(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 556, in http\\\\_error\\\\_default\\n\\nraise HTTPError(req.get\\\\_full\\\\_url(), code, msg, hdrs, fp)\\n\\nHTTPError: HTTP Error 404: Not Found\\n\\ni installed Themerr-plex.bundle in \\\"/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\\"\\n\\n(plex package in synology DSM7)\\n\\neverything seems ok. i see Themerr-plex icon in settings- plugins.\\n\\nand restarted plex , rescan library , refresh metadata.\\n\\nbut still no working. theme doesn't play at all..\\n\\nabove is my log in \\\"dev.lizardbyte.themerr-plex.log\\\"\\n\\nplease help me.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EERROR (networking:197) - Error opening URL \\u0026#39;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\u0026quot;, line 1293, in get_resource_hashes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ejson = self._core.networking.http_request(\\u0026quot;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026quot;, timeout=10).content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 243, in content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self.__str__()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 221, in __str__\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.load()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 159, in load\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ef = self._opener.open(req, timeout=self._timeout)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 435, in open\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresponse = meth(req, response)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 548, in http_response\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;http\\u0026#39;, request, response, code, msg, hdrs)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 473, in error\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self._call_chain(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 407, in _call_chain\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresult = func(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 556, in http_error_default\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eraise HTTPError(req.get_full_url(), code, msg, hdrs, fp)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHTTPError: HTTP Error 404: Not Found\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei installed Themerr-plex.bundle in \\u0026quot;/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(plex package in synology DSM7)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eeverything seems ok. i see Themerr-plex icon in settings- plugins.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand restarted plex , rescan library , refresh metadata.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut still no working. theme doesn\\u0026#39;t play at all..\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eabove is my log in \\u0026quot;dev.lizardbyte.themerr-plex.log\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eplease help me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_15elaf5\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/15elaf5/themerrplex_v020_released/k6gyha2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/15elaf5/themerrplex_v020_released/\", \"name\": \"t1_k6gyha2\", \"created\": 1698279089.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Critical_Pick8868\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v0.21.0 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6bi3e2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1698189380.0, \"send_replies\": true, \"parent_id\": \"t3_179554i\", \"score\": 1, \"author_fullname\": \"t2_2gyj1fv\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Updated and now my Y Button for is acting as the Guide button Xinputs. How can I disable this?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUpdated and now my Y Button for is acting as the Guide button Xinputs. How can I disable this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179554i\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179554i/sunshine_v0210_released/k6bi3e2/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179554i/sunshine_v0210_released/\", \"name\": \"t1_k6bi3e2\", \"created\": 1698189380.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"JarionXP\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Sunshine v0.21.0 Released\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k6a4biw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 6, \"can_mod_post\": true, \"created_utc\": 1698170788.0, \"send_replies\": true, \"parent_id\": \"t3_179554i\", \"score\": 1, \"author_fullname\": \"t2_b85yyeqc\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"running great thanks. \\nCan you add working mode without monitor?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Erunning great thanks.\\u003Cbr/\\u003E\\nCan you add working mode without monitor?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179554i\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179554i/sunshine_v0210_released/k6a4biw/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179554i/sunshine_v0210_released/\", \"name\": \"t1_k6a4biw\", \"created\": 1698170788.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"l3g0r\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stream 4K from non-4K system/monitor\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k5np7hp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1697784701.0, \"send_replies\": true, \"parent_id\": \"t1_k57gvrr\", \"score\": 1, \"author_fullname\": \"t2_151bfz\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"This is the way\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the way\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179agja\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/k5np7hp/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"name\": \"t1_k5np7hp\", \"created\": 1697784701.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"mrallroy\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Retroarcher update?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 3, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Appropriate-Bank6316\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k5f3665\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1697645199.0, \"send_replies\": true, \"parent_id\": \"t1_k57kefa\", \"score\": 3, \"author_fullname\": \"t2_aneoa\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks for dedicating your time to this project :)\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for dedicating your time to this project :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179a2t6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/k5f3665/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"name\": \"t1_k5f3665\", \"created\": 1697645199.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"amalesnail\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"How to disable Geforce Experience SHIELD streaming when the tab is gone\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k59k2tz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1697554479.0, \"send_replies\": true, \"parent_id\": \"t1_k549mvy\", \"score\": 1, \"author_fullname\": \"t2_9wplz\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"Thanks! Couldn't find an answer to this.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! Couldn\\u0026#39;t find an answer to this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_1796xpe\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/k59k2tz/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"name\": \"t1_k59k2tz\", \"created\": 1697554479.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"LOLDrDroo\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stream 4K from non-4K system/monitor\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k58gbfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1697532948.0, \"send_replies\": true, \"parent_id\": \"t3_179agja\", \"score\": 1, \"author_fullname\": \"t2_1ur1wp0u\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I bought a HDMI Dummy that supports 4k outputs. I even added a forced 4k 120Hz mode. When launching a session on Sunshine (on Linux to be noted), a Script runs that disables the physical screens and turns on the virtual Display to whatever resolution (depending on the session). As soon as the session is quit, another script enables the monitors again and disables the virtual screen, as well as it locks the session.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI bought a HDMI Dummy that supports 4k outputs. I even added a forced 4k 120Hz mode. When launching a session on Sunshine (on Linux to be noted), a Script runs that disables the physical screens and turns on the virtual Display to whatever resolution (depending on the session). As soon as the session is quit, another script enables the monitors again and disables the virtual screen, as well as it locks the session.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179agja\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/k58gbfx/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"name\": \"t1_k58gbfx\", \"created\": 1697532948.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"MrHighVoltage\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Stream 4K from non-4K system/monitor\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Grepsy\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k58f8jj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"spam\": false, \"num_comments\": 5, \"can_mod_post\": true, \"created_utc\": 1697532036.0, \"send_replies\": true, \"parent_id\": \"t1_k57gvrr\", \"score\": 1, \"author_fullname\": \"t2_ihg5f\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"I'll give it a try, thanks for the suggestion!\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ll give it a try, thanks for the suggestion!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179agja\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/k58f8jj/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"name\": \"t1_k58f8jj\", \"created\": 1697532036.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": null, \"removed\": false, \"author\": \"Grepsy\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": null}}, {\"kind\": \"t1\", \"data\": {\"link_url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"link_title\": \"Retroarcher update?\", \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 6, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"link_author\": \"Appropriate-Bank6316\", \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"k57kefa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"spam\": false, \"num_comments\": 2, \"can_mod_post\": true, \"created_utc\": 1697511617.0, \"send_replies\": true, \"parent_id\": \"t3_179a2t6\", \"score\": 6, \"author_fullname\": \"t2_393wfkmy\", \"over_18\": false, \"report_reasons\": [], \"approved_by\": null, \"controversiality\": 0, \"body\": \"There's no version that's even close to stable at this point. I'm completely re-writing everything (slowly). I can't provide any ETA as I have no idea when it will be ready. Could be 6 months, could be 6 years... probably going to be somewhere in between.\\n\\nI wouldn't buy any hardware based on anything I'm working on.\\n\\nAt this point, I'm spending a lot of time improving things that will support RetroArcher, such as the following:\\n\\n- Sunshine (core requirement for RetroArcher)\\n- plexhints (Plex plugin development library, and GitHub action to bootstrap a Plex server in CI pipelines)\\n- Themerr (will provide theme songs for games in Plex)\\n- PlexyGlass (will allow playing of trailers/extra for games in Plex)\\n- Plugger (upcoming Plex plugin under development to assist with automating plugin installs, viewing plugin logs, etc.)\\n- python-plexapi-backport (python-plexapi version supporting Python 2.7, which is required for Plex as their plugin framework is stuck on Python 2.7)\\n\\nAs the above projects get more stable... I will have more time for RetroArcher. It takes longer this time around, because I am implementing much better coding practices, such as unit testing to verify things continue working between changes. It's not the easiest to unit test Plex plugins, which is the main reason for the plexhints library, and GitHub action.\\n\\nThen RetroArcher will require at least the following projects to be stable.\\n\\n- RetroArcher (server application)\\n- RetroArcher-plex (plex plugin)\\n- RetroArcher-jellyfin (will probably come after Plex version)\\n- PC client app (Windows, Linux, and macOS)\\n- Android client app (probably not going to do the ADB method next time around... to hacky)\\n- iOS client app (unlikely that I will develop this... maybe someone in the community will)\\n\\nWith that said, I am revamping our release process, so that all of our projects will receive more frequent releases (as pre-releases) and it will be easier to get changes out... thus improving development speed.\\n\\nSorry, this is probably not what you want to hear, but that is the current state.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"author_flair_background_color\": \"#94e044\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere\\u0026#39;s no version that\\u0026#39;s even close to stable at this point. I\\u0026#39;m completely re-writing everything (slowly). I can\\u0026#39;t provide any ETA as I have no idea when it will be ready. Could be 6 months, could be 6 years... probably going to be somewhere in between.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wouldn\\u0026#39;t buy any hardware based on anything I\\u0026#39;m working on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I\\u0026#39;m spending a lot of time improving things that will support RetroArcher, such as the following:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESunshine (core requirement for RetroArcher)\\u003C/li\\u003E\\n\\u003Cli\\u003Eplexhints (Plex plugin development library, and GitHub action to bootstrap a Plex server in CI pipelines)\\u003C/li\\u003E\\n\\u003Cli\\u003EThemerr (will provide theme songs for games in Plex)\\u003C/li\\u003E\\n\\u003Cli\\u003EPlexyGlass (will allow playing of trailers/extra for games in Plex)\\u003C/li\\u003E\\n\\u003Cli\\u003EPlugger (upcoming Plex plugin under development to assist with automating plugin installs, viewing plugin logs, etc.)\\u003C/li\\u003E\\n\\u003Cli\\u003Epython-plexapi-backport (python-plexapi version supporting Python 2.7, which is required for Plex as their plugin framework is stuck on Python 2.7)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EAs the above projects get more stable... I will have more time for RetroArcher. It takes longer this time around, because I am implementing much better coding practices, such as unit testing to verify things continue working between changes. It\\u0026#39;s not the easiest to unit test Plex plugins, which is the main reason for the plexhints library, and GitHub action.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen RetroArcher will require at least the following projects to be stable.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ERetroArcher (server application)\\u003C/li\\u003E\\n\\u003Cli\\u003ERetroArcher-plex (plex plugin)\\u003C/li\\u003E\\n\\u003Cli\\u003ERetroArcher-jellyfin (will probably come after Plex version)\\u003C/li\\u003E\\n\\u003Cli\\u003EPC client app (Windows, Linux, and macOS)\\u003C/li\\u003E\\n\\u003Cli\\u003EAndroid client app (probably not going to do the ADB method next time around... to hacky)\\u003C/li\\u003E\\n\\u003Cli\\u003EiOS client app (unlikely that I will develop this... maybe someone in the community will)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EWith that said, I am revamping our release process, so that all of our projects will receive more frequent releases (as pre-releases) and it will be easier to get changes out... thus improving development speed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry, this is probably not what you want to hear, but that is the current state.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_179a2t6\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/k57kefa/\", \"subreddit_type\": \"public\", \"link_permalink\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"name\": \"t1_k57kefa\", \"created\": 1697511617.0, \"subreddit_name_prefixed\": \"r/LizardByte\", \"author_flair_text\": \"Developer\", \"removed\": false, \"author\": \"ReenigneArcher\", \"collapsed\": false, \"awarders\": [], \"all_awardings\": [], \"locked\": false, \"ignore_reports\": false, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"quarantine\": false, \"mod_note\": null, \"treatment_tags\": [], \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\"}}], \"before\": null}}" + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"#FFB470\", \"user_is_muted\": null, \"display_name\": \"u_ConflictOfEvidence\", \"header_img\": null, \"title\": \"\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://www.redditstatic.com/avatars/defaults/v2/avatar_default_1.png\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": true, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/ConflictOfEvidence\", \"key_color\": \"\", \"name\": \"t5_1aecja\", \"is_default_banner\": true, \"url\": \"/user/ConflictOfEvidence/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": false, \"accept_followers\": false, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": null, \"awardee_karma\": 0, \"id\": \"12bzch\", \"verified\": true, \"is_gold\": false, \"is_mod\": true, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://www.redditstatic.com/avatars/defaults/v2/avatar_default_1.png\", \"hide_from_robots\": false, \"link_karma\": 1088, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 21892, \"accept_chats\": false, \"name\": \"ConflictOfEvidence\", \"created\": 1477253791.0, \"created_utc\": 1477253791.0, \"snoovatar_img\": \"\", \"comment_karma\": 20804, \"accept_followers\": false, \"has_subscribed\": true, \"accept_pms\": false}}" }, "headers": { "Accept-Ranges": [ @@ -233,10 +150,10 @@ "keep-alive" ], "Content-Length": [ - "268757" + "1772" ], "Date": [ - "Wed, 01 May 2024 14:21:58 GMT" + "Tue, 20 May 2025 23:55:50 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -248,7 +165,7 @@ "snooserv" ], "Set-Cookie": [ - "session_tracker=hjgieqemmchoocirph.0.1714573318178.Z0FBQUFBQm1NbEFHcU1fZF85SU1DZDNBMjBWVkFjV2lrMlVYeHJVVFViSFlKenBnR2pFV0ZxWVFtQTAyQ3h6UERfbXpsdVdJLTdGeVJ4cGxiMjc4Yk5JT2RwWG5tRkVtTE1TdThKMmJWOG00a19oc3NkZklmNkxwRGdkbzktTzk2dEdJYm5OXzMwMnk; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 16:21:58 GMT; secure; SameSite=None; Secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785350156.Z0FBQUFBQm9MUmFHRVVxMVE1NHpFM3g4QkdSTFp1b2w0QTJJa3pZWktOSmducW5aZDRBblVfQ2VDSGJ6MURMTVRIUzEwU25xUzF6UHNiM2VOMm9WMDhwYkhkNFVBXzkzcVY4a3I1Z3YtcDFaOUluNzdJMmZDa1d1blh2UTJKQUZ0LUZkRHFSMlhMUjg; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:50 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -278,13 +195,13 @@ "-1" ], "x-ratelimit-remaining": [ - "981" + "931.0" ], "x-ratelimit-reset": [ - "482" + "249" ], "x-ratelimit-used": [ - "15" + "69" ], "x-ua-compatible": [ "IE=edge" @@ -294,7 +211,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/r/LizardByte/comments/?limit=100&raw_json=1" + "url": "https://oauth.reddit.com/user/ConflictOfEvidence/about/?raw_json=1" } } ], diff --git a/tests/fixtures/cassettes/test_process_comment.json b/tests/fixtures/cassettes/test_process_comment.json index d1cc86dc..59596548 100644 --- a/tests/fixtures/cassettes/test_process_comment.json +++ b/tests/fixtures/cassettes/test_process_comment.json @@ -1,11 +1,11 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T03:06:40", + "recorded_at": "2025-05-20T23:55:37", "request": { "body": { "encoding": "utf-8", - "string": "api_type=json&text=%23+VBan%0A%0AVBan+is+a+microphone+transmission+protocol+made+by+the+makers+of+VB+cable.+It+allows+you+to+pass+your+microphone+from%0Ayour+client+to+your+host+on+supported+clients.+You+will+need+to+download+%22Receptor%22+on+your+host+and+%22Talkie%22+on+your%0Aclients.+You+can+find+both+here%3A+%3Chttps%3A%2F%2Fvb-audio.com%2FVoicemeeter%2Fvban.htm%3E%0A%0AOnce+downloaded%2C+extracted%2C+and+placed+in+your+desired+location%2C+all+you+need+to+do+is+run+them+and+do+some+minor%0Aconfiguration+as+follows%3A%0A%0A1.+On+Talkie%2C+you+give+your+stream+a+name+%28like+the+device+name%29+and+the+IP+address+of+the+host.%0A+++You+may+also+have+to+go+into+settings+via+the+menu+button+to+assign+a+microphone.%0A2.+On+Receptor%2C+you+assign+an+audio+output.+You+may+have+to+install+VB+cable+to+make+a+digital+one.%0A+++Then+click+the+stream+name.+The+stream+you+made+from+Talkie+should+appear+as+an+option.%0A%0AThat%27s+it%21%0A%0A%E2%84%B9%EF%B8%8F+%2A%2ANotes%2A%2A%0A%0A-+As+Receptor+does+not+auto-start+as+it+is+not+an+installed+program%2C+you+may+want+to+add+it+as+a%0A++Sunshine+pre-launch+command.+Receptor+will+remember+the+last+audio+stream+it+was+connected+to.%0A-+You+may+have+to+configure+Windows%2FGame+audio+setting+on+the+host+to+use+the+Microphone+if+you+are+using+VB+cable.%0A-+To+use+Vban+over+the+internet%2C+you+will+also+have+to+manually+forward+UDP+Port+6980.%0A&thing_id=t1_l20s21b" + "string": "" }, "headers": { "Accept": [ @@ -20,42 +20,33 @@ "Connection": [ "keep-alive" ], - "Content-Length": [ - "1419" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=goeleipgnjpgmqklcp.0.1714530944660.Z0FBQUFBQm1NYXFBcFRER1ZtRGdHYkVrSUpZQ1JmVTUwNkVWWDNzNzBKSUQtQnVsZ2JHTVladHNsLU5xSFB4SG9hVlZ4YTNQTWZHcDFBek00QlY0Q1V5WTY3cUpfV2ZvU0lBMEZLaXItbGFnTkItVzBMcEtoX2l1eUQyS1BtdS02d19tS1N4WVVKbzI; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785336843.Z0FBQUFBQm9MUlo0QTk1WEpOb2VFVUM4cVZkb0pWbFBDVm51RHM2N3dsNzVia2EtRDhBSkZGa2FBOWFoMWVuQm44ZFo1NHp2QXZTeEVWblNjWU1CeUMxYUE4WnZ6dml4NDhHeVNUS3lwRUpUWDh1NzJDRXl1MGh3Q3RLZF9XVzNaVmxlajJMX1lST3I; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, - "method": "POST", - "uri": "https://oauth.reddit.com/api/comment/?raw_json=1" + "method": "GET", + "uri": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" }, "response": { "body": { "encoding": "UTF-8", - "string": "reddit.com: page not found
\"\"

page not found

the page you requested does not exist

\n\n

Use of this site constitutes acceptance of our User Agreement and Privacy Policy. © 2024 reddit inc. All rights reserved.

REDDIT and the ALIEN Logo are registered trademarks of reddit inc.

π Rendered by PID 39 on reddit-service-r2-api-5b4f7f4646-pmpm2 at 2024-05-01 03:06:40.279364+00:00 running 0fe8e6a country code: US.

" + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": false, \"user_is_contributor\": false, \"banner_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileBanner_sgrof18cami21.png?width=1280\\u0026height=384\\u0026crop=1280:384,smart\\u0026s=9e0345ce351cd0ca8d7730d5f9ea81a372830313\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_ReenigneArcher\", \"header_img\": null, \"title\": \"Reenigne Archer\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/ReenigneArcher\", \"key_color\": \"\", \"name\": \"t5_wtkds\", \"is_default_banner\": false, \"url\": \"/user/ReenigneArcher/\", \"quarantine\": false, \"banner_size\": [1280, 384], \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"...\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": null, \"awardee_karma\": 0, \"id\": \"393wfkmy\", \"verified\": true, \"is_gold\": false, \"is_mod\": true, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"hide_from_robots\": true, \"link_karma\": 4444, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 9227, \"accept_chats\": true, \"name\": \"ReenigneArcher\", \"created\": 1550539666.0, \"created_utc\": 1550539666.0, \"snoovatar_img\": \"\", \"comment_karma\": 4783, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" }, "headers": { "Accept-Ranges": [ "bytes" ], - "Cache-Control": [ - "private, max-age=3600" - ], "Connection": [ "keep-alive" ], "Content-Length": [ - "32835" + "2159" ], "Date": [ - "Wed, 01 May 2024 03:06:40 GMT" + "Tue, 20 May 2025 23:55:37 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -66,6 +57,9 @@ "Server": [ "snooserv" ], + "Set-Cookie": [ + "session_tracker=adhdnlqbpoljraclbh.0.1747785337072.Z0FBQUFBQm9MUlo1WlBaU2lvalRENFMtUTVsMERGVVNfZTVZeVd4c3o5UUFMUDdEb0ViVWVWcm9Dd2R5cUhFNENyTzlwd2pqWWJKVUJONW1oNUFzdG93R3ZoejRxOExWeTBhcGw3V0VvbnliVC1XQk14bG5ad0JTR1pZYTVNM3Z6c3c1a1I1YmZUTWY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:37 GMT; secure; SameSite=None; Secure" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" ], @@ -84,120 +78,40 @@ "X-XSS-Protection": [ "1; mode=block" ], - "content-type": [ - "text/html; charset=UTF-8" - ], - "www-authenticate": [ - "Bearer realm=\"reddit\", error=\"invalid_token\"" - ], - "x-ua-compatible": [ - "IE=edge" - ] - }, - "status": { - "code": 401, - "message": "Unauthorized" - }, - "url": "https://oauth.reddit.com/api/comment/?raw_json=1" - } - }, - { - "recorded_at": "2024-05-01T03:06:41", - "request": { - "body": { - "encoding": "utf-8", - "string": "grant_type=password&password=&username=" - }, - "headers": { - "Accept": [ - "*/*" - ], - "Accept-Encoding": [ - "identity" - ], - "Authorization": [ - "Basic " - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/x-www-form-urlencoded" - ], - "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=goeleipgnjpgmqklcp.0.1714530944660.Z0FBQUFBQm1NYXFBcFRER1ZtRGdHYkVrSUpZQ1JmVTUwNkVWWDNzNzBKSUQtQnVsZ2JHTVladHNsLU5xSFB4SG9hVlZ4YTNQTWZHcDFBek00QlY0Q1V5WTY3cUpfV2ZvU0lBMEZLaXItbGFnTkItVzBMcEtoX2l1eUQyS1BtdS02d19tS1N4WVVKbzI; csv=2" - ], - "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" - ] - }, - "method": "POST", - "uri": "https://www.reddit.com/api/v1/access_token" - }, - "response": { - "body": { - "encoding": "UTF-8", - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 86400, \"scope\": \"*\"}" - }, - "headers": { - "Accept-Ranges": [ - "bytes" - ], - "Cache-Control": [ - "private, max-age=3600" - ], - "Connection": [ - "close" - ], - "Content-Length": [ - "848" - ], - "Date": [ - "Wed, 01 May 2024 03:06:41 GMT" - ], - "NEL": [ - "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" - ], - "Report-To": [ - "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" - ], - "Server": [ - "snooserv" + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-store" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubdomains" + "content-type": [ + "application/json; charset=UTF-8" ], - "Vary": [ - "accept-encoding, Accept-Encoding" + "expires": [ + "-1" ], - "Via": [ - "1.1 varnish" + "x-ratelimit-remaining": [ + "938.0" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ratelimit-reset": [ + "262" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "x-ratelimit-used": [ + "62" ], - "X-XSS-Protection": [ - "1; mode=block" + "x-robots-tag": [ + "noindex, nofollow" ], - "content-type": [ - "application/json; charset=UTF-8" + "x-ua-compatible": [ + "IE=edge" ] }, "status": { "code": 200, "message": "OK" }, - "url": "https://www.reddit.com/api/v1/access_token" + "url": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" } }, { - "recorded_at": "2024-05-01T03:06:42", + "recorded_at": "2025-05-20T23:55:37", "request": { "body": { "encoding": "utf-8", @@ -211,7 +125,7 @@ "identity" ], "Authorization": [ - "bearer " + "bearer " ], "Connection": [ "keep-alive" @@ -223,10 +137,10 @@ "application/x-www-form-urlencoded" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=goeleipgnjpgmqklcp.0.1714530944660.Z0FBQUFBQm1NYXFBcFRER1ZtRGdHYkVrSUpZQ1JmVTUwNkVWWDNzNzBKSUQtQnVsZ2JHTVladHNsLU5xSFB4SG9hVlZ4YTNQTWZHcDFBek00QlY0Q1V5WTY3cUpfV2ZvU0lBMEZLaXItbGFnTkItVzBMcEtoX2l1eUQyS1BtdS02d19tS1N4WVVKbzI; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785337072.Z0FBQUFBQm9MUlo1WlBaU2lvalRENFMtUTVsMERGVVNfZTVZeVd4c3o5UUFMUDdEb0ViVWVWcm9Dd2R5cUhFNENyTzlwd2pqWWJKVUJONW1oNUFzdG93R3ZoejRxOExWeTBhcGw3V0VvbnliVC1XQk14bG5ad0JTR1pZYTVNM3Z6c3c1a1I1YmZUTWY; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "POST", @@ -235,7 +149,7 @@ "response": { "body": { "encoding": "UTF-8", - "string": "{\"json\": {\"errors\": [], \"data\": {\"things\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"l21hyoa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"can_mod_post\": true, \"created_utc\": 1714532801.0, \"ignore_reports\": false, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"report_reasons\": [], \"approved_by\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"awarders\": [], \"gildings\": {}, \"author_flair_css_class\": null, \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"spam\": false, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/l21hyoa/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_l21hyoa\", \"created\": 1714532801.0, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"link_id\": \"t3_w03cku\", \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"top_awarded_type\": null, \"author_flair_background_color\": \"#ffd635\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}]}}}" + "string": "{\"json\": {\"errors\": [], \"data\": {\"things\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_6o778z\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": 0, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"LizardByte\", \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"likes\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"mtdyx3d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"\", \"can_mod_post\": true, \"created_utc\": 1747785337.0, \"ignore_reports\": false, \"send_replies\": true, \"parent_id\": \"t1_l20s21b\", \"score\": 1, \"author_fullname\": \"t2_ps86k4yd\", \"report_reasons\": [], \"approved_by\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"# VBan\\n\\nVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\\"Receptor\\\" on your host and \\\"Talkie\\\" on your\\nclients. You can find both here: \\u003Chttps://vb-audio.com/Voicemeeter/vban.htm\\u003E\\n\\nOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\n\\n1. On Talkie, you give your stream a name (like the device name) and the IP address of the host.\\n You may also have to go into settings via the menu button to assign a microphone.\\n2. On Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\n Then click the stream name. The stream you made from Talkie should appear as an option.\\n\\nThat's it!\\n\\n\\u2139\\ufe0f **Notes**\\n\\n- As Receptor does not auto-start as it is not an installed program, you may want to add it as a\\n Sunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\n- You may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\n- To use Vban over the internet, you will also have to manually forward UDP Port 6980.\", \"awarders\": [], \"gildings\": {}, \"author_flair_css_class\": null, \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Ch1\\u003EVBan\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EVBan is a microphone transmission protocol made by the makers of VB cable. It allows you to pass your microphone from\\nyour client to your host on supported clients. You will need to download \\u0026quot;Receptor\\u0026quot; on your host and \\u0026quot;Talkie\\u0026quot; on your\\nclients. You can find both here: \\u003Ca href=\\\"https://vb-audio.com/Voicemeeter/vban.htm\\\"\\u003Ehttps://vb-audio.com/Voicemeeter/vban.htm\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOnce downloaded, extracted, and placed in your desired location, all you need to do is run them and do some minor\\nconfiguration as follows:\\u003C/p\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EOn Talkie, you give your stream a name (like the device name) and the IP address of the host.\\nYou may also have to go into settings via the menu button to assign a microphone.\\u003C/li\\u003E\\n\\u003Cli\\u003EOn Receptor, you assign an audio output. You may have to install VB cable to make a digital one.\\nThen click the stream name. The stream you made from Talkie should appear as an option.\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s it!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2139\\ufe0f \\u003Cstrong\\u003ENotes\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAs Receptor does not auto-start as it is not an installed program, you may want to add it as a\\nSunshine pre-launch command. Receptor will remember the last audio stream it was connected to.\\u003C/li\\u003E\\n\\u003Cli\\u003EYou may have to configure Windows/Game audio setting on the host to use the Microphone if you are using VB cable.\\u003C/li\\u003E\\n\\u003Cli\\u003ETo use Vban over the internet, you will also have to manually forward UDP Port 6980.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"spam\": false, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": false, \"removed\": false, \"unrepliable_reason\": null, \"approved\": false, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/LizardByte/comments/w03cku/welcome_to_lizardbyte/mtdyx3d/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_mtdyx3d\", \"created\": 1747785337.0, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"link_id\": \"t3_w03cku\", \"subreddit_name_prefixed\": \"r/LizardByte\", \"controversiality\": 0, \"top_awarded_type\": null, \"author_flair_background_color\": \"#ffd635\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}]}}}" }, "headers": { "Accept-Ranges": [ @@ -248,7 +162,7 @@ "5006" ], "Date": [ - "Wed, 01 May 2024 03:06:42 GMT" + "Tue, 20 May 2025 23:55:37 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -287,16 +201,16 @@ "-1" ], "set-cookie": [ - "session_tracker=fmihacdopjrqqrldfg.0.1714532801785.Z0FBQUFBQm1NYkhDS0Nqa3N0UXJEMTZndnhDWEh4QUMwd0hDS0dMNDh6WkpBNGdkbXh0a0ZPZXFSOVJjdkxLRmZWTnIybWxtTGFtc0V3bmZiZ1dXemR4aTJCdDd3cTA5bkZ3cXdQa3FldmFQd1g3NGdaenNZUmJNSGdWdXhTVFlZTHFPZFNsZ1p3WmE; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 05:06:42 GMT; secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785337261.Z0FBQUFBQm9MUlo1ZUxBYkVpS05EVzJJQWNjemdRMUVYRVBuSHpETGtvOG0tSUlMX2FJY2pOcU0yZTZxeDZQUHFIOU5IMTRGeGtodU1OZXBRQzZTVHVTRnBBczRZcGQ5VDNKbnB1UFhRNEdXaFFMbDNzdTRGbFo3akV3OTkzclpuRkxEUDhyb1UtbF8; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:37 GMT; secure" ], "x-ratelimit-remaining": [ - "946" + "937.0" ], "x-ratelimit-reset": [ - "199" + "262" ], "x-ratelimit-used": [ - "50" + "63" ], "x-ua-compatible": [ "IE=edge" diff --git a/tests/fixtures/cassettes/test_process_submission.json b/tests/fixtures/cassettes/test_process_submission.json index b878370a..c1e31a02 100644 --- a/tests/fixtures/cassettes/test_process_submission.json +++ b/tests/fixtures/cassettes/test_process_submission.json @@ -1,7 +1,7 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T14:17:33", + "recorded_at": "2025-05-20T23:55:47", "request": { "body": { "encoding": "utf-8", @@ -21,19 +21,19 @@ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573052783.Z0FBQUFBQm1Nazc4MFBhTDdhc0xUdnNEdWlVZUpvMnFMTFFEenJPLXNTRDFPWjVBT05od292dk5DMkdtSDhhSDVNbjhiLUlSMzVDaGwwcXVGZm1CejhaZjF2dVpsZ2VyNXI3S2pJSzI2RVJfMVEzeG8ycDZEUHY1bGNJSzRBay1iRVhEZEZWMlhmYUc; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785347314.Z0FBQUFBQm9MUmFEQXl1b2twMFE0c1M4dTk2SUpFMUJEUklpWDM1YXdEQUdTWW41RnJ2MFI4d2ROdHlyMzZObzN4TmlTX0pqYnQ5NEtvM18xdkpTMUE2eXZtbkdic1djVDY1TWFka3ZnbmdyV1RRdGhaeEU4OVJ4cnFuVkpHODdaY1E0aUFETXY0OUw; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/user/tata_contreras/about/?raw_json=1" + "uri": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" }, "response": { "body": { "encoding": "UTF-8", - "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_tata_contreras\", \"header_img\": null, \"title\": \"\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://styles.redditmedia.com/t5_5wqhrj/styles/profileIcon_snoo1d6b7e76-f6c6-45b8-a511-e97299739aed-headshot.png?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=c5e39461caf91634b0583cc6f0e557874bba33f3\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/tata_contreras\", \"key_color\": \"\", \"name\": \"t5_5wqhrj\", \"is_default_banner\": true, \"url\": \"/user/tata_contreras/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": [380, 600], \"awardee_karma\": 0, \"id\": \"jwdeap93\", \"verified\": true, \"is_gold\": false, \"is_mod\": true, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://styles.redditmedia.com/t5_5wqhrj/styles/profileIcon_snoo1d6b7e76-f6c6-45b8-a511-e97299739aed-headshot.png?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=c5e39461caf91634b0583cc6f0e557874bba33f3\", \"hide_from_robots\": false, \"link_karma\": 5, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 5, \"accept_chats\": true, \"name\": \"tata_contreras\", \"created\": 1645752924.0, \"created_utc\": 1645752924.0, \"snoovatar_img\": \"https://i.redd.it/snoovatar/avatars/1d6b7e76-f6c6-45b8-a511-e97299739aed.png\", \"comment_karma\": 0, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": false, \"user_is_contributor\": false, \"banner_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileBanner_sgrof18cami21.png?width=1280\\u0026height=384\\u0026crop=1280:384,smart\\u0026s=9e0345ce351cd0ca8d7730d5f9ea81a372830313\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_ReenigneArcher\", \"header_img\": null, \"title\": \"Reenigne Archer\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/ReenigneArcher\", \"key_color\": \"\", \"name\": \"t5_wtkds\", \"is_default_banner\": false, \"url\": \"/user/ReenigneArcher/\", \"quarantine\": false, \"banner_size\": [1280, 384], \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"...\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": null, \"awardee_karma\": 0, \"id\": \"393wfkmy\", \"verified\": true, \"is_gold\": false, \"is_mod\": true, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"hide_from_robots\": true, \"link_karma\": 4444, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 9227, \"accept_chats\": true, \"name\": \"ReenigneArcher\", \"created\": 1550539666.0, \"created_utc\": 1550539666.0, \"snoovatar_img\": \"\", \"comment_karma\": 4783, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" }, "headers": { "Accept-Ranges": [ @@ -43,10 +43,10 @@ "keep-alive" ], "Content-Length": [ - "2103" + "2159" ], "Date": [ - "Wed, 01 May 2024 14:17:33 GMT" + "Tue, 20 May 2025 23:55:47 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -58,7 +58,7 @@ "snooserv" ], "Set-Cookie": [ - "session_tracker=hjgieqemmchoocirph.0.1714573053011.Z0FBQUFBQm1Nazc5QnZtNzNFM0x3QmZiYWJOUmw1cTgwRGJRNXZaZEh6dDRfVkY3WVRKMEwzLVBTbFNNSndvV0ExREtpSkI3SDVZVVZMSkJBWkwyaUZfazFhbGRYRWU3SzF6U1c2ZTNTSTd4TTJOeDJoenpyUkdLZ01va1oxOTY4b0RrbkRDU0RSU0o; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 16:17:33 GMT; secure; SameSite=None; Secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785347733.Z0FBQUFBQm9MUmFEQ2JoZVVNTnZveFdBS3ktWkFNUkdHNldLdEM4VElTVDVDb0I0azd6dGE5NXItQ2dHSU1FUzdYdl9pdUdMUkVaUndYa2QxLUJWcGhWeE1GVFItUXdlSGZXc0Y0NjVWWlZoQXV6TTdaSEZHbEhYdEcxdlB2UWY3UWVZcEN3UnE1MEQ; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:47 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -88,13 +88,126 @@ "-1" ], "x-ratelimit-remaining": [ - "938" + "934.0" ], "x-ratelimit-reset": [ - "147" + "252" ], "x-ratelimit-used": [ - "58" + "66" + ], + "x-robots-tag": [ + "noindex, nofollow" + ], + "x-ua-compatible": [ + "IE=edge" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" + } + }, + { + "recorded_at": "2025-05-20T23:55:48", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785347733.Z0FBQUFBQm9MUmFEQ2JoZVVNTnZveFdBS3ktWkFNUkdHNldLdEM4VElTVDVDb0I0azd6dGE5NXItQ2dHSU1FUzdYdl9pdUdMUkVaUndYa2QxLUJWcGhWeE1GVFItUXdlSGZXc0Y0NjVWWlZoQXV6TTdaSEZHbEhYdEcxdlB2UWY3UWVZcEN3UnE1MEQ; csv=2" + ], + "User-Agent": [ + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": false, \"user_is_contributor\": false, \"banner_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileBanner_sgrof18cami21.png?width=1280\\u0026height=384\\u0026crop=1280:384,smart\\u0026s=9e0345ce351cd0ca8d7730d5f9ea81a372830313\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_ReenigneArcher\", \"header_img\": null, \"title\": \"Reenigne Archer\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/ReenigneArcher\", \"key_color\": \"\", \"name\": \"t5_wtkds\", \"is_default_banner\": false, \"url\": \"/user/ReenigneArcher/\", \"quarantine\": false, \"banner_size\": [1280, 384], \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"...\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": null, \"awardee_karma\": 0, \"id\": \"393wfkmy\", \"verified\": true, \"is_gold\": false, \"is_mod\": true, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://styles.redditmedia.com/t5_wtkds/styles/profileIcon_7nkuulq2rhg81.jpg?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=eee4f856b194f594b59fa16478165137ce6e9ea8\", \"hide_from_robots\": true, \"link_karma\": 4444, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 9227, \"accept_chats\": true, \"name\": \"ReenigneArcher\", \"created\": 1550539666.0, \"created_utc\": 1550539666.0, \"snoovatar_img\": \"\", \"comment_karma\": 4783, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2159" + ], + "Date": [ + "Tue, 20 May 2025 23:55:48 GMT" + ], + "NEL": [ + "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" + ], + "Report-To": [ + "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "session_tracker=adhdnlqbpoljraclbh.0.1747785348003.Z0FBQUFBQm9MUmFFdHFJakh2UHVTZ19CQ2lTWXk5dEozaTdlME5vX2cwUW80NVpSVk4zYXFtNUFobncyTmdsNW9idUhmT1NzS0pjWUtDU081VjR5MHRtNENGMV81dlF0cmxFZjJWVjR3VENWVUROUE9uY1dxVHJ5c3F0aUN1RENjU2VXaFQyc01wRFU; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:48 GMT; secure; SameSite=None; Secure" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains" + ], + "Vary": [ + "accept-encoding, Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-store" + ], + "content-type": [ + "application/json; charset=UTF-8" + ], + "expires": [ + "-1" + ], + "x-ratelimit-remaining": [ + "933.0" + ], + "x-ratelimit-reset": [ + "252" + ], + "x-ratelimit-used": [ + "67" + ], + "x-robots-tag": [ + "noindex, nofollow" ], "x-ua-compatible": [ "IE=edge" @@ -104,7 +217,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/user/tata_contreras/about/?raw_json=1" + "url": "https://oauth.reddit.com/user/ReenigneArcher/about/?raw_json=1" } } ], diff --git a/tests/fixtures/cassettes/test_submission_loop.json b/tests/fixtures/cassettes/test_submission_loop.json index a606ac33..1122774e 100644 --- a/tests/fixtures/cassettes/test_submission_loop.json +++ b/tests/fixtures/cassettes/test_submission_loop.json @@ -1,7 +1,7 @@ { "http_interactions": [ { - "recorded_at": "2024-05-01T14:22:00", + "recorded_at": "2025-05-20T23:55:51", "request": { "body": { "encoding": "utf-8", @@ -21,10 +21,10 @@ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573318178.Z0FBQUFBQm1NbEFHcU1fZF85SU1DZDNBMjBWVkFjV2lrMlVYeHJVVFViSFlKenBnR2pFV0ZxWVFtQTAyQ3h6UERfbXpsdVdJLTdGeVJ4cGxiMjc4Yk5JT2RwWG5tRkVtTE1TdThKMmJWOG00a19oc3NkZklmNkxwRGdkbzktTzk2dEdJYm5OXzMwMnk; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785350156.Z0FBQUFBQm9MUmFHRVVxMVE1NHpFM3g4QkdSTFp1b2w0QTJJa3pZWktOSmducW5aZDRBblVfQ2VDSGJ6MURMTVRIUzEwU25xUzF6UHNiM2VOMm9WMDhwYkhkNFVBXzkzcVY4a3I1Z3YtcDFaOUluNzdJMmZDa1d1blh2UTJKQUZ0LUZkRHFSMlhMUjg; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", @@ -33,7 +33,7 @@ "response": { "body": { "encoding": "UTF-8", - "string": "{\"kind\": \"Listing\", \"data\": {\"after\": \"t3_10sfla4\", \"dist\": 100, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1713811647, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone. I was trying to make a setup with dual monitor work with sunshine. Sunshine does not support yet such setups. However what you can do, is run two instances of sunshine on parallel. You juste have to make sure the network ports used are different. Then you can configure each sunshine to stream one of the monitors (In the [https://localhost:\\u003CWEB UI PORT\\u003E/config#](https://localhost:47990/config#) page, in the \\\"Audio/Video\\\" section there is an \\\"Output Name\\\" field). \\nI have done both these things and it works perfectly. In my client computer, i run two instances of moonlight, and i connect each one to a different monitor by using the corresponding port.\\n\\nNow the issue i have is with audio. What happens is a conflict between my two instances. This results in audio streaming not working. In the sunshine console i have these messages that repeat indefinitely when both instances are streaming : \\nInfo: Reinitializing audio capture \\nInfo: Resetting sink to \\\\[virtual-Stereo{0.0.0.00000000}.{ce14e186-e053-48c7-b780-4fa5c9e5d0ee}\\\\] after default changed\\n\\nWhat i would like to do is completely disable audio streaming in one of the sunshine instances. That would resolve the audio conflict. In my client pc, one of the instances of moonlight would be responsible for playing audio, and the other one would only transmit the second screen.\\n\\nI was not able to acheive such result. I tried tweaking some parameters in the sunshine configuration ; mainely two parameters in \\\"Audio/Video\\\" Section that refers to audio output : \\n- Audio Sink \\n- Virtual Sink\\n\\nYou can use the tools\\\\\\\\audio-info.exe program located in the sunshine install folder to determine every audio device id (real or virtual)\\n\\nI tried putting a non existant ID in one of the sunshine instance, but it did not resolve the conflict. It seemed that sunshine still tries to pickup a default audio device if the given one does not exist.\\n\\nIf someone have an idea on what to do , or tried a simular setup, I would appreciate any help.\\n\\nPS : English is not my primary language, I hope my writing was not to hard to understand.\\n\\nEDIT : Correct typo\", \"author_fullname\": \"t2_anlups5kw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Disable audio streaming on sunshine.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1caih79\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1713811062.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone. I was trying to make a setup with dual monitor work with sunshine. Sunshine does not support yet such setups. However what you can do, is run two instances of sunshine on parallel. You juste have to make sure the network ports used are different. Then you can configure each sunshine to stream one of the monitors (In the \\u003Ca href=\\\"https://localhost:47990/config#\\\"\\u003Ehttps://localhost:\\u0026lt;WEB UI PORT\\u0026gt;/config#\\u003C/a\\u003E page, in the \\u0026quot;Audio/Video\\u0026quot; section there is an \\u0026quot;Output Name\\u0026quot; field).\\u003Cbr/\\u003E\\nI have done both these things and it works perfectly. In my client computer, i run two instances of moonlight, and i connect each one to a different monitor by using the corresponding port.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow the issue i have is with audio. What happens is a conflict between my two instances. This results in audio streaming not working. In the sunshine console i have these messages that repeat indefinitely when both instances are streaming :\\u003Cbr/\\u003E\\nInfo: Reinitializing audio capture\\u003Cbr/\\u003E\\nInfo: Resetting sink to [virtual-Stereo{0.0.0.00000000}.{ce14e186-e053-48c7-b780-4fa5c9e5d0ee}] after default changed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat i would like to do is completely disable audio streaming in one of the sunshine instances. That would resolve the audio conflict. In my client pc, one of the instances of moonlight would be responsible for playing audio, and the other one would only transmit the second screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI was not able to acheive such result. I tried tweaking some parameters in the sunshine configuration ; mainely two parameters in \\u0026quot;Audio/Video\\u0026quot; Section that refers to audio output :\\u003Cbr/\\u003E\\n- Audio Sink\\u003Cbr/\\u003E\\n- Virtual Sink\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou can use the tools\\\\audio-info.exe program located in the sunshine install folder to determine every audio device id (real or virtual)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried putting a non existant ID in one of the sunshine instance, but it did not resolve the conflict. It seemed that sunshine still tries to pickup a default audio device if the given one does not exist.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf someone have an idea on what to do , or tried a simular setup, I would appreciate any help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS : English is not my primary language, I hope my writing was not to hard to understand.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT : Correct typo\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1caih79\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Ecstatic-Caramel1032\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1caih79/disable_audio_streaming_on_sunshine/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1caih79/disable_audio_streaming_on_sunshine/\", \"subreddit_subscribers\": 876, \"created_utc\": 1713811062.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1714004322, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm having this same issue on my machine I have the latest drivers installed. Every time I disable this setting \\\"Allow the computer to turn off this device to save power\\\" disables \\\"Allow this device to wake the computer\\\" for my ethernet network card.\\n\\nThe only way for wake on lan to work is if this setting is enabled but when an extended amount of time has gone by the network card is powered off and the magic packets can not be received.\\n\\nAnyone fix this issue?\\n\\nIntel\\u00ae Ethernet Controller I225-V \\nDriver Version:\\u00a0[1.1.3.28](http://1.1.3.28) \\nDriver Date: 3/5/22 Not really sure where and how to update this using Intel Driver Assist for updates \\nMSI z690i Unify latest bios\", \"author_fullname\": \"t2_wx50x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wake on LAN working if PC is sleeping for extended period of time\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"user_reports_dismissed\": [[\"This is spam\", 1, false, false]], \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cac7q5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1713796065.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m having this same issue on my machine I have the latest drivers installed. Every time I disable this setting \\u0026quot;Allow the computer to turn off this device to save power\\u0026quot; disables \\u0026quot;Allow this device to wake the computer\\u0026quot; for my ethernet network card.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only way for wake on lan to work is if this setting is enabled but when an extended amount of time has gone by the network card is powered off and the magic packets can not be received.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone fix this issue?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIntel\\u00ae Ethernet Controller I225-V\\u003Cbr/\\u003E\\nDriver Version:\\u00a0\\u003Ca href=\\\"http://1.1.3.28\\\"\\u003E1.1.3.28\\u003C/a\\u003E\\u003Cbr/\\u003E\\nDriver Date: 3/5/22 Not really sure where and how to update this using Intel Driver Assist for updates\\u003Cbr/\\u003E\\nMSI z690i Unify latest bios\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": -1, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1cac7q5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"eastcoastninja\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1cac7q5/wake_on_lan_working_if_pc_is_sleeping_for/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1cac7q5/wake_on_lan_working_if_pc_is_sleeping_for/\", \"subreddit_subscribers\": 876, \"created_utc\": 1713796065.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone! \\n\\nI'm reaching out to you because I'm desperate regarding my issue with Sunshine and Moonlight. \\n\\nMy problem is as follows: When I connect another device to my computer, which has the latest version of Sunshine (23) on Ubuntu 23.10, the image only appears for a few seconds before freezing, and then after about 15 seconds, I get the error -1 on Moonlight. Since I had some errors in the logs related to HEVC, I tried to set the decoding to software only, but without success. I tried with both Wayland and Xorg, but no improvement. My graphics card is a Radeon 780m with a Ryzen 7 7840u, all up to date. Here are the logs I get, \\n\\nmany thanks: \\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't load cuda: -1\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Environment variable WAYLAND\\\\_DISPLAY has not been defined\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x58c6b9318c00\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x58c6b93af340\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x58c6b9318c00\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x58c6b93b6cc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x58c6b93b6880\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x58c6b93c8f40\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x58c6b9485800\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x58c6b9287100\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x58c6b9283b40\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x58c6b93e9440\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x797be428aac0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bec05da40\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be43807c0\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be4010ec0\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be43addc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be4387a40\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be431e700\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:06\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bbc1e3f40\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:06\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bbca10b40\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x797be407be80\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x797be4300700\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be42c5700\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be42cb440\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be43d6340\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be429e100\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be4086200\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be4013dc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be43343c0\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be4166340\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:25\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bb41e4cc0\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:25\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bb4a11000\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\", \"author_fullname\": \"t2_ru2zuz0f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The connection only works for a few seconds.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1c0rdv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1712770474.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m reaching out to you because I\\u0026#39;m desperate regarding my issue with Sunshine and Moonlight. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy problem is as follows: When I connect another device to my computer, which has the latest version of Sunshine (23) on Ubuntu 23.10, the image only appears for a few seconds before freezing, and then after about 15 seconds, I get the error -1 on Moonlight. Since I had some errors in the logs related to HEVC, I tried to set the decoding to software only, but without success. I tried with both Wayland and Xorg, but no improvement. My graphics card is a Radeon 780m with a Ryzen 7 7840u, all up to date. Here are the logs I get, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emany thanks: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t load cuda: -1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Environment variable WAYLAND_DISPLAY has not been defined\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [h264_vaapi @ 0x58c6b9318c00] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [h264_vaapi @ 0x58c6b93af340] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [hevc_vaapi @ 0x58c6b9318c00] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [hevc_vaapi @ 0x58c6b93b6cc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [av1_vaapi @ 0x58c6b93b6880] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [av1_vaapi @ 0x58c6b93c8f40] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [hevc_vaapi @ 0x58c6b9485800] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [hevc_vaapi @ 0x58c6b9287100] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [av1_vaapi @ 0x58c6b9283b40] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [av1_vaapi @ 0x58c6b93e9440] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [h264_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [h264_vaapi @ 0x797be428aac0] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [hevc_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [hevc_vaapi @ 0x797bec05da40] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [av1_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [av1_vaapi @ 0x797be43807c0] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [hevc_vaapi @ 0x797be4010ec0] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [hevc_vaapi @ 0x797be43addc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [av1_vaapi @ 0x797be4387a40] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [av1_vaapi @ 0x797be431e700] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:06]: Error: [hevc_vaapi @ 0x797bbc1e3f40] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:06]: Warning: [hevc_vaapi @ 0x797bbca10b40] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [h264_vaapi @ 0x797be407be80] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [h264_vaapi @ 0x797be4300700] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [hevc_vaapi @ 0x797be42c5700] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [hevc_vaapi @ 0x797be42cb440] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [av1_vaapi @ 0x797be43d6340] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [av1_vaapi @ 0x797be429e100] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [hevc_vaapi @ 0x797be4086200] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [hevc_vaapi @ 0x797be4013dc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [av1_vaapi @ 0x797be43343c0] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [av1_vaapi @ 0x797be4166340] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:25]: Error: [hevc_vaapi @ 0x797bb41e4cc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:25]: Warning: [hevc_vaapi @ 0x797bb4a11000] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1c0rdv5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Anthony_1980\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1c0rdv5/the_connection_only_works_for_a_few_seconds/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1c0rdv5/the_connection_only_works_for_a_few_seconds/\", \"subreddit_subscribers\": 876, \"created_utc\": 1712770474.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Right now I am using the monitor swapper which turns my main monitor off when I start a stream. I want to to use my main monitor for other stuff while streaming games to my client. Is this possible?\", \"author_fullname\": \"t2_i7l5smbm2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stream as a separate screen?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bqxjmu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1711740551.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERight now I am using the monitor swapper which turns my main monitor off when I start a stream. I want to to use my main monitor for other stuff while streaming games to my client. Is this possible?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1bqxjmu\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"mosfetparadox\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bqxjmu/stream_as_a_separate_screen/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1bqxjmu/stream_as_a_separate_screen/\", \"subreddit_subscribers\": 876, \"created_utc\": 1711740551.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"How to customize application order?\", \"author_fullname\": \"t2_tozze00q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to customize application order?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bj8equ\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1710922351.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to customize application order?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1bj8equ\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Only_Hard\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"subreddit_subscribers\": 876, \"created_utc\": 1710922351.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi,\\n\\nI put Sunshine zip in VirusTotal and it says it has W64.AIDetectMalware which is aTrojan.\\n\\nIs this real? \\nDid anyone get a virus?\", \"author_fullname\": \"t2_ivnrno1fw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VirusTotal W64.AIDetectMalware Trojan\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bfwgdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1710558820.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI put Sunshine zip in VirusTotal and it says it has W64.AIDetectMalware which is aTrojan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this real? \\nDid anyone get a virus?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1bfwgdt\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SandyCheeks888\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"subreddit_subscribers\": 876, \"created_utc\": 1710558820.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_z7vt67c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone know how to stop this from happening?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bcwlr3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"i.redd.it\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/xFftchskjjG2VCHNp67OJqOoRmoKaIWz2rzU9ifhLGc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1710248214.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/m9086stqhwnc1.png\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?auto=webp\\u0026s=c34f98fd48c1fb6eda9afdc1b20391170db51f95\", \"width\": 301, \"height\": 2067}, \"resolutions\": [{\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=04623b00618b47dfb080bc4dd25cacb234a7f18d\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a9421f92381d3a644fc27a8908c6a4174c4e34c8\", \"width\": 216, \"height\": 432}], \"variants\": {}, \"id\": \"J8IV7LdJ3dTVXoGP7jdqMLNwRgo7XlrHpU8kGRcG0dY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1bcwlr3\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"glass_needles\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_subscribers\": 876, \"created_utc\": 1710248214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I am using sunshine + moonlight to stream games from my windows pc to my iPad. The problem is that when I am connecting my joycns directly to the iPad, I get a bad input lag/delay. Is there something I can do to reduce it? People are playing on steamdecks and odins using the internal controller, do they also get noticeable input lag/delay? \\nThis is what I get from the statistics overlay:\\n\\n* FPS never drops below 59.99\\n* Frame drop is always at 0%\\n* Average network latency is 3ms\\n* Host processing latency min/max/avg 6.2/6.9/6.2\\n\\nI have a wifi 6 router and get around 500 Mbps down/up on both the client and host. I cant use ethernet.\", \"author_fullname\": \"t2_i7l5smbm2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to reduce input lag/delay when connecting controller directly to the client?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1b6xkbp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1709616637.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am using sunshine + moonlight to stream games from my windows pc to my iPad. The problem is that when I am connecting my joycns directly to the iPad, I get a bad input lag/delay. Is there something I can do to reduce it? People are playing on steamdecks and odins using the internal controller, do they also get noticeable input lag/delay?\\u003Cbr/\\u003E\\nThis is what I get from the statistics overlay:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFPS never drops below 59.99\\u003C/li\\u003E\\n\\u003Cli\\u003EFrame drop is always at 0%\\u003C/li\\u003E\\n\\u003Cli\\u003EAverage network latency is 3ms\\u003C/li\\u003E\\n\\u003Cli\\u003EHost processing latency min/max/avg 6.2/6.9/6.2\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI have a wifi 6 router and get around 500 Mbps down/up on both the client and host. I cant use ethernet.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1b6xkbp\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"mosfetparadox\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1b6xkbp/how_to_reduce_input_lagdelay_when_connecting/\", \"subreddit_subscribers\": 876, \"created_utc\": 1709616637.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello there.\\n\\nI'm going to install Sunshine on my home server, running a GTX 1080 in a few months.\\n\\nThe last time I tried it out, I ended up installing the Ubuntu GUI for it to work, as I was only experimenting.\\n\\nHowever, I'm more inclined, in case it's possible, to keep my server GUI-less.\\n\\nIs this possible? Or even an headless server would need to have the GUI for it to work.\\n\\nMy idea would be to set up a virtual display but I recently realized that it's likely going to need the GUI anyway. Therefore, I ask the question: is it possible to run sunshine on a server without any GUI?\\n\\n\\nThanks in advance!\", \"author_fullname\": \"t2_b63yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine on a no-GUI Server\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1b31w2a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1709217665.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to install Sunshine on my home server, running a GTX 1080 in a few months.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last time I tried it out, I ended up installing the Ubuntu GUI for it to work, as I was only experimenting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m more inclined, in case it\\u0026#39;s possible, to keep my server GUI-less.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Or even an headless server would need to have the GUI for it to work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy idea would be to set up a virtual display but I recently realized that it\\u0026#39;s likely going to need the GUI anyway. Therefore, I ask the question: is it possible to run sunshine on a server without any GUI?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1b31w2a\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"PeterShowFull\", \"discussion_type\": null, \"num_comments\": 15, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_subscribers\": 876, \"created_utc\": 1709217665.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm looking at a snappy remote desktop alternative but can't find in the docs anything about a headless setup where many users could start a remote desktop session. Is this supported in Sunshine?\", \"author_fullname\": \"t2_452qc27\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine as remote desktop for many users\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1b0hp04\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1708954644.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m looking at a snappy remote desktop alternative but can\\u0026#39;t find in the docs anything about a headless setup where many users could start a remote desktop session. Is this supported in Sunshine?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1b0hp04\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"jmakov\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_subscribers\": 876, \"created_utc\": 1708954644.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Would love some help regarding resolutions, 10bit color depth (and CRU tool?)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ato2ql\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 1, \"domain\": \"self.MoonlightStreaming\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_n1gqq5qk\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"MoonlightStreaming\", \"selftext\": \"Fresh Win 11 Pro install. Host is: 13700k, 4080, 32g ddr5. Samsung odyssey neo g75b monitor. Setting up sunshine and have an issue\\n\\nI stream at 4k 60hz. I really want to stream in 10bit color depth due to heavy color banding over moonlight. When I use HDMI on my monitor it works like a dummy plug, so I can turn it off. I can stream rgb 10bit color depth to my 3 channels with my monitor on. But when my monitor is off I can only stream at rgb 8bit color. (when set to 10bit the host switches to some super low funky resolution and then bounces back to usual when I turn on the host's monitor)\\n\\nI have used ddu and reinstalled my driver clean. I have the CRU tool and the ED writter tool but not sure if edid is the issue.\\n\\nWanted to ask the internet collective first. Any ideas?\", \"author_fullname\": \"t2_n1gqq5qk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Would love some help regarding resolutions, 10bit color depth (and CRU tool?)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/MoonlightStreaming\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ato1wi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1708239600.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.MoonlightStreaming\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFresh Win 11 Pro install. Host is: 13700k, 4080, 32g ddr5. Samsung odyssey neo g75b monitor. Setting up sunshine and have an issue\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI stream at 4k 60hz. I really want to stream in 10bit color depth due to heavy color banding over moonlight. When I use HDMI on my monitor it works like a dummy plug, so I can turn it off. I can stream rgb 10bit color depth to my 3 channels with my monitor on. But when my monitor is off I can only stream at rgb 8bit color. (when set to 10bit the host switches to some super low funky resolution and then bounces back to usual when I turn on the host\\u0026#39;s monitor)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have used ddu and reinstalled my driver clean. I have the CRU tool and the ED writter tool but not sure if edid is the issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWanted to ask the internet collective first. Any ideas?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3owbe\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"1ato1wi\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lashram32\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/MoonlightStreaming/comments/1ato1wi/would_love_some_help_regarding_resolutions_10bit/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/MoonlightStreaming/comments/1ato1wi/would_love_some_help_regarding_resolutions_10bit/\", \"subreddit_subscribers\": 7592, \"created_utc\": 1708239600.0, \"num_crossposts\": 2, \"media\": null, \"is_video\": false}], \"created\": 1708239676.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/MoonlightStreaming/comments/1ato1wi/would_love_some_help_regarding_resolutions_10bit/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ato2ql\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lashram32\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_1ato1wi\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ato2ql/would_love_some_help_regarding_resolutions_10bit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"/r/MoonlightStreaming/comments/1ato1wi/would_love_some_help_regarding_resolutions_10bit/\", \"subreddit_subscribers\": 876, \"created_utc\": 1708239676.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have to preface it by saying I'm on VMs on a Proxmox cluster, but successfully running things on a Ubuntu VM, and moving to Win11 VM because RetroArch (only use case for me) seems much better for Windows. Using exactly identical setting (and obviously hardware), on the Win11 setup I get errors in the config about no working encoder, \\\"Fatal: Couldn't find any working encoder\\\". Again, though, the same encoder is setup and working on the other VM but not working here.\\n\\nThe only thing I could think of is that the default drivers in Ubuntu are better than Windows and that's something impacting this, but that seems like a small stretch. Has anyone experienced this?\", \"author_fullname\": \"t2_e2zzs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moving from Ubuntu to Windows (same settings) Encoder Not Detected?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1allhd8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1707360940.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have to preface it by saying I\\u0026#39;m on VMs on a Proxmox cluster, but successfully running things on a Ubuntu VM, and moving to Win11 VM because RetroArch (only use case for me) seems much better for Windows. Using exactly identical setting (and obviously hardware), on the Win11 setup I get errors in the config about no working encoder, \\u0026quot;Fatal: Couldn\\u0026#39;t find any working encoder\\u0026quot;. Again, though, the same encoder is setup and working on the other VM but not working here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only thing I could think of is that the default drivers in Ubuntu are better than Windows and that\\u0026#39;s something impacting this, but that seems like a small stretch. Has anyone experienced this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1allhd8\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"slavename\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1allhd8/moving_from_ubuntu_to_windows_same_settings/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1allhd8/moving_from_ubuntu_to_windows_same_settings/\", \"subreddit_subscribers\": 876, \"created_utc\": 1707360940.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi folks,\\n\\nIs there a known issue with Intel Quicksync support on Alder Lark N Processors? I've tried multiple distros now. both in Wayland and Xorg and there is no option to use Intel Quicksync, only VA-API which doesn't appear to working. Stream us unusable in all cases, with a constant low network connection mesage. though I'm hard wired on a gigabit LAN.\\n\\nI should note that this works perfectly on the same machine with Windows 10/11 and Intel Quicksync is present.\\n\\nIs there a setting I need to change to get this to work? I am currently using Linux mint 21.3. I have tried both Wayland and Xorg. Many thanks!\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_apa87avj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine Intel N100 - No Quicksync Available\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ak59mh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1707208900.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a known issue with Intel Quicksync support on Alder Lark N Processors? I\\u0026#39;ve tried multiple distros now. both in Wayland and Xorg and there is no option to use Intel Quicksync, only VA-API which doesn\\u0026#39;t appear to working. Stream us unusable in all cases, with a constant low network connection mesage. though I\\u0026#39;m hard wired on a gigabit LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI should note that this works perfectly on the same machine with Windows 10/11 and Intel Quicksync is present.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a setting I need to change to get this to work? I am currently using Linux mint 21.3. I have tried both Wayland and Xorg. Many thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ak59mh\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Cheapskate2020\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_subscribers\": 876, \"created_utc\": 1707208900.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Thanks for writing this software. It is a blessing to have high quality software like this, a responsive developer who actively takes PRs and addresses bugs, and proactively develops for the user in mind.\\n\\nI had no issues getting set up, the software works perfectly.\\n\\nJust wanted to say, it's really impressive and I appreciate it.\\n\\n\\\\-- a user\", \"author_fullname\": \"t2_tv4zpyx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thank you\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1agtlvi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.93, \"ignore_reports\": false, \"ups\": 21, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 21, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1706843046.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for writing this software. It is a blessing to have high quality software like this, a responsive developer who actively takes PRs and addresses bugs, and proactively develops for the user in mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had no issues getting set up, the software works perfectly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust wanted to say, it\\u0026#39;s really impressive and I appreciate it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-- a user\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1agtlvi\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"billgytes\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1agtlvi/thank_you/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"subreddit_subscribers\": 876, \"created_utc\": 1706843046.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"hey! i'm trying to use sunshins, but it keeps saying i have gamestream enabled?\", \"author_fullname\": \"t2_it1fwgkn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"gamestream enabled?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19f3nqb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1706166811.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehey! i\\u0026#39;m trying to use sunshins, but it keeps saying i have gamestream enabled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19f3nqb\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"myraisbeautiful\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"subreddit_subscribers\": 876, \"created_utc\": 1706166811.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi all, I played games remotely with a friend by sunshine several days ago. Now he can take direct control of my computer without my permission, which is very unsafe for me. Can I delete a paired device? I can't find where to do it.\", \"author_fullname\": \"t2_9jg2qneq3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove a paired device\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19b4bsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705728355.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I played games remotely with a friend by sunshine several days ago. Now he can take direct control of my computer without my permission, which is very unsafe for me. Can I delete a paired device? I can\\u0026#39;t find where to do it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19b4bsw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Commercial-Click-652\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_subscribers\": 876, \"created_utc\": 1705728355.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have recently upgraded my phone from Asus ROG Phone 3 to Asus ROG Phones 6. The Sunshine + Moonlight used to work flawlessly on ROG 3. With the exact same setup and settings stream works terrible on ROG 6. Video is delayed couple of seconds than it suddenly speeds up and slows down again. Controls are unresponsive. Steam link doesn't seem to have any problems but I prefer Moonlight because of gyro support. Any tips?\", \"author_fullname\": \"t2_7wr39euq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine + Moonlight unplayable after phone upgrade.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19ah3zp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705664118.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have recently upgraded my phone from Asus ROG Phone 3 to Asus ROG Phones 6. The Sunshine + Moonlight used to work flawlessly on ROG 3. With the exact same setup and settings stream works terrible on ROG 6. Video is delayed couple of seconds than it suddenly speeds up and slows down again. Controls are unresponsive. Steam link doesn\\u0026#39;t seem to have any problems but I prefer Moonlight because of gyro support. Any tips?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19ah3zp\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"1986_Summer_Fire\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19ah3zp/sunshine_moonlight_unplayable_after_phone_upgrade/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19ah3zp/sunshine_moonlight_unplayable_after_phone_upgrade/\", \"subreddit_subscribers\": 876, \"created_utc\": 1705664118.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"i meant from my amd pc to my laptop\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_a0crgczl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"can i use sunshine to stresm games from my laptop to my amd pc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_198c1zw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705434656.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei meant from my amd pc to my laptop\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"198c1zw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"RightGuide1611\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"subreddit_subscribers\": 876, \"created_utc\": 1705434656.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, I'm encountering a low fps issue (10-20 fps) and I have a message telling me that the host \\\"can't decode hevc\\\" in my Moonlight client, which is obviously not the case. I tried an idea from Reddit, but it does not work (switching from ultra low latency to low latency). Did someone know how to proceed ?\\n\\nThanks in advance\", \"author_fullname\": \"t2_egw3bzoi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Low FPS AMD GPU\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_191h8vd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.5, \"ignore_reports\": false, \"ups\": 0, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 0, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704705724.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m encountering a low fps issue (10-20 fps) and I have a message telling me that the host \\u0026quot;can\\u0026#39;t decode hevc\\u0026quot; in my Moonlight client, which is obviously not the case. I tried an idea from Reddit, but it does not work (switching from ultra low latency to low latency). Did someone know how to proceed ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"191h8vd\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"RAPHCVR\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/191h8vd/low_fps_amd_gpu/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/191h8vd/low_fps_amd_gpu/\", \"subreddit_subscribers\": 876, \"created_utc\": 1704705724.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Just installed shinshine via macports followed [this](https://downthecrop.xyz/blog/how-to-install-sunshine-on-macos/) guide\\n\\nWhen I start Sunshine:\\n\\n tomi@Tomis-MacBook-Pro ~ % Sunshine\\n [2024:01:06:15:06:28]: Info: Sunshine version: 0.21.0\\n [2024:01:06:15:06:28]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n [2024:01:06:15:06:28]: Info: Trying encoder [videotoolbox]\\n [2024:01:06:15:06:28]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:28]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:28]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:28]: Warning: [h264_videotoolbox @ 0x7f9112c29580] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmax option. Value ignored.\\n 2024-01-06 15:06:29.246 Sunshine[6335:55060] max_dpb_size: 4 number_long_term_ref: 2 number_short_term_ref: 1\\n 2024-01-06 15:06:29.248 Sunshine[6335:55060] frame 0: key frame requested\\n 2024-01-06 15:06:29.268 Sunshine[6335:55060] frame 1: key frame requested\\n 2024-01-06 15:06:29.282 Sunshine[6335:55060] frame 2: key frame requested\\n 2024-01-06 15:06:29.295 Sunshine[6335:55060] frame 3: key frame requested\\n 2024-01-06 15:06:29.303 Sunshine[6335:55060] frame 4: key frame requested\\n [2024:01:06:15:06:29]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:29]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:29]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:30]: Warning: [hevc_videotoolbox @ 0x7f9112e55e80] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmax option. Value ignored.\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Error: Couldn't open [av1_videotoolbox]\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Error: Couldn't open [av1_videotoolbox]\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 709]\\n [2024:01:06:15:06:31]: Info: Color depth: 10-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Warning: [hevc_videotoolbox @ 0x7f9113a38500] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmax option. Value ignored.\\n\\nand it halts for while until I manually close the tab, my browser cannot open the local host as well.\\n\\nI have a intel i5-8279u 13 inch four thunderbolt mbp from 2019, I bet it is supported.\\n\\nAny help will be appiciated! \", \"author_fullname\": \"t2_77yd9w74\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine on MacOS: localhost refused to connect\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1900v2o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704550485.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed shinshine via macports followed \\u003Ca href=\\\"https://downthecrop.xyz/blog/how-to-install-sunshine-on-macos/\\\"\\u003Ethis\\u003C/a\\u003E guide\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I start Sunshine:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etomi@Tomis-MacBook-Pro ~ % Sunshine\\n[2024:01:06:15:06:28]: Info: Sunshine version: 0.21.0\\n[2024:01:06:15:06:28]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n[2024:01:06:15:06:28]: Info: Trying encoder [videotoolbox]\\n[2024:01:06:15:06:28]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:28]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:28]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:28]: Warning: [h264_videotoolbox @ 0x7f9112c29580] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmax option. Value ignored.\\n2024-01-06 15:06:29.246 Sunshine[6335:55060] max_dpb_size: 4 number_long_term_ref: 2 number_short_term_ref: 1\\n2024-01-06 15:06:29.248 Sunshine[6335:55060] frame 0: key frame requested\\n2024-01-06 15:06:29.268 Sunshine[6335:55060] frame 1: key frame requested\\n2024-01-06 15:06:29.282 Sunshine[6335:55060] frame 2: key frame requested\\n2024-01-06 15:06:29.295 Sunshine[6335:55060] frame 3: key frame requested\\n2024-01-06 15:06:29.303 Sunshine[6335:55060] frame 4: key frame requested\\n[2024:01:06:15:06:29]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:29]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:29]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:30]: Warning: [hevc_videotoolbox @ 0x7f9112e55e80] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmax option. Value ignored.\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Error: Couldn\\u0026#39;t open [av1_videotoolbox]\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Error: Couldn\\u0026#39;t open [av1_videotoolbox]\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 709]\\n[2024:01:06:15:06:31]: Info: Color depth: 10-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Warning: [hevc_videotoolbox @ 0x7f9113a38500] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmax option. Value ignored.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand it halts for while until I manually close the tab, my browser cannot open the local host as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a intel i5-8279u 13 inch four thunderbolt mbp from 2019, I bet it is supported.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help will be appiciated! \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1900v2o\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Ok-Internal9317\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"subreddit_subscribers\": 876, \"created_utc\": 1704550485.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"As the title says, sunshine(AppImage version) is simply refusing to work on my Void+ SwayWM setup. The machine is intel+Nvidia Hybrid GPU.\\nI set up udev rules and setcap before running sunshine. \\nIt works well on my other linux distros set up on the same machine, such as Linux Mint, Void Linux XFCE etc.\\n\\n\\nThe problem is \\\"Fatal: No working encoder found\\\" error message is blocking me from using sunshine. But OBS and handbrake is working fine. I have no clue what is missing there.\\n\\nIs this because of wayland sway compositor or am I missing some environment variables or something? \\n\\n(I can provide other info as needed) \\n\\nProcedure of non working Void+Sway setup. \\n1) installed the distro and updated the software. \\n2) Installed nvidia, elogind, dbus, Network Manager, polkitd (+mate-polkit), seatd, intel-media-driver, sway. etc. \\n\\n3) setup the sway as needed and. \\n\\n4) boom sunshine on sway just not working. \", \"author_fullname\": \"t2_u49xfx1r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help! Sun Shine on Sway (Not working)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18yb5hj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1704368713.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704368384.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says, sunshine(AppImage version) is simply refusing to work on my Void+ SwayWM setup. The machine is intel+Nvidia Hybrid GPU.\\nI set up udev rules and setcap before running sunshine.\\u003Cbr/\\u003E\\nIt works well on my other linux distros set up on the same machine, such as Linux Mint, Void Linux XFCE etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is \\u0026quot;Fatal: No working encoder found\\u0026quot; error message is blocking me from using sunshine. But OBS and handbrake is working fine. I have no clue what is missing there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this because of wayland sway compositor or am I missing some environment variables or something? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I can provide other info as needed) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProcedure of non working Void+Sway setup.\\u003Cbr/\\u003E\\n1) installed the distro and updated the software.\\u003Cbr/\\u003E\\n2) Installed nvidia, elogind, dbus, Network Manager, polkitd (+mate-polkit), seatd, intel-media-driver, sway. etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3) setup the sway as needed and. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4) boom sunshine on sway just not working. \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18yb5hj\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"myothk\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"subreddit_subscribers\": 876, \"created_utc\": 1704368384.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi team,\\n\\nI believe I followed the install for the MacOS Portfile correctly and Moonlight got me access to my MacOSSunshine service, Everything seems normal except when I try and click anything or right-click anything, the click actions aren't going through. As I type this I wanted to also try if the keyboard input is working but also no luck. \\n\\n\\u0026#x200B;\\n\\nI'm using Moonlight on my iPad Air 5th Gen and using the Magic keyboard for mouse and keyboard input. I set up my PC in the same way and works perfectly. Inputs all work. Is this a known issue? \", \"author_fullname\": \"t2_7xuyyjoi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moonlight on MacOS - Can't submit mouse input ( click or right click )\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18tumrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703876670.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi team,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI believe I followed the install for the MacOS Portfile correctly and Moonlight got me access to my MacOSSunshine service, Everything seems normal except when I try and click anything or right-click anything, the click actions aren\\u0026#39;t going through. As I type this I wanted to also try if the keyboard input is working but also no luck. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Moonlight on my iPad Air 5th Gen and using the Magic keyboard for mouse and keyboard input. I set up my PC in the same way and works perfectly. Inputs all work. Is this a known issue? \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18tumrw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"AlphabeticalMistery\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"subreddit_subscribers\": 876, \"created_utc\": 1703876670.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I've noticed that my graphics card (RTX 3080) consumes too much power when streaming. I stream in 1080p/60fps with the default Sunshine settings. Of course, before someone mentions that only the VID-encoding chip is active and the graphics card is not otherwise stressed, that's not the case in this situation. I have a GPU power draw of almost 100W (with nothing else running in the background).\\n\\nThe graphics card has a core load of 32% and boosts consistently to 1800MHz in my case. It also gets appropriately warm and stops at 60 degrees when the fans kick in. I had the same issue some time ago and was able to fix it by interrupting and restarting the stream several times. After the restarts, the GPU core jumped back to idle (210MHz) and consumed less than 40 watts (GPU power draw). But unfortunately, that doesn't help anymore.\\n\\nCan anyone confirm this behavior? I'm using the latest Sunshine/Moonlight windows version and the latest Nvidia driver.\\n\\nThe issue seems to have already been reported in the Sunshine GitRepo: [https://github.com/LizardByte/Sunshine/issues/1908](https://github.com/LizardByte/Sunshine/issues/1908).\\n\\nQuote:\\n\\n*\\\"The GPU Sunshine is running on fails to downclock sufficiently while a client is connected to the stream. It becomes energy inefficient, and causes much more heat and power usage than necessary. This is even when GPU usage (including VID usage) by the stream is extremely low so low clocks would be able to perform just fine. You can't just relax and leave the stream on in the background because of the reasons I mentioned, plus the fan staying on at a high setting as a consequence.*\\n\\n*I am not 100% sure what causes it, but I hypothesize it's related to the feature implemented by* [*#1308*](https://github.com/LizardByte/Sunshine/pull/1308)*. The pull request noted that this feature intentionally keeps the clocks high. While it's understandable that some users prefer this feature because of the claimed latency improvements, others prefer for the GPU to be able to downclock as much as possible.*\\n\\n***I fail to see any option to toggle it on/off. It should be made an option. And given these issues, it probably shouldn't be the default.****\\\"* \\n\\n\\n... is there a way to deactivate the functions mentioned in #1308?\", \"author_fullname\": \"t2_77k54e2b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GPU Power Draw to high when streaming (Moonlight+Sunshine)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18tocp4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703860158.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed that my graphics card (RTX 3080) consumes too much power when streaming. I stream in 1080p/60fps with the default Sunshine settings. Of course, before someone mentions that only the VID-encoding chip is active and the graphics card is not otherwise stressed, that\\u0026#39;s not the case in this situation. I have a GPU power draw of almost 100W (with nothing else running in the background).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe graphics card has a core load of 32% and boosts consistently to 1800MHz in my case. It also gets appropriately warm and stops at 60 degrees when the fans kick in. I had the same issue some time ago and was able to fix it by interrupting and restarting the stream several times. After the restarts, the GPU core jumped back to idle (210MHz) and consumed less than 40 watts (GPU power draw). But unfortunately, that doesn\\u0026#39;t help anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan anyone confirm this behavior? I\\u0026#39;m using the latest Sunshine/Moonlight windows version and the latest Nvidia driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe issue seems to have already been reported in the Sunshine GitRepo: \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/issues/1908\\\"\\u003Ehttps://github.com/LizardByte/Sunshine/issues/1908\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuote:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The GPU Sunshine is running on fails to downclock sufficiently while a client is connected to the stream. It becomes energy inefficient, and causes much more heat and power usage than necessary. This is even when GPU usage (including VID usage) by the stream is extremely low so low clocks would be able to perform just fine. You can\\u0026#39;t just relax and leave the stream on in the background because of the reasons I mentioned, plus the fan staying on at a high setting as a consequence.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI am not 100% sure what causes it, but I hypothesize it\\u0026#39;s related to the feature implemented by\\u003C/em\\u003E \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/pull/1308\\\"\\u003E\\u003Cem\\u003E#1308\\u003C/em\\u003E\\u003C/a\\u003E\\u003Cem\\u003E. The pull request noted that this feature intentionally keeps the clocks high. While it\\u0026#39;s understandable that some users prefer this feature because of the claimed latency improvements, others prefer for the GPU to be able to downclock as much as possible.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EI fail to see any option to toggle it on/off. It should be made an option. And given these issues, it probably shouldn\\u0026#39;t be the default.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E\\u0026quot;\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... is there a way to deactivate the functions mentioned in #1308?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?auto=webp\\u0026s=344ae4df64a5701e3ec4aea1d8b5e2a6de1d31d1\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=776625694570c0468bed09251a4a5ab28f5cf758\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f169b2355bad7116ad9082442bc952f60cfb829a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=eb7c9f4a587c9593c6c213432dc33cf28722ff8d\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1275b906211ca188936efe2c1febd977a893f7e5\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=301c87da2ac055a0c4608541f5e3a44637f42213\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e5d342185b050fcd59e4b1405cf4c8554a1d7791\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"5osUvKp0AHlk5N7TSoKJjLfNJ6qpJlq50vMa-DP5BLE\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18tocp4\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"One-Stress-6734\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"subreddit_subscribers\": 876, \"created_utc\": 1703860158.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Just discovered sunshine and been trying it out on Windows, Mac and Linux. Each one having major issues. Debian bookworm has been the most usable platform so far, even though it complains that it's not actually working saying fatel error and can't find nvenc. \\nAnyway, this post is about Windows . I've installed it on Windows 10, both a physical machine and a hyperv machine with a partitioned nvidia 1070. On both windows machines, the first time I set it up it allows me to connect to the desktop the first time, but after that it only connects briefly with a black screen and then says the ports on the firewall aren't open (moonlight client) , I've run the moonlight client on multiple platforms with the same result. It works the first time (on the first install of the server not after switching clients) , but then will not stream the desktop anymore. The client does actually succesfully connect as sunshine lets me know. I can however launch steam if it's installed and then exit to the desktop, but #1 I don't want steam on all my devices, and #2 too many extra steps. Any idea's ?\\n\\n \\n\", \"author_fullname\": \"t2_5ge0qxza\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Desktop cannot reconnect after fist connection.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18q8v56\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703468823.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust discovered sunshine and been trying it out on Windows, Mac and Linux. Each one having major issues. Debian bookworm has been the most usable platform so far, even though it complains that it\\u0026#39;s not actually working saying fatel error and can\\u0026#39;t find nvenc.\\u003Cbr/\\u003E\\nAnyway, this post is about Windows . I\\u0026#39;ve installed it on Windows 10, both a physical machine and a hyperv machine with a partitioned nvidia 1070. On both windows machines, the first time I set it up it allows me to connect to the desktop the first time, but after that it only connects briefly with a black screen and then says the ports on the firewall aren\\u0026#39;t open (moonlight client) , I\\u0026#39;ve run the moonlight client on multiple platforms with the same result. It works the first time (on the first install of the server not after switching clients) , but then will not stream the desktop anymore. The client does actually succesfully connect as sunshine lets me know. I can however launch steam if it\\u0026#39;s installed and then exit to the desktop, but #1 I don\\u0026#39;t want steam on all my devices, and #2 too many extra steps. Any idea\\u0026#39;s ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18q8v56\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"opUserZero\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_subscribers\": 876, \"created_utc\": 1703468823.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1702595067, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, I need some help with sending a magic packet over the internet. I\\u2019m able to successfully send magic packet locally. I\\u2019m using noip linked to a static dhcp ip and can send magic packets locally with no issues but once on a cellular signal it stops working.\\n\\nSetup: \\nWolow iOS: [https://wolow.site/ios?modalRef=wolowTutorial#about](https://wolow.site/ios?modalRef=wolowTutorial#about) \\nNoip (hostname linked to dhcp ip/static ip): [https://www.noip.com](https://www.noip.com/) \\ndhcp static ip google nest pro wifi: [https://support.google.com/googlenest/answer/6274660?hl=en](https://support.google.com/googlenest/answer/6274660?hl=en) \\nport: 7,9, random unused port (all tested locally working) \\nMac address: target pc \\nZero tier vpn: not sure if any interference is being cause but this is working to connect to the network off local when the PC is running not facing issues.\\ud83d\\udcf7 \\n\", \"author_fullname\": \"t2_wx50x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need help WOL over the internet (WAN)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18ihw99\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702585838.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I need some help with sending a magic packet over the internet. I\\u2019m able to successfully send magic packet locally. I\\u2019m using noip linked to a static dhcp ip and can send magic packets locally with no issues but once on a cellular signal it stops working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetup:\\u003Cbr/\\u003E\\nWolow iOS: \\u003Ca href=\\\"https://wolow.site/ios?modalRef=wolowTutorial#about\\\"\\u003Ehttps://wolow.site/ios?modalRef=wolowTutorial#about\\u003C/a\\u003E\\u003Cbr/\\u003E\\nNoip (hostname linked to dhcp ip/static ip): \\u003Ca href=\\\"https://www.noip.com/\\\"\\u003Ehttps://www.noip.com\\u003C/a\\u003E\\u003Cbr/\\u003E\\ndhcp static ip google nest pro wifi: \\u003Ca href=\\\"https://support.google.com/googlenest/answer/6274660?hl=en\\\"\\u003Ehttps://support.google.com/googlenest/answer/6274660?hl=en\\u003C/a\\u003E\\u003Cbr/\\u003E\\nport: 7,9, random unused port (all tested locally working)\\u003Cbr/\\u003E\\nMac address: target pc\\u003Cbr/\\u003E\\nZero tier vpn: not sure if any interference is being cause but this is working to connect to the network off local when the PC is running not facing issues.\\ud83d\\udcf7 \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?auto=webp\\u0026s=471d3d093e660681f99a7f89c684cecf6fc184e2\", \"width\": 1200, \"height\": 627}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c02a256b5dfcbd0654ef11ae79e4e8489e20b904\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=53781340cc0bf1dfa4e1d80542a5307188315494\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2cb7f3b2793c5982717ada16b75c85c205619be4\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=37ef925b2ab859d72382d49a32189876bd407dce\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=49d429d5cdbdec8840f5c51097c09554c3338791\", \"width\": 960, \"height\": 501}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0370fa848d997983f297a19a6bb3b1f7e05c349c\", \"width\": 1080, \"height\": 564}], \"variants\": {}, \"id\": \"-xdFmez__sgk0ksKiWGT1EdpQPwDKpBy1_G7-ZM5tsQ\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18ihw99\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"eastcoastninja\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"subreddit_subscribers\": 876, \"created_utc\": 1702585838.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi everyone!\\n\\nI recently moved to a new place and tried setting up Sunshine to stream to my NVidia shield. Previously, I had no issues doing so, and have tried so many things today to try and get passed these errors, but am coming up empty. I'm able to connect to the web configuration. I've tried forwarding ports, checking firewalls, etc.\\n\\nAny help or advice on next steps would be greatly appreciated. Please see below for the errors in question.\\n\\nThanks in advance!\\n\\n\\u0026#x200B;\\n\\nEdit\\\\*\\\\* Post title should read \\\"Sunshine launching Errors\\\".\\n\\nhttps://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026format=png\\u0026auto=webp\\u0026s=4e916ae8bc5f5258167d0abd66d49b438f321f91\", \"author_fullname\": \"t2_efkzm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine install: Errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 39, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"vsh3s1j5hq5c1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 30, \"x\": 108, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=db2f9ddc245319cc2a802fe2ca44e79415283281\"}, {\"y\": 61, \"x\": 216, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ef144719f99d4d269a7d9bbc878f325dc8791a13\"}, {\"y\": 90, \"x\": 320, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c4c66cedc9ca8eb5e8a21a993d3df88e8dac90d1\"}, {\"y\": 181, \"x\": 640, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=36bb762ab8571220a0065d699caac99b873754aa\"}], \"s\": {\"y\": 202, \"x\": 711, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026format=png\\u0026auto=webp\\u0026s=4e916ae8bc5f5258167d0abd66d49b438f321f91\"}, \"id\": \"vsh3s1j5hq5c1\"}}, \"name\": \"t3_18g4s64\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/joKc3I_SfwDu4VmPlXWBJXkN0m537lf4UJ6dYwfzZnQ.jpg\", \"edited\": 1702331280.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702330160.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI recently moved to a new place and tried setting up Sunshine to stream to my NVidia shield. Previously, I had no issues doing so, and have tried so many things today to try and get passed these errors, but am coming up empty. I\\u0026#39;m able to connect to the web configuration. I\\u0026#39;ve tried forwarding ports, checking firewalls, etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help or advice on next steps would be greatly appreciated. Please see below for the errors in question.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit** Post title should read \\u0026quot;Sunshine launching Errors\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=4e916ae8bc5f5258167d0abd66d49b438f321f91\\\"\\u003Ehttps://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=4e916ae8bc5f5258167d0abd66d49b438f321f91\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18g4s64\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Gozzylord\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"subreddit_subscribers\": 876, \"created_utc\": 1702330160.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Trying to setup Sunshine + Moonlight to connect my Pixel 8 Pro to my gaming PC (RTX 3090 Ti) but when I open \\\\`Desktop\\\\` or \\\\`Steam\\\\` it flashes a black screen and puts me back to the game selection. When I pick it, I have an option to resume session but the same thing happens over and over. Steam does open on my desktop and I get a small notification that the stream has started. I've verified ports are open and working, manually set audio sink and virtual audio devices, as well as forcing 1080p/120fps.\\n\\nThe logs reference that the GPU doesnt support NvEnc, which is odd?\\n\\n\\u0026#x200B;\\n\\nHere's the Sunshine log:\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Opened undo file from previous improper termination\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Restored OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT for base profile\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Restored global profile settings from undo file - deleting the file\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: No need to modify application profile settings\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Changed OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT to OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT\\\\_PREFER\\\\_ENABLED for base profile\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Sunshine version: 0.21.0\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Compiling shaders...\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: System tray created\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Compiled shaders\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Trying encoder \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: ddprobe.exe \\\\[1\\\\] \\\\[\\\\\\\\\\\\\\\\.\\\\\\\\DISPLAY1\\\\] returned: 0x00000000\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Set GPU preference: 1\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: NvEnc: created encoder P1 two-pass rfi\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: NvEnc: created encoder P1 two-pass rfi\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Error: NvEnc: encoding format is not supported by the gpu\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Error: NvEnc: encoding format is not supported by the gpu\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: HDR color coding \\\\[Rec. 2020 + SMPTE 2084 PQ\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color depth: 10-bit\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: NvEnc: created encoder P1 10-bit two-pass rfi\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Found H.264 encoder: h264\\\\_nvenc \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Found HEVC encoder: hevc\\\\_nvenc \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Configuration UI available at \\\\[[https://localhost:47990](https://localhost:47990)\\\\]\\n\\n\\\\[2023:12:09:10:01:53\\\\]: Info: Registered Sunshine mDNS service\\n\\n\\\\[2023:12:09:10:01:56\\\\]: Info: Completed UPnP port mappings to [192.168.2.112](https://192.168.2.112) via [http://192.168.2.1:43797/rootDesc.xml](http://192.168.2.1:43797/rootDesc.xml)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_l4mf5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Get Pixel 8 Pro to Open a Stream\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18effo6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702134303.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrying to setup Sunshine + Moonlight to connect my Pixel 8 Pro to my gaming PC (RTX 3090 Ti) but when I open `Desktop` or `Steam` it flashes a black screen and puts me back to the game selection. When I pick it, I have an option to resume session but the same thing happens over and over. Steam does open on my desktop and I get a small notification that the stream has started. I\\u0026#39;ve verified ports are open and working, manually set audio sink and virtual audio devices, as well as forcing 1080p/120fps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe logs reference that the GPU doesnt support NvEnc, which is odd?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s the Sunshine log:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Opened undo file from previous improper termination\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Restored OGL_CPL_PREFER_DXPRESENT for base profile\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Restored global profile settings from undo file - deleting the file\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: No need to modify application profile settings\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Changed OGL_CPL_PREFER_DXPRESENT to OGL_CPL_PREFER_DXPRESENT_PREFER_ENABLED for base profile\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Sunshine version: 0.21.0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Compiling shaders...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: System tray created\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Compiled shaders\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Trying encoder [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: ddprobe.exe [1] [\\\\\\\\.\\\\DISPLAY1] returned: 0x00000000\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Set GPU preference: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: NvEnc: created encoder P1 two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: NvEnc: created encoder P1 two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Error: NvEnc: encoding format is not supported by the gpu\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Error: NvEnc: encoding format is not supported by the gpu\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: HDR color coding [Rec. 2020 + SMPTE 2084 PQ]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color depth: 10-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: NvEnc: created encoder P1 10-bit two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: // Ignore any errors mentioned above, they are not relevant. //\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Found H.264 encoder: h264_nvenc [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Found HEVC encoder: hevc_nvenc [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Configuration UI available at [\\u003Ca href=\\\"https://localhost:47990\\\"\\u003Ehttps://localhost:47990\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:53]: Info: Registered Sunshine mDNS service\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:56]: Info: Completed UPnP port mappings to \\u003Ca href=\\\"https://192.168.2.112\\\"\\u003E192.168.2.112\\u003C/a\\u003E via \\u003Ca href=\\\"http://192.168.2.1:43797/rootDesc.xml\\\"\\u003Ehttp://192.168.2.1:43797/rootDesc.xml\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18effo6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Kolmain\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18effo6/cant_get_pixel_8_pro_to_open_a_stream/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18effo6/cant_get_pixel_8_pro_to_open_a_stream/\", \"subreddit_subscribers\": 876, \"created_utc\": 1702134303.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_arlmwuod\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a guide to setup Retroarcher on Plex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18dtoay\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702061407.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18dtoay\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Illustrious_Ad_3847\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"subreddit_subscribers\": 876, \"created_utc\": 1702061407.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"i want to stream local coop games or play on emulators with my friend on xbox\\n\\nsadly both zerotier \\u0026 Tailscale require an app to be connected in the same vpn network\\n\\nwe don't know how to do it in xbox if there is another way to use them other than the app,\\n\\nalso i enabled UPnp in sunshine didn't work so i used the moonlight test and showed that there is closed ports even tho sunshine should open them auto i am kinda confused here also it showed that UPnp might be closed in the router so i went in there and there is a tab for it but it's blank just shows the header help );\", \"author_fullname\": \"t2_4ixdm9xy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"xbox s/s to pc outside the network\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1868tkm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1701210456.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei want to stream local coop games or play on emulators with my friend on xbox\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esadly both zerotier \\u0026amp; Tailscale require an app to be connected in the same vpn network\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewe don\\u0026#39;t know how to do it in xbox if there is another way to use them other than the app,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso i enabled UPnp in sunshine didn\\u0026#39;t work so i used the moonlight test and showed that there is closed ports even tho sunshine should open them auto i am kinda confused here also it showed that UPnp might be closed in the router so i went in there and there is a tab for it but it\\u0026#39;s blank just shows the header help );\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1868tkm\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ziadrrr\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1868tkm/xbox_ss_to_pc_outside_the_network/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1868tkm/xbox_ss_to_pc_outside_the_network/\", \"subreddit_subscribers\": 876, \"created_utc\": 1701210456.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello! I've been trying to find a QRes download that isn't from some sketchy website to configure autoswitching. \\n\\n\\nDoes anyone know of one? \\n\\n\\nI've found the Sourceforge page for it, but using the installer there throws a complaint about my OS being 64 bit . Everything else I've found has been some random website that make my computer cry with all the false download buttons. \\n\\n\\nI've also checked the Sunshine docs thinking there would be an official link there, but didn't see one. \\n\\n\\nThank you for your time!\", \"author_fullname\": \"t2_vvyn2ced\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"QRes Download 64 Bit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1834ou9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700866792.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I\\u0026#39;ve been trying to find a QRes download that isn\\u0026#39;t from some sketchy website to configure autoswitching. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know of one? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve found the Sourceforge page for it, but using the installer there throws a complaint about my OS being 64 bit . Everything else I\\u0026#39;ve found has been some random website that make my computer cry with all the false download buttons. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve also checked the Sunshine docs thinking there would be an official link there, but didn\\u0026#39;t see one. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for your time!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1834ou9\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"luciel23\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"subreddit_subscribers\": 876, \"created_utc\": 1700866792.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm running Sunshine 0.21 as a host on a Windows 10 machine and Moonlight as a client on an iPad. While futzing with settings, I removed the Windows host from my iPad client and I'm unable to find it again on the local network.\\n\\nI tried unsinstalling and reinstalling both Sunshine on the hostmachine and doing the same for the client on the iPad but no dice. Oddly, when I boot up Moonlight on the iPad, it has no problem finding a different Windows host on the local network. I was also able to remove the other Windows 10 host and find it again whenever I reboot the Moonlight client on my iPad.\\n\\nIs there a way to make sure it's actually running once the WebUI is booted up? The other host is findable no problem which makes me suspect it's not running for some reason\\n\\nWhat am I doing wrong and how can I get it to find the previously removed host?\", \"author_fullname\": \"t2_8t9fd5is\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't re-add previously removed Sunshine host on IOS running Moonlight client\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_182ir2s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1700798598.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700797424.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Sunshine 0.21 as a host on a Windows 10 machine and Moonlight as a client on an iPad. While futzing with settings, I removed the Windows host from my iPad client and I\\u0026#39;m unable to find it again on the local network.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried unsinstalling and reinstalling both Sunshine on the hostmachine and doing the same for the client on the iPad but no dice. Oddly, when I boot up Moonlight on the iPad, it has no problem finding a different Windows host on the local network. I was also able to remove the other Windows 10 host and find it again whenever I reboot the Moonlight client on my iPad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to make sure it\\u0026#39;s actually running once the WebUI is booted up? The other host is findable no problem which makes me suspect it\\u0026#39;s not running for some reason\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I doing wrong and how can I get it to find the previously removed host?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"182ir2s\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lemmingsaflame\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/182ir2s/cant_readd_previously_removed_sunshine_host_on/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/182ir2s/cant_readd_previously_removed_sunshine_host_on/\", \"subreddit_subscribers\": 876, \"created_utc\": 1700797424.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi I have bought a HDMI dummy plug because otherwise sunshine was using only my internal graphics instead of Nvidia GPU on my laptop. However when I start the stream the controller doesn't work anymore. I'm using moonlight on my Asus Rog Phone 3 with a Bluetooth controller. The strange thing is it's working fine without HDMI dummy plug. Any advice?\", \"author_fullname\": \"t2_7wr39euq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"controller stopped working after plugging HDMI dummy.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1816oqg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700651222.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I have bought a HDMI dummy plug because otherwise sunshine was using only my internal graphics instead of Nvidia GPU on my laptop. However when I start the stream the controller doesn\\u0026#39;t work anymore. I\\u0026#39;m using moonlight on my Asus Rog Phone 3 with a Bluetooth controller. The strange thing is it\\u0026#39;s working fine without HDMI dummy plug. Any advice?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1816oqg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"1986_Summer_Fire\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1816oqg/controller_stopped_working_after_plugging_hdmi/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1816oqg/controller_stopped_working_after_plugging_hdmi/\", \"subreddit_subscribers\": 876, \"created_utc\": 1700651222.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1702595083, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ocwtya6a8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I fix this? I don't know anything about how the internet works.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 42, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_180gr8k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"i.redd.it\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9q32X6SbHw03bLLS09TuMroDxZGUmJbbRH1GKzA7Hlw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1700572630.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/975zxc8dbp1c1.png\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?auto=webp\\u0026s=9ac5583c8ba1d2ad53b753de2409b5921d829d6c\", \"width\": 844, \"height\": 255}, \"resolutions\": [{\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd17ad0d789e4c8ad078b7088c8e9e82d8458b5b\", \"width\": 108, \"height\": 32}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0b2390de50a7981cbedc7117a38b117b7a198240\", \"width\": 216, \"height\": 65}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e0f38f887e1ba78e7f1404cc14a0b0044af0d6f0\", \"width\": 320, \"height\": 96}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cad96585484e8d70679c81708f71405e6b2b7b27\", \"width\": 640, \"height\": 193}], \"variants\": {}, \"id\": \"PcddJ3MIazWjSqKg6hK75DerEEu_DvKic-H_5CQ-Vjw\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"180gr8k\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Cool-Construction513\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/180gr8k/how_do_i_fix_this_i_dont_know_anything_about_how/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://i.redd.it/975zxc8dbp1c1.png\", \"subreddit_subscribers\": 876, \"created_utc\": 1700572630.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm switching off of Geforce Experience and just downloaded the [latest 0.21.0 windows installer](https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0). When I run it, Windows 11 doesn't want to install it because it isn't digitally signed and says it's from an unknown publisher.\\n\\nIs this expected? I haven't found any open or closed issues about this on the github page, which I would expect for a popular project with unsigned binaries.\\n\\nI downloaded the ` sunshine-windows-installer.exe ` installer.\", \"author_fullname\": \"t2_4108e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_17sui0y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1699709691.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m switching off of Geforce Experience and just downloaded the \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\\\"\\u003Elatest 0.21.0 windows installer\\u003C/a\\u003E. When I run it, Windows 11 doesn\\u0026#39;t want to install it because it isn\\u0026#39;t digitally signed and says it\\u0026#39;s from an unknown publisher.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this expected? I haven\\u0026#39;t found any open or closed issues about this on the github page, which I would expect for a popular project with unsigned binaries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI downloaded the \\u003Ccode\\u003Esunshine-windows-installer.exe\\u003C/code\\u003E installer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?auto=webp\\u0026s=c8a6a559171f5eb47336913c4ecc90fd8e593785\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d4824413dd63f938fede56ce12f5ef59207d2710\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f87a3faf8a5fde2cb6cc35308df00737ffd2d91b\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdeeac6d253c7e2a52552adb2e4f02e3eadc1c8\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b4f88059a89ee14efbae3e15453505e8cdee7603\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=cc41ad63f2998eb59bd27fbcdb6d0c3f28255992\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d443a082794cdc59f787a648eaac157f66af3b23\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"7DLpflJI_W7z4OQ94bxPd7l8DtzKLM707qRZLXoLvU8\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"17sui0y\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"wonderbreadofsin\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_subscribers\": 876, \"created_utc\": 1699709691.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" \\n\\nERROR (networking:197) - Error opening URL '[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)'\\n\\n2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\\", line 1293, in get\\\\_resource\\\\_hashes\\n\\njson = self.\\\\_core.networking.http\\\\_request(\\\"[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)\\\", timeout=10).content\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 243, in content\\n\\nreturn self.\\\\_\\\\_str\\\\_\\\\_()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 221, in \\\\_\\\\_str\\\\_\\\\_\\n\\nself.load()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 159, in load\\n\\nf = self.\\\\_opener.open(req, timeout=self.\\\\_timeout)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 435, in open\\n\\nresponse = meth(req, response)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 548, in http\\\\_response\\n\\n'http', request, response, code, msg, hdrs)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 473, in error\\n\\nreturn self.\\\\_call\\\\_chain(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 407, in \\\\_call\\\\_chain\\n\\nresult = func(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 556, in http\\\\_error\\\\_default\\n\\nraise HTTPError(req.get\\\\_full\\\\_url(), code, msg, hdrs, fp)\\n\\nHTTPError: HTTP Error 404: Not Found\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ni installed Themerr-plex.bundle in \\\"/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\\"\\n\\n(plex package in synology DSM7)\\n\\neverything seems ok. i see Themerr-plex icon in settings- plugins.\\n\\nand restarted plex , rescan library , refresh metadata.\\n\\nbut still no working. theme doesn't play at all..\\n\\nabove is my log in \\\"dev.lizardbyte.themerr-plex.log\\\"\\n\\nplease help me.\", \"author_fullname\": \"t2_b0tqnmx8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex not working.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_17g053k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1698222908.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EERROR (networking:197) - Error opening URL \\u0026#39;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\u0026quot;, line 1293, in get_resource_hashes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ejson = self._core.networking.http_request(\\u0026quot;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026quot;, timeout=10).content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 243, in content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self.__str__()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 221, in __str__\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.load()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 159, in load\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ef = self._opener.open(req, timeout=self._timeout)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 435, in open\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresponse = meth(req, response)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 548, in http_response\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;http\\u0026#39;, request, response, code, msg, hdrs)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 473, in error\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self._call_chain(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 407, in _call_chain\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresult = func(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 556, in http_error_default\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eraise HTTPError(req.get_full_url(), code, msg, hdrs, fp)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHTTPError: HTTP Error 404: Not Found\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei installed Themerr-plex.bundle in \\u0026quot;/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(plex package in synology DSM7)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eeverything seems ok. i see Themerr-plex icon in settings- plugins.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand restarted plex , rescan library , refresh metadata.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut still no working. theme doesn\\u0026#39;t play at all..\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eabove is my log in \\u0026quot;dev.lizardbyte.themerr-plex.log\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eplease help me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"17g053k\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Critical_Pick8868\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_subscribers\": 876, \"created_utc\": 1698222908.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have a 4K projector with SHIELD connected to it, but no 4K monitor at my gaming PC. Is it possible to stream in 4K using Sunshine/Moonlight? In game the resolution won't go above 1440p (my monitor resolution).\", \"author_fullname\": \"t2_ihg5f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stream 4K from non-4K system/monitor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179agja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697474638.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a 4K projector with SHIELD connected to it, but no 4K monitor at my gaming PC. Is it possible to stream in 4K using Sunshine/Moonlight? In game the resolution won\\u0026#39;t go above 1440p (my monitor resolution).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"179agja\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Grepsy\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_subscribers\": 876, \"created_utc\": 1697474638.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Its been a while. This is the difference between me getting a server, and not. Just wondering if you could give an ETA, even if it only covers the maximum amount of time before release.\\n\\nAlso would like to take the time to suggest releasing a stable build during the wait, that just covers Plex, and windows (considering one is free, and the other can be cloned for free, or bought for $20 on eBay) \\n\\nAlso, if you are going to rewrite it, I hope it emphasizes features alongside ease of use.\", \"author_fullname\": \"t2_7i0m45p7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retroarcher update?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179a2t6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 6, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697473700.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIts been a while. This is the difference between me getting a server, and not. Just wondering if you could give an ETA, even if it only covers the maximum amount of time before release.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso would like to take the time to suggest releasing a stable build during the wait, that just covers Plex, and windows (considering one is free, and the other can be cloned for free, or bought for $20 on eBay) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if you are going to rewrite it, I hope it emphasizes features alongside ease of use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"179a2t6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Appropriate-Bank6316\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_subscribers\": 876, \"created_utc\": 1697473700.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm getting the following warnings when starting Sunshine:\\n\\n* Fatal: GameStream is still enabled in GeForce Experience! This \\\\*will\\\\* cause streaming problems with Sunshine!\\n* Fatal: Disable GameStream on the SHIELD tab in GeForce Experience or change the Port setting on the Advanced tab in the Sunshine Web UI.\\n\\nBut since NVIDIA deprecated Shield streaming the tab is not available anymore. I also can't find any services (in the Windows Services) that indicate NVIDIA streaming is switched on.\\n\\nAny idea on how to disable this now so I can get some Sunshine? :-)\\n\\nAs a workaround I could change the ports, but I'd prefer not to. Don't want the old GameStream stuff interfering or have to deal with non-standard port numbers in clients.\\n\\nI'm running the latest .21 version.\", \"author_fullname\": \"t2_ihg5f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to disable Geforce Experience SHIELD streaming when the tab is gone\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1796xpe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 4, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 4, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697465598.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m getting the following warnings when starting Sunshine:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFatal: GameStream is still enabled in GeForce Experience! This *will* cause streaming problems with Sunshine!\\u003C/li\\u003E\\n\\u003Cli\\u003EFatal: Disable GameStream on the SHIELD tab in GeForce Experience or change the Port setting on the Advanced tab in the Sunshine Web UI.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut since NVIDIA deprecated Shield streaming the tab is not available anymore. I also can\\u0026#39;t find any services (in the Windows Services) that indicate NVIDIA streaming is switched on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea on how to disable this now so I can get some Sunshine? :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a workaround I could change the ports, but I\\u0026#39;d prefer not to. Don\\u0026#39;t want the old GameStream stuff interfering or have to deal with non-standard port numbers in clients.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m running the latest .21 version.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1796xpe\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Grepsy\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"subreddit_subscribers\": 876, \"created_utc\": 1697465598.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.21.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179554i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 17, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 17, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/onckxgVGc6ME2gIw1Rp00lzNBpZFUH8aj6b_KReXIHA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1697460311.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?auto=webp\\u0026s=7e9991cc84e5b6b6b99b4c8ef49bc88d85b26895\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e854796e357431a4ecf47953c5412e2f843ebf7c\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9d7ff77a21571d4d908af3b81a61ee57dc187dff\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3e0ecf4233f789c19eb5d07d2c14152e2275ddcd\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f87e69043d953aeff6681796bac8baeb1ec6150a\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=34e3f78194ad49e168cdcfb52a28788a07469cca\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/eEWQVwANmZYYvz00YlMoEuzHHir4a9gY22xTNINwyJI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=8ec018b29eee9b3ba29df4252473ed4af461e861\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"LR0QrTfM2PfdndR6OQGmEp_56phzQOly1wpA_v9zLT8\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"179554i\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/179554i/sunshine_v0210_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"subreddit_subscribers\": 876, \"created_utc\": 1697460311.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"So I'm attempting to use the portable version of Sunshine on a Windows 11 laptop, and when I run it everything seems to run normally, but at the end I get the message below.\\n\\nError: UPNP\\\\_GetSpecificPortMappingEntry() failed: -3\\n\\nIt will show several lines of that, but then show:\\n\\nInfo: Completed UPnP port mappings to XXX.XXX.X.XXX via http://XXX.XXX.X.X\\n\\nSo it seems like port mappings have worked, but I still can't connect via Moonlight by using the laptops IP address. Any thoughts?\", \"author_fullname\": \"t2_e96qt81f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Port Mapping Error\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_176l3ir\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697154337.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;m attempting to use the portable version of Sunshine on a Windows 11 laptop, and when I run it everything seems to run normally, but at the end I get the message below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EError: UPNP_GetSpecificPortMappingEntry() failed: -3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will show several lines of that, but then show:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInfo: Completed UPnP port mappings to XXX.XXX.X.XXX via \\u003Ca href=\\\"http://XXX.XXX.X.X\\\"\\u003Ehttp://XXX.XXX.X.X\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo it seems like port mappings have worked, but I still can\\u0026#39;t connect via Moonlight by using the laptops IP address. Any thoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"176l3ir\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SamwiseG82\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/176l3ir/port_mapping_error/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/176l3ir/port_mapping_error/\", \"subreddit_subscribers\": 876, \"created_utc\": 1697154337.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Wondering if it is possible to accomplish the following with Retroarcher or some combination of LizardByte software:\\n\\nI have an unRAID server running Plex in a container and a second, different server running BigBox and making it available for streaming via Sunshine (to Moonlight clients).\\n\\nI would love to have a single entry that would show up in Plex clients and could let me reach the desktop of the Sunshine machine so I could stream it through my Plex instance. I'm guessing this would require some sort of relay of the gaming machine through the Plex server and probably is not supported, but am hoping someone might have some ideas on setup. This would probably introduce more latency and be a bad idea, but the reason I'm interested is because: (1) I want to host Plex in Docker running on Linux, (2) I do not want to virtualize Windows for the BigBox machine, but instead run it on bare metal for performance reasons, and (3) I want to be able to get to the games through any Plex client.\\n\\nThanks for any thoughts!\\n\\nEDIT: I think I'm overthinking this. Is there a Moonlight plug-in for Plex? That's really all I'd need, but I don't see anything like that out there.\", \"author_fullname\": \"t2_6hb48\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Relaying entire desktop passthrough from a different server\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_176elt5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697137236.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWondering if it is possible to accomplish the following with Retroarcher or some combination of LizardByte software:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an unRAID server running Plex in a container and a second, different server running BigBox and making it available for streaming via Sunshine (to Moonlight clients).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to have a single entry that would show up in Plex clients and could let me reach the desktop of the Sunshine machine so I could stream it through my Plex instance. I\\u0026#39;m guessing this would require some sort of relay of the gaming machine through the Plex server and probably is not supported, but am hoping someone might have some ideas on setup. This would probably introduce more latency and be a bad idea, but the reason I\\u0026#39;m interested is because: (1) I want to host Plex in Docker running on Linux, (2) I do not want to virtualize Windows for the BigBox machine, but instead run it on bare metal for performance reasons, and (3) I want to be able to get to the games through any Plex client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any thoughts!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: I think I\\u0026#39;m overthinking this. Is there a Moonlight plug-in for Plex? That\\u0026#39;s really all I\\u0026#39;d need, but I don\\u0026#39;t see anything like that out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"176elt5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"toboggan_philosophy\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/176elt5/relaying_entire_desktop_passthrough_from_a/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/176elt5/relaying_entire_desktop_passthrough_from_a/\", \"subreddit_subscribers\": 876, \"created_utc\": 1697137236.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"ive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86\\\\_64/master not installed. ive check the directory and the master file is'nt there. Ive tried installing and uninstalling, but still doesnt work.\", \"author_fullname\": \"t2_9jeccaekr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"missing master file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_173w3qy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696868829.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86_64/master not installed. ive check the directory and the master file is\\u0026#39;nt there. Ive tried installing and uninstalling, but still doesnt work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"173w3qy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"THE_INVINCIBLE_MOMO\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/173w3qy/missing_master_file/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"subreddit_subscribers\": 876, \"created_utc\": 1696868829.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510516, \"subreddit\": \"LizardByte\", \"selftext\": \"ive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86\\\\_64/master not installed. ive check the directory and the master file is'nt there. Ive tried installing and uninstalling, but still doesnt work.\", \"author_fullname\": \"t2_k9ob9aib1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Master file seems to be missing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_173w1jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696868679.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86_64/master not installed. ive check the directory and the master file is\\u0026#39;nt there. Ive tried installing and uninstalling, but still doesnt work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"173w1jy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Longjumping_Role1523\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/173w1jy/master_file_seems_to_be_missing/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/173w1jy/master_file_seems_to_be_missing/\", \"subreddit_subscribers\": 876, \"created_utc\": 1696868679.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Greetings. It seems like there is a well-known mouse input lag issue with Moonlight/Sunshine. I have Sunshine installed on my Windows 11 PC; I have Moonlight installed on my Chromebook.\\n\\nUsing a controller works great! No issues whatsoever.\\n\\nUsing a mouse is another story. I'd like to play some AoE or LoL, but the mouse control simply isn't there.\\n\\nAny anyone found a solution to this?\\n\\nThanks.\", \"author_fullname\": \"t2_9so6ybbh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moonlight/Sunshine Mouse Input Lag\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16z2kol\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696365032.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreetings. It seems like there is a well-known mouse input lag issue with Moonlight/Sunshine. I have Sunshine installed on my Windows 11 PC; I have Moonlight installed on my Chromebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing a controller works great! No issues whatsoever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing a mouse is another story. I\\u0026#39;d like to play some AoE or LoL, but the mouse control simply isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny anyone found a solution to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"16z2kol\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Which-Project222\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"subreddit_subscribers\": 876, \"created_utc\": 1696365032.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hy guys, I'm really strugling to install Sunchine on linux, Manjaro machine. I had tried AUR package, git package and manual make but I get every time some error on the build side\\n\\n`node: error while loading shared libraries: libicui18n.so.71: cannot open shared object file: No such file or directory`\\n\\nAnd I had installed manualy the library from aur\\n\\n pacman -Ql icu64\\n icu64 /usr/\\n icu64 /usr/lib/\\n icu64 /usr/lib/icu/\\n icu64 /usr/lib/icu/64.2/\\n icu64 /usr/lib/icu/64.2/Makefile.inc\\n icu64 /usr/lib/icu/64.2/pkgdata.inc\\n icu64 /usr/lib/libicudata.so.64\\n icu64 /usr/lib/libicudata.so.64.2\\n icu64 /usr/lib/libicui18n.so.64\\n icu64 /usr/lib/libicui18n.so.64.2\\n icu64 /usr/lib/libicuio.so.64\\n icu64 /usr/lib/libicuio.so.64.2\\n icu64 /usr/lib/libicutest.so.64\\n icu64 /usr/lib/libicutest.so.64.2\\n icu64 /usr/lib/libicutu.so.64\\n icu64 /usr/lib/libicutu.so.64.2\\n icu64 /usr/lib/libicuuc.so.64\\n icu64 /usr/lib/libicuuc.so.64.2\\n icu64 /usr/share/\\n icu64 /usr/share/licenses/\\n icu64 /usr/share/licenses/icu64/\\n icu64 /usr/share/licenses/icu64/LICENSE\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_xku38\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Manjaro impossibile to install, error libicui18n not found\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16wzn8h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696162637.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHy guys, I\\u0026#39;m really strugling to install Sunchine on linux, Manjaro machine. I had tried AUR package, git package and manual make but I get every time some error on the build side\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Enode: error while loading shared libraries: libicui18n.so.71: cannot open shared object file: No such file or directory\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd I had installed manualy the library from aur\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epacman -Ql icu64\\nicu64 /usr/\\nicu64 /usr/lib/\\nicu64 /usr/lib/icu/\\nicu64 /usr/lib/icu/64.2/\\nicu64 /usr/lib/icu/64.2/Makefile.inc\\nicu64 /usr/lib/icu/64.2/pkgdata.inc\\nicu64 /usr/lib/libicudata.so.64\\nicu64 /usr/lib/libicudata.so.64.2\\nicu64 /usr/lib/libicui18n.so.64\\nicu64 /usr/lib/libicui18n.so.64.2\\nicu64 /usr/lib/libicuio.so.64\\nicu64 /usr/lib/libicuio.so.64.2\\nicu64 /usr/lib/libicutest.so.64\\nicu64 /usr/lib/libicutest.so.64.2\\nicu64 /usr/lib/libicutu.so.64\\nicu64 /usr/lib/libicutu.so.64.2\\nicu64 /usr/lib/libicuuc.so.64\\nicu64 /usr/lib/libicuuc.so.64.2\\nicu64 /usr/share/\\nicu64 /usr/share/licenses/\\nicu64 /usr/share/licenses/icu64/\\nicu64 /usr/share/licenses/icu64/LICENSE\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"16wzn8h\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TrueAncalagon\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16wzn8h/manjaro_impossibile_to_install_error_libicui18n/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/16wzn8h/manjaro_impossibile_to_install_error_libicui18n/\", \"subreddit_subscribers\": 876, \"created_utc\": 1696162637.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GSMS Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16u1ilq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Im8757RYhLON-JkcEqhx3bqYDFkuwdKLPn5GdijOhZU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1695861709.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.1\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?auto=webp\\u0026s=e311cef1b9f28586984bf87ec9d3123660fc1bec\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bba0804af33ea5d9361ff7e6b10f5a580c504395\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=2013efccd00e93feda67e09474c873fd1f45cc51\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=a1df4f0e5a74acbc1ae97fff0e12b5c81f2cfe61\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1e111ad4418baf89697fa238c95a80382a3c8adb\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=0581d94c5c54c1bfd14bbb6ebf8e845f5db279bc\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/i2rigwahrTDObxHkuFmmAx2haxcNbAVT47PO6zIFxz0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b53c8d26086ff5b02dbdc50fbd809a74cc486978\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"qaturRGQF6vaZMjPyYdrwRrBLmcUOLY-FSgLifgNGAU\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"16u1ilq\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/16u1ilq/gsms_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.1\", \"subreddit_subscribers\": 876, \"created_utc\": 1695861709.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Feedback Requested] How to stream from a headless server using Sunshine, SSH, and NVidia Twin View X config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16f8r26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 2, \"domain\": \"self.linux_gaming\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_dsbf4iurw\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"linux_gaming\", \"selftext\": \"Hey everyone, I wrote a guide for remote display streaming from a headless Linux sunshine host via SSH.\\n\\nNote this is in review right now and I would appreciate any feedback and improvements before merging it into nightly. I would also appreciate those who want to test my guide out!\\n\\nhttps://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\n\\nSome info about my Sunshine Host:\\n* Distro: Metis Linux (based on Artix Runit)\\n* GPU: 3070 RTX\\n* Nvidia driver: Nvidia dkms\\n* Kernel: Zen\\n* Audio: Pulseaudio\\n* Display/wm: Xorg/dwm started with startx\\n\\nEdit: PR was approved and merged \\nhttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\", \"author_fullname\": \"t2_dsbf4iurw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to stream from a headless server using Sunshine, SSH, and NVidia Twin View X config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/linux_gaming\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16f8nvr\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"guide\", \"can_mod_post\": false, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1712277720.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1694372952.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.linux_gaming\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey everyone, I wrote a guide for remote display streaming from a headless Linux sunshine host via SSH.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENote this is in review right now and I would appreciate any feedback and improvements before merging it into nightly. I would also appreciate those who want to test my guide out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\\"\\u003Ehttps://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome info about my Sunshine Host:\\n* Distro: Metis Linux (based on Artix Runit)\\n* GPU: 3070 RTX\\n* Nvidia driver: Nvidia dkms\\n* Kernel: Zen\\n* Audio: Pulseaudio\\n* Display/wm: Xorg/dwm started with startx\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: PR was approved and merged \\n\\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"07894534-99a2-11ea-9ff1-0e345630560d\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2r2u0\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#539464\", \"id\": \"16f8nvr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_Linux_AI_\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"subreddit_subscribers\": 277717, \"created_utc\": 1694372952.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1694373151.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"16f8r26\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"_Linux_AI_\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_16f8nvr\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16f8r26/feedback_requested_how_to_stream_from_a_headless/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"subreddit_subscribers\": 876, \"created_utc\": 1694373151.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page.\\n\\n\\u0026#x200B;\\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with RetroArcher\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168ufyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693740098.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168ufyk\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168ufyk/how_can_i_get_started_with_retroarcher/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168ufyk/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693740098.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510475, \"subreddit\": \"LizardByte\", \"selftext\": \" Hey, I just found out about RetroArcher as I would like to load some arcade games onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page.\\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with retroarcher?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168rrmb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693730618.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load some arcade games onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168rrmb\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168rrmb/how_can_i_get_started_with_retroarcher/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168rrmb/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693730618.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510508, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page. \\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with RetroArcher?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168rq6v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693730478.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168rq6v\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168rq6v/how_can_i_get_started_with_retroarcher/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168rq6v/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693730478.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" Hello, I've installed Sunshine on my gaming PC and Moonlight on my regular PC. I am up to date with the latest versions. When I launch Moonlight, I get a black screen, and then nothing... Any ideas? \", \"author_fullname\": \"t2_5hneewlm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"black screen on Moonlight\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167y5mw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693647549.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I\\u0026#39;ve installed Sunshine on my gaming PC and Moonlight on my regular PC. I am up to date with the latest versions. When I launch Moonlight, I get a black screen, and then nothing... Any ideas? \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"167y5mw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"mike37510\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/167y5mw/black_screen_on_moonlight/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/167y5mw/black_screen_on_moonlight/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693647549.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Connection Error when playing Starfield\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167fid0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.MoonlightStreaming\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_4k1vwaco\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"MoonlightStreaming\", \"selftext\": \"Attempted to connect my desktop to play Starfield from Steam and suddenly running into the [following error](https://imgur.com/a/L6G4AbR):\\n\\n\\u003EConnection Error \\n\\u003E \\n\\u003ESomething went wrong on your host PC when starting the stream. \\n\\u003E \\n\\u003EMake sure you don't have any DRM-protected content open on your host PC. You can also try restarting your host PC. \\n\\u003E \\n\\u003EIf the issue persists, try reinstalling GPU drivers and GeForce Experience.\\n\\nI'm not encountering this issue with any other game on Steam or on my PC. Currently the only workaround that I found to work is to stream my desktop and start Starfield then it works flawlessly.\\n\\nIn the logs, it shows the following to indicate that the client is able to connect to the host but is then immediately terminated.\\n\\n\\u003E\\\\[2023:09:01:11:31:06\\\\]: Info: Executing: \\\\[G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\\\\\\Starfield.exe\\\\] in \\\\[\\\"G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\"\\\\] \\n\\\\[2023:09:01:11:31:06\\\\]: Info: G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\\\\\\Starfield.exe running with PID 22160 \\\\[2023:09:01:11:31:06\\\\]: Info: CLIENT CONNECTED\\\\[2023:09:01:11:31:06\\\\]: Info: Process terminated\\n\\nI've made the following attempts to fix this issue with no luck\\n\\n* Update latest Nvidia drivers (537.132) and GeForce Experience (3.27.0.112)\\n* Update to Sunshine Version 0.20.0\\n* Run the audio tool to find the Device ID of the Virtual sink and update Sunshine's configuration (ref [previous post](https://www.reddit.com/r/MoonlightStreaming/comments/11sagxo/moonlightsunshine_connection_terminated/?utm_source=share\\u0026utm_medium=web2x\\u0026context=3))\\n* Disable GeForce experience\\n\\nI'm not sure what else I can do at this point to get it to workout without the desktop workaround.\", \"author_fullname\": \"t2_4k1vwaco\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Connection Error when playing Starfield\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/MoonlightStreaming\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167feqb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.86, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1693593934.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.MoonlightStreaming\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAttempted to connect my desktop to play Starfield from Steam and suddenly running into the \\u003Ca href=\\\"https://imgur.com/a/L6G4AbR\\\"\\u003Efollowing error\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EConnection Error \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomething went wrong on your host PC when starting the stream. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMake sure you don\\u0026#39;t have any DRM-protected content open on your host PC. You can also try restarting your host PC. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the issue persists, try reinstalling GPU drivers and GeForce Experience.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not encountering this issue with any other game on Steam or on my PC. Currently the only workaround that I found to work is to stream my desktop and start Starfield then it works flawlessly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the logs, it shows the following to indicate that the client is able to connect to the host but is then immediately terminated.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E[2023:09:01:11:31:06]: Info: Executing: [G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\\\Starfield.exe] in [\\u0026quot;G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\u0026quot;]\\u003Cbr/\\u003E\\n[2023:09:01:11:31:06]: Info: G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\\\Starfield.exe running with PID 22160 [2023:09:01:11:31:06]: Info: CLIENT CONNECTED[2023:09:01:11:31:06]: Info: Process terminated\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve made the following attempts to fix this issue with no luck\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EUpdate latest Nvidia drivers (537.132) and GeForce Experience (3.27.0.112)\\u003C/li\\u003E\\n\\u003Cli\\u003EUpdate to Sunshine Version 0.20.0\\u003C/li\\u003E\\n\\u003Cli\\u003ERun the audio tool to find the Device ID of the Virtual sink and update Sunshine\\u0026#39;s configuration (ref \\u003Ca href=\\\"https://www.reddit.com/r/MoonlightStreaming/comments/11sagxo/moonlightsunshine_connection_terminated/?utm_source=share\\u0026amp;utm_medium=web2x\\u0026amp;context=3\\\"\\u003Eprevious post\\u003C/a\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable GeForce experience\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure what else I can do at this point to get it to workout without the desktop workaround.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?auto=webp\\u0026s=9a7ba02799daa9a213f7483f4d65c750c9829592\", \"width\": 600, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd3712c207ec18252b21a937fb8ca4d3c0d0950\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=72b689b19c0c29ecb951f1b09102de62a865fbea\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7ca06a311bc2c761c114b614c7d0a7561df19a2a\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"a4q6yXv_EXmgGwC0vEAw_4xkCUnk5RWvFDhfdRzXX84\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3owbe\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"167feqb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lt_dan457\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"subreddit_subscribers\": 7592, \"created_utc\": 1693593934.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1693594161.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?auto=webp\\u0026s=9a7ba02799daa9a213f7483f4d65c750c9829592\", \"width\": 600, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd3712c207ec18252b21a937fb8ca4d3c0d0950\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=72b689b19c0c29ecb951f1b09102de62a865fbea\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7ca06a311bc2c761c114b614c7d0a7561df19a2a\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"a4q6yXv_EXmgGwC0vEAw_4xkCUnk5RWvFDhfdRzXX84\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"167fid0\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lt_dan457\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_167feqb\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/167fid0/connection_error_when_playing_starfield/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693594161.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"It is posible to configure Sunshine to code in H.265 instead on H.264 with an AMD 7900XTX? if yes how? if not, why? it will be added in a future?\\n\\nThe decoder would be moonlight on a TV with H.265 support.\\n\\nThanks in advance\", \"author_fullname\": \"t2_obxtl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"AMD 7900XTX and H.265\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_165lgwe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693417526.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt is posible to configure Sunshine to code in H.265 instead on H.264 with an AMD 7900XTX? if yes how? if not, why? it will be added in a future?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe decoder would be moonlight on a TV with H.265 support.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"165lgwe\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"l0rd_raiden\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/165lgwe/amd_7900xtx_and_h265/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/165lgwe/amd_7900xtx_and_h265/\", \"subreddit_subscribers\": 876, \"created_utc\": 1693417526.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Trying to use the windows portable version of Sunshine on a computer I don't have admin rights to. I've downloaded, extracted, and run the .exe. The command prompt pops up and does it's thing but still don't see it as an option in Moonlight on my other PC and when I try to add via IP address it can't find it. Both computers are on the same network, so not sure what the issue is. \\n\\nAs far as I know, Sunshine will work with any GPU correct? Any ideas/tips?\", \"author_fullname\": \"t2_e96qt81f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Windows Portable Version\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_15s88zd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1692140973.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrying to use the windows portable version of Sunshine on a computer I don\\u0026#39;t have admin rights to. I\\u0026#39;ve downloaded, extracted, and run the .exe. The command prompt pops up and does it\\u0026#39;s thing but still don\\u0026#39;t see it as an option in Moonlight on my other PC and when I try to add via IP address it can\\u0026#39;t find it. Both computers are on the same network, so not sure what the issue is. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs far as I know, Sunshine will work with any GPU correct? Any ideas/tips?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"15s88zd\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SamwiseG82\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/15s88zd/windows_portable_version/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/15s88zd/windows_portable_version/\", \"subreddit_subscribers\": 876, \"created_utc\": 1692140973.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex v0.2.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_15elaf5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 5, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 5, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/zBjxOcYP3MGoWmCG2Qxvua1PVd4bDDe-klxyJBpY0ro.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1690821947.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v0.2.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?auto=webp\\u0026s=e7d4b2c745d372c59502454da1307c990dc43350\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2ff38d7a875d5645f80afb380b1c6388f752bdea\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d095a02964b0d9179960ae06ab0568f7a5a7330d\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=23e652f88a641e3e2fe4305afad264dbb94814a9\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=21e8f00f5a3e24042e339b23e407b42e644e06e5\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5e06d99f4c188b325d8358f65acbce563bbeaa00\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/G6qSTP87otX8GjWfRLoX9NGwjlcDhqUaIzWPnmkroag.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=6a9fceaa918028f7883d2fac67c2cbaedaa47ad9\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"9fE9KN8EGHFBDCO6d8Gt5_qTFVTtTq_ApXh5afvKIwg\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"15elaf5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/15elaf5/themerrplex_v020_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v0.2.0\", \"subreddit_subscribers\": 876, \"created_utc\": 1690821947.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have been using Gokapi ([https://github.com/Forceu/Gokapi](https://github.com/Forceu/Gokapi)) to supplement Sunshine, so that I can easily download files from the host. I am constantly emailing links to myself and the work flow sucks. I was wondering if it were possible to Copy/paste to clipboard between host and client like RDP does?\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_n1gqq5qk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is copy paste to clipboard between host/client possible?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_15589oh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1689899176.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have been using Gokapi (\\u003Ca href=\\\"https://github.com/Forceu/Gokapi\\\"\\u003Ehttps://github.com/Forceu/Gokapi\\u003C/a\\u003E) to supplement Sunshine, so that I can easily download files from the host. I am constantly emailing links to myself and the work flow sucks. I was wondering if it were possible to Copy/paste to clipboard between host and client like RDP does?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?auto=webp\\u0026s=7f4460ac65176a5c475b32560b6075ab1f8a5cde\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=94d2750fbb23234ff5cea374f14fe32c0655ea12\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a99b007bf8b45c96ee63cbae9b8f6aade84da888\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=958c074c6e6a9a2be45a9b7ad45198bf41f30d08\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=72cbb4f0923867a8d23b22645ba2621e514d5c6d\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=360fce50f6446aec6e205555f5a9ff0b9e2243c7\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/MNNzMExQnY9jOkKE2IGCWq1G6mLZ63U0rMfqIPyhUUg.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=df6237434c312072d4139952d532d354fc6db72c\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"4Aix1euS1xUZLB2ym1DZ3qYckQIjg-vyniRH8ahT3so\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"15589oh\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lashram32\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/15589oh/is_copy_paste_to_clipboard_between_hostclient/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/15589oh/is_copy_paste_to_clipboard_between_hostclient/\", \"subreddit_subscribers\": 876, \"created_utc\": 1689899176.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi,\\nI set up sunshine to stream games to my iPad Air 5 (Moonlight). All work fine so far but when I walk around and my iPad connects to another mesh repeater I\\u2019ll lost connection. What do I need to change in my network settings to make this work? Do all repeater need to use the same IP address?\", \"author_fullname\": \"t2_170c0y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Connection problems in mesh network\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_152x18g\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1689683031.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\nI set up sunshine to stream games to my iPad Air 5 (Moonlight). All work fine so far but when I walk around and my iPad connects to another mesh repeater I\\u2019ll lost connection. What do I need to change in my network settings to make this work? Do all repeater need to use the same IP address?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"152x18g\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"hema_\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/152x18g/connection_problems_in_mesh_network/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/152x18g/connection_problems_in_mesh_network/\", \"subreddit_subscribers\": 876, \"created_utc\": 1689683031.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"hi\\n\\nso when i connect my psvita to my pc i enter the pin code and moonlight on psvita shows a error saying ''Pairing failed: -1''\\n\\nand on my pc sunshine says ''Warning: SSL Verification error :: self-signed certificate''\\n\\nps: i have debloated my nvidia graphics driver so i dont have geforce experience\\n\\nany ideas please\", \"author_fullname\": \"t2_4t6osk1q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Psvita moonlight -\\u003EPC sunshine\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_152f43r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1689630457.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eso when i connect my psvita to my pc i enter the pin code and moonlight on psvita shows a error saying \\u0026#39;\\u0026#39;Pairing failed: -1\\u0026#39;\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand on my pc sunshine says \\u0026#39;\\u0026#39;Warning: SSL Verification error :: self-signed certificate\\u0026#39;\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eps: i have debloated my nvidia graphics driver so i dont have geforce experience\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eany ideas please\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"152f43r\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"JustUI\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/152f43r/psvita_moonlight_pc_sunshine/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/152f43r/psvita_moonlight_pc_sunshine/\", \"subreddit_subscribers\": 876, \"created_utc\": 1689630457.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have it installed, the display setting is checked, in the logs it shows it downloaded songs. But they never play, and i'm not sure why. Are the songs supposed to play while browsing the library, or when opening a movie and browsing the information (cast, episodes, etc)?\", \"author_fullname\": \"t2_3cntn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr for Jellyfin, how is it supposed to work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14yz1ay\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1689288513.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have it installed, the display setting is checked, in the logs it shows it downloaded songs. But they never play, and i\\u0026#39;m not sure why. Are the songs supposed to play while browsing the library, or when opening a movie and browsing the information (cast, episodes, etc)?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"14yz1ay\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"dude2k5\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14yz1ay/themerr_for_jellyfin_how_is_it_supposed_to_work/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14yz1ay/themerr_for_jellyfin_how_is_it_supposed_to_work/\", \"subreddit_subscribers\": 876, \"created_utc\": 1689288513.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I\\u2019m looking to have some streaming available on the go. Is this possible? I\\u2019m running on an Nvidia 4090 with 500mbps dl speeds.\", \"author_fullname\": \"t2_wx50x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does sunshine and moonlight support streaming off network?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14xmre4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1689163716.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u2019m looking to have some streaming available on the go. Is this possible? I\\u2019m running on an Nvidia 4090 with 500mbps dl speeds.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"14xmre4\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"eastcoastninja\", \"discussion_type\": null, \"num_comments\": 19, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14xmre4/does_sunshine_and_moonlight_support_streaming_off/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14xmre4/does_sunshine_and_moonlight_support_streaming_off/\", \"subreddit_subscribers\": 876, \"created_utc\": 1689163716.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I changed my sunshine from RPM to Flatpak because the mouse input was glitching. On flatpak everything works except the audio sink is not being created due to pulse audio permission denied error\\n\\nHow can I fix it?\\n\\nThank you in advance!\", \"author_fullname\": \"t2_5peo2zf7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine audio not working on fedora (flatpak github version)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14nabhq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1688154824.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI changed my sunshine from RPM to Flatpak because the mouse input was glitching. On flatpak everything works except the audio sink is not being created due to pulse audio permission denied error\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can I fix it?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"14nabhq\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Renanmbs01\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14nabhq/sunshine_audio_not_working_on_fedora_flatpak/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14nabhq/sunshine_audio_not_working_on_fedora_flatpak/\", \"subreddit_subscribers\": 876, \"created_utc\": 1688154824.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Just installed it via Macports.\\n\\nWhat do i do next?\", \"author_fullname\": \"t2_bwb2snu40\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to launch Sunshine on Mac Os?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14jk3x5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1687792698.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed it via Macports.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat do i do next?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"14jk3x5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SpyvsMerc\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14jk3x5/how_to_launch_sunshine_on_mac_os/\", \"subreddit_subscribers\": 876, \"created_utc\": 1687792698.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I know this question has been asked many times But I wish there was an alternative to a Pin based authentication for example SSO/SAML. I run various Windows VMs and sometimes it is not possible to Enter Pin on the host without having access to the hypervisor. Can anyone explain how the Pin based authentication works and I can build SSO on top of it?\", \"author_fullname\": \"t2_4uq9cbpm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Alternative to Pin based authentication?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14gqr0e\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1687501119.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know this question has been asked many times But I wish there was an alternative to a Pin based authentication for example SSO/SAML. I run various Windows VMs and sometimes it is not possible to Enter Pin on the host without having access to the hypervisor. Can anyone explain how the Pin based authentication works and I can build SSO on top of it?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"14gqr0e\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"kern3l_pan1c\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14gqr0e/alternative_to_pin_based_authentication/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14gqr0e/alternative_to_pin_based_authentication/\", \"subreddit_subscribers\": 876, \"created_utc\": 1687501119.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I am trying to create a lutris shortcut based on steam detached command but even the default steam detached command dont open steam, how can i make a flatpak software open?\\n\\nthanks!\", \"author_fullname\": \"t2_5peo2zf7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Steam Flatpak and Lutris only opening the remote desktop\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14eiy8l\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1687285733.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am trying to create a lutris shortcut based on steam detached command but even the default steam detached command dont open steam, how can i make a flatpak software open?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ethanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"14eiy8l\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Renanmbs01\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14eiy8l/steam_flatpak_and_lutris_only_opening_the_remote/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14eiy8l/steam_flatpak_and_lutris_only_opening_the_remote/\", \"subreddit_subscribers\": 876, \"created_utc\": 1687285733.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"The web UI wont open in my PC. Tried to disable antivirus, firewall, etc, but it just keep showing \\\"ERR\\\\_CONNECTION\\\\_REFUSED\\\"\", \"author_fullname\": \"t2_e0037\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Web UI not opening\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14ceu7c\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1687075878.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe web UI wont open in my PC. Tried to disable antivirus, firewall, etc, but it just keep showing \\u0026quot;ERR_CONNECTION_REFUSED\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"14ceu7c\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ChavesDoOito\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14ceu7c/web_ui_not_opening/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14ceu7c/web_ui_not_opening/\", \"subreddit_subscribers\": 876, \"created_utc\": 1687075878.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi,\\n\\nAfter about 30 minutes of streaming I start getting slow connection warnings and games become unplayable. I dropped fps to 60 but still after about 30 minutes streaming becomes slow.\\n\\nFor the first 30 minutes I have no problem streaming at 120 FPS 4k. Problem is fixed by restarting the sunshine service, then works fine again for about 30 minutes and problem starts all over.\\n\\nAll devices on a 1Gbps network switch. I load tested the switch pushing traffic through it for more than an hour and no degradation on network side of things.\\n\\nAny ideas on why this could be happening?\\n\\nedit:\\n\\nForgot to mention, I had this problem with version 0.19 and now with 0.20 as well.\\n\\n2nd edit:\\n\\nSystem:\\n\\nAMD 7950X CPU\\n\\nRTX4090 \\n\\n64GB DDR 5 6000\\n\\nWindows 11 \", \"author_fullname\": \"t2_52vhb695\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine \\u003C\\u003E Moonlight Sony XJ90 slow connection after 30 minutes of streaming\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_145tjzs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1686416502.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1686381823.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter about 30 minutes of streaming I start getting slow connection warnings and games become unplayable. I dropped fps to 60 but still after about 30 minutes streaming becomes slow.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFor the first 30 minutes I have no problem streaming at 120 FPS 4k. Problem is fixed by restarting the sunshine service, then works fine again for about 30 minutes and problem starts all over.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll devices on a 1Gbps network switch. I load tested the switch pushing traffic through it for more than an hour and no degradation on network side of things.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas on why this could be happening?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EForgot to mention, I had this problem with version 0.19 and now with 0.20 as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2nd edit:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESystem:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAMD 7950X CPU\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERTX4090 \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E64GB DDR 5 6000\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWindows 11 \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"145tjzs\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"HumanFlamingo4138\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/145tjzs/sunshine_moonlight_sony_xj90_slow_connection/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/145tjzs/sunshine_moonlight_sony_xj90_slow_connection/\", \"subreddit_subscribers\": 876, \"created_utc\": 1686381823.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey guys! \\n\\nFirst of all, great work as always on all your hard work. I wanted to test out and report on sunshine, as moonlight is my GoTo for streaming. \\n\\nSo, quick question on the ddprobe executable. Probs a false positive but, multiple anti virus software, for some reason have flagged this file as suspicious... Windows too and some others. As mentioned, would love to test and report to assist in development but, in this day and age, it's becoming more difficult to trust even I would definitely pay for (subscription or one off, or contribute to) and others should to as it's some really impressive stuff. \\n\\nSo, to the point, what would cause this to happen? \\n\\nThanks in advance guys, appreciate any help with this.\", \"author_fullname\": \"t2_jvx9gta0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ddprobe.exe\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_14231nz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1686024390.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst of all, great work as always on all your hard work. I wanted to test out and report on sunshine, as moonlight is my GoTo for streaming. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, quick question on the ddprobe executable. Probs a false positive but, multiple anti virus software, for some reason have flagged this file as suspicious... Windows too and some others. As mentioned, would love to test and report to assist in development but, in this day and age, it\\u0026#39;s becoming more difficult to trust even I would definitely pay for (subscription or one off, or contribute to) and others should to as it\\u0026#39;s some really impressive stuff. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, to the point, what would cause this to happen? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance guys, appreciate any help with this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"14231nz\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Lambetts\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/14231nz/ddprobeexe/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/14231nz/ddprobeexe/\", \"subreddit_subscribers\": 876, \"created_utc\": 1686024390.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.20.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13ulqfl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.97, \"ignore_reports\": false, \"ups\": 22, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 22, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/87iUpyWR7trelFrfO2XgsW_yaDdZLQGe3jO9SbszHPY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1685337587.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.20.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?auto=webp\\u0026s=2f671f8d4c0a63690354ac9958c03d793dafb163\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7ac318c93d3483528f164c843dd33d5df5ea3d95\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=c68dbe540bf3e4d446524e4e6d3fa440e20c8e78\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2c7ba1e1408005ea9dcd3f324eeaa61388732219\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=342f287c6ce3e3bb5670a4390810553c7054f4be\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ef964bfd35b1e7788238cbcc279f2eafa7f60379\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/hwFi31_ulu_SRNZtFciXoHJVCZms712yA46zzRscgQU.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=b733acc9006c1636466a9a34061ebe1032c6babf\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"ORhE8GjF3_pLIkYbkcsYRHh7CnoKKsilZK_BLNSYQ2I\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"13ulqfl\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/13ulqfl/sunshine_v0200_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.20.0\", \"subreddit_subscribers\": 876, \"created_utc\": 1685337587.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi!\\n\\nI'm trying to use sunshine flatpak package on my host system:\\n\\n* OS: Archlinux\\n* HW: Intel i79700K, NVIDIA RTX 2070, 16GB RAM\\n* Setup: Linux 6.3.3, NVIDIA 530.41.03, GNOME (X11 session)\\n\\nFlatpak package defaults to X11 capture method. According to documentation, x11 is the slowest, so I would like to use KMS. According to documentation, if I want to use KMS with the flatpak package I should run sunshine with the following command\\n\\n sudo -i PULSE_SERVER=unix:$(pactl info | awk '/Server String/{print$3}') flatpak run dev.lizardbyte.sunshine\\n\\nBut if I force (from configuration) KMS capture and use the previous command, It doesn't work:\\n\\n [user@desktop Downloads]$ sudo -i PULSE_SERVER=unix:$(pactl info | awk '/Server String/{print$3}') flatpak run dev.lizardbyte.sunshine\\n [nv_preset] -- [p3] \\n [encoder] -- [nvenc] \\n [capture] -- [kms] \\n [2023:05:26:21:03:15]: Info: Sunshine version: 0.19.1 \\n [2023:05:26:21:03:16]: Error: Environment variable WAYLAND_DISPLAY has not been defined \\n [2023:05:26:21:03:16]: Error: Unable to initialize capture method \\n [2023:05:26:21:03:16]: Error: Platform failed to initialize \\n [2023:05:26:21:03:16]: Info: Trying encoder [nvenc] \\n [2023:05:26:21:03:17]: Info: Encoder [nvenc] failed \\n [2023:05:26:21:03:17]: Error: Couldn't find any working encoder matching [nvenc] \\n [2023:05:26:21:03:17]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n [2023:05:26:21:03:17]: Info: Trying encoder [vaapi] \\n [2023:05:26:21:03:19]: Info: Encoder [vaapi] failed \\n [2023:05:26:21:03:19]: Info: Trying encoder [software] \\n [2023:05:26:21:03:20]: Info: Encoder [software] failed \\n [2023:05:26:21:03:20]: Fatal: Couldn't find any working encoder \\n [2023:05:26:21:03:20]: Error: Video failed to initialize \\n [2023:05:26:21:03:20]: Error: Failed to create client: Daemon not running \\n [2023:05:26:21:03:20]: Info: Configuration UI available at [https://localhost:47990]\\n ^C[2023:05:26:21:06:18]: Info: Interrupt handler called\\n\\nIs this a limitation of the flatpak package?\\n\\nAlso some other questions:\\n\\n* Why the need to run flatpak as root?\\n* If I have to run sunshine as root, then adding user to the \\\"input\\\" group seems pointless, right?\\n\\nBTW, thanks for this project!\", \"author_fullname\": \"t2_ou445\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Clarification on KMS capture method\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13sm8vi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1685129433.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to use sunshine flatpak package on my host system:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EOS: Archlinux\\u003C/li\\u003E\\n\\u003Cli\\u003EHW: Intel i79700K, NVIDIA RTX 2070, 16GB RAM\\u003C/li\\u003E\\n\\u003Cli\\u003ESetup: Linux 6.3.3, NVIDIA 530.41.03, GNOME (X11 session)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EFlatpak package defaults to X11 capture method. According to documentation, x11 is the slowest, so I would like to use KMS. According to documentation, if I want to use KMS with the flatpak package I should run sunshine with the following command\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo -i PULSE_SERVER=unix:$(pactl info | awk \\u0026#39;/Server String/{print$3}\\u0026#39;) flatpak run dev.lizardbyte.sunshine\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut if I force (from configuration) KMS capture and use the previous command, It doesn\\u0026#39;t work:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[user@desktop Downloads]$ sudo -i PULSE_SERVER=unix:$(pactl info | awk \\u0026#39;/Server String/{print$3}\\u0026#39;) flatpak run dev.lizardbyte.sunshine\\n[nv_preset] -- [p3] \\n[encoder] -- [nvenc] \\n[capture] -- [kms] \\n[2023:05:26:21:03:15]: Info: Sunshine version: 0.19.1 \\n[2023:05:26:21:03:16]: Error: Environment variable WAYLAND_DISPLAY has not been defined \\n[2023:05:26:21:03:16]: Error: Unable to initialize capture method \\n[2023:05:26:21:03:16]: Error: Platform failed to initialize \\n[2023:05:26:21:03:16]: Info: Trying encoder [nvenc] \\n[2023:05:26:21:03:17]: Info: Encoder [nvenc] failed \\n[2023:05:26:21:03:17]: Error: Couldn\\u0026#39;t find any working encoder matching [nvenc] \\n[2023:05:26:21:03:17]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n[2023:05:26:21:03:17]: Info: Trying encoder [vaapi] \\n[2023:05:26:21:03:19]: Info: Encoder [vaapi] failed \\n[2023:05:26:21:03:19]: Info: Trying encoder [software] \\n[2023:05:26:21:03:20]: Info: Encoder [software] failed \\n[2023:05:26:21:03:20]: Fatal: Couldn\\u0026#39;t find any working encoder \\n[2023:05:26:21:03:20]: Error: Video failed to initialize \\n[2023:05:26:21:03:20]: Error: Failed to create client: Daemon not running \\n[2023:05:26:21:03:20]: Info: Configuration UI available at [https://localhost:47990]\\n^C[2023:05:26:21:06:18]: Info: Interrupt handler called\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIs this a limitation of the flatpak package?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso some other questions:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EWhy the need to run flatpak as root?\\u003C/li\\u003E\\n\\u003Cli\\u003EIf I have to run sunshine as root, then adding user to the \\u0026quot;input\\u0026quot; group seems pointless, right?\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBTW, thanks for this project!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"13sm8vi\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"nomore66201\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/13sm8vi/clarification_on_kms_capture_method/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/13sm8vi/clarification_on_kms_capture_method/\", \"subreddit_subscribers\": 876, \"created_utc\": 1685129433.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Issue : moonlight doesn't show my pc for connecting and sunshine run all time on pc, but it doesn't show the app it just shows icon, also when I start the EXE file it says it is moonlight 2.\\n\\nThis is happened when I install Cloudflare wrap VPN on my pc\", \"author_fullname\": \"t2_r6gkbtmn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine run automatically and didn't work at all\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13o7xay\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1684706939.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIssue : moonlight doesn\\u0026#39;t show my pc for connecting and sunshine run all time on pc, but it doesn\\u0026#39;t show the app it just shows icon, also when I start the EXE file it says it is moonlight 2.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is happened when I install Cloudflare wrap VPN on my pc\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"13o7xay\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Irohchi\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/13o7xay/sunshine_run_automatically_and_didnt_work_at_all/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/13o7xay/sunshine_run_automatically_and_didnt_work_at_all/\", \"subreddit_subscribers\": 876, \"created_utc\": 1684706939.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Debug Log can be found here : [Sunshine Verbose Debug Log](https://gist.github.com/Strahdvonzar/37f6f259181b021067fc8b3aa6a0fa4e)\\n\\n**Issue** : Connecting to VM results in a Black Screen which leads to a \\\"No Video Received from Host\\\" message after a while. (Keyboard - Mouse - Audio transmission seems to be working without issues).\\n\\n**Details**\\n\\n* **Debug Log (Verbose)** : Displays no Errors whatsoever\\n* **GPU** : AMD RX 6600\\n* **Monitors on Host** : 2\\n* **Host Windows Version** : Windows 10 22H2 (OS Build 19045.2965)\\n* **VM Windows Version** : Windows 10 22H2 (OS Build 19045.2965)\\n* **AMD Driver Version** : 22.40.37.17-230424a-391195C-AMD-Software-PRO-Edition\\n* **Dummy Display Port Plug** : Attached on 3rd output of GPU\\n* **VM Created via** : \\\"[https://github.com/jamesstringerparsec/Easy-GPU-PV](https://github.com/jamesstringerparsec/Easy-GPU-PV)\\\"\\n\\n**Device Manager Info on VM under Display Adapters :** \\n\\n* AMD Radeon RX 6600 (Enabled - No alerts)\\n* Microsoft Hyper-v Video (Disabled)\\n* Parsec Virtual Display Adapter (Enabled - No alerts)\\n\\n**Device Manager Info on VM under Monitors :** \\n\\n* Generic Non-PnP Monitor\\n\\n**Alternative Configs that resulted in the same behavior :** \\n\\n* Software Encoding , AMD AMF/VCE , Automatic\\n* Fullscreen / Windowed / etc\\n* Various \\\"//./DISPLAYxx\\\" anything apart from \\\\[1\\\\] results in \\\"Failed to find monitor\\\" or something similar in the logs.\\n\\n**Extra Info**\\n* Steam Link works even though it displays an error \\\"There is no display do you want to continue\\\" pressing continue everything works fine.\\n* RDP works without any issues.\\n* Parsec does not work. It displays the same error , about not receiving video from the host. Again though Mouse , Audio and Keyboard transmission works.\", \"author_fullname\": \"t2_19amd1jz\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine - Moonlight on HyperV-VM with GPU-PV results in Black Screen with no Debug Log Errors\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13n1mn6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1684740210.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1684605624.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDebug Log can be found here : \\u003Ca href=\\\"https://gist.github.com/Strahdvonzar/37f6f259181b021067fc8b3aa6a0fa4e\\\"\\u003ESunshine Verbose Debug Log\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EIssue\\u003C/strong\\u003E : Connecting to VM results in a Black Screen which leads to a \\u0026quot;No Video Received from Host\\u0026quot; message after a while. (Keyboard - Mouse - Audio transmission seems to be working without issues).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDetails\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDebug Log (Verbose)\\u003C/strong\\u003E : Displays no Errors whatsoever\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EGPU\\u003C/strong\\u003E : AMD RX 6600\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EMonitors on Host\\u003C/strong\\u003E : 2\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EHost Windows Version\\u003C/strong\\u003E : Windows 10 22H2 (OS Build 19045.2965)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EVM Windows Version\\u003C/strong\\u003E : Windows 10 22H2 (OS Build 19045.2965)\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EAMD Driver Version\\u003C/strong\\u003E : 22.40.37.17-230424a-391195C-AMD-Software-PRO-Edition\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EDummy Display Port Plug\\u003C/strong\\u003E : Attached on 3rd output of GPU\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cstrong\\u003EVM Created via\\u003C/strong\\u003E : \\u0026quot;\\u003Ca href=\\\"https://github.com/jamesstringerparsec/Easy-GPU-PV\\\"\\u003Ehttps://github.com/jamesstringerparsec/Easy-GPU-PV\\u003C/a\\u003E\\u0026quot;\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDevice Manager Info on VM under Display Adapters :\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EAMD Radeon RX 6600 (Enabled - No alerts)\\u003C/li\\u003E\\n\\u003Cli\\u003EMicrosoft Hyper-v Video (Disabled)\\u003C/li\\u003E\\n\\u003Cli\\u003EParsec Virtual Display Adapter (Enabled - No alerts)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EDevice Manager Info on VM under Monitors :\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGeneric Non-PnP Monitor\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EAlternative Configs that resulted in the same behavior :\\u003C/strong\\u003E \\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003ESoftware Encoding , AMD AMF/VCE , Automatic\\u003C/li\\u003E\\n\\u003Cli\\u003EFullscreen / Windowed / etc\\u003C/li\\u003E\\n\\u003Cli\\u003EVarious \\u0026quot;//./DISPLAYxx\\u0026quot; anything apart from [1] results in \\u0026quot;Failed to find monitor\\u0026quot; or something similar in the logs.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003EExtra Info\\u003C/strong\\u003E\\n* Steam Link works even though it displays an error \\u0026quot;There is no display do you want to continue\\u0026quot; pressing continue everything works fine.\\n* RDP works without any issues.\\n* Parsec does not work. It displays the same error , about not receiving video from the host. Again though Mouse , Audio and Keyboard transmission works.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?auto=webp\\u0026s=079a7260ec149880c73263d64811698adb22760a\", \"width\": 1280, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5811c5bda5fece1040636a6af8702ba790f0fd4\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=eee576fd4da7535eb53ceb88dd8b52f073048441\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=72872d880460efa723918c000adca0ed259cf775\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f3545b9335d763c9da9c16bf7bf9a3f907dbd6f6\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2d241ace0f1c07088fac3f8469dbad3b05d2d419\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/4-DxLM-C2Ve3tHmVL5ITI6GRtMVG8PzzdBuCKiaabfE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9055f11bdc00beb0b3589e1cae5817d6070d83bc\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"OAXSl8SY6T3JK9MGQyKxkoYbqZ71HQRYXLeB8CV0NXg\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"13n1mn6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"strahdvonzar\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/13n1mn6/sunshine_moonlight_on_hypervvm_with_gpupv_results/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/13n1mn6/sunshine_moonlight_on_hypervvm_with_gpupv_results/\", \"subreddit_subscribers\": 876, \"created_utc\": 1684605624.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"There is no hyperlink where there used to be. Someone was asking in another channel a few days back and I was like \\\"aw that was a temporary oversight, it'll be fine the next nightly.\\\" \\n\\nBut it's still unclickable. Is there a reason for this or just a mistake?\\n\\nu/ReenigneArcher\", \"author_fullname\": \"t2_n1gqq5qk\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The last few nightly builds are unavailable\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13ag2vr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1683443648.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is no hyperlink where there used to be. Someone was asking in another channel a few days back and I was like \\u0026quot;aw that was a temporary oversight, it\\u0026#39;ll be fine the next nightly.\\u0026quot; \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut it\\u0026#39;s still unclickable. Is there a reason for this or just a mistake?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"/u/ReenigneArcher\\\"\\u003Eu/ReenigneArcher\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"13ag2vr\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lashram32\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/13ag2vr/the_last_few_nightly_builds_are_unavailable/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/13ag2vr/the_last_few_nightly_builds_are_unavailable/\", \"subreddit_subscribers\": 876, \"created_utc\": 1683443648.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"PlexyGlass v0.0.5 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_13a2efg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/VW2a5DQQw5IyXlXNHPi_nBdmrlTWdmshLGZD2zOp5eQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1683407763.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/PlexyGlass/releases/tag/v0.0.5\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?auto=webp\\u0026s=471e81657370d6e9afdf58b191d4e95792382f5a\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1587aa6dd690884b2b3485995b4c12f0b6172ac6\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a51729e887e6cccf1c7ca71e35a966ad14525ec5\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=bb42eb20f95aa515c85bd082a79893b8bab946fb\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=63fad5054f542c2fb0527b47a785c9ae09664924\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=f1d9b17fb80d16e0d49594ad6a6a57b6e25c04cc\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/gxg-PqesJG-YzhonTHaCg2Lc8STPTB3VwZz6BDaLwG0.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=4105bc5274a0c87ae496f35b7a1478f39b8714fd\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"-Q8c41f5_ZdnTOo9PgdjjNmT5KxZO_a3KYGVfGxPaU8\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"13a2efg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/13a2efg/plexyglass_v005_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/PlexyGlass/releases/tag/v0.0.5\", \"subreddit_subscribers\": 876, \"created_utc\": 1683407763.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm having an issue with the video encoder sporadically crashing when exiting or minimizing hardware-accelerated applications and in-game. The audio stream is not affected but the video completely freezes until I force a disonnect. Intensive games such as Star Wars: Jedi Survivor seem to be particularly affected.\\n\\nAfter forcing a client disconnect, it will fail to reconnect for 20-30 seconds with a generic network error. Sunshine will eventually \\\"reboot\\\" itself and resume normally.\\n\\nIt's not happening regularly but often enough that it's frustrating. Every 10 to 15 minutes on average. Sometimes considerably less. There is nothing in the log.\\n\\nAny ideas or suggestions? I've tried different encoder settings but haven't noticed an improvement.\\n\\n- GPU: RTX 4080 (Latest drivers - 551.79)\\n- CPU: Ryzen 9 7900X3D\\n- Windows 11 Pro (Latest update - 22621.1635)\\n- Sunshine: Latest nightly (0.19.1.81aecff301361ac21234fca88358aed1df889317)\\n- Client: Moonlight on NVidia Shield\\n- Encoder: HVENC (P5/ULL/CBR)\", \"author_fullname\": \"t2_34fru\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sporadic video encoder \\\"crash\\\" when exiting hardware-accelerated applications and during games\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_137hhpg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1683198817.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m having an issue with the video encoder sporadically crashing when exiting or minimizing hardware-accelerated applications and in-game. The audio stream is not affected but the video completely freezes until I force a disonnect. Intensive games such as Star Wars: Jedi Survivor seem to be particularly affected.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter forcing a client disconnect, it will fail to reconnect for 20-30 seconds with a generic network error. Sunshine will eventually \\u0026quot;reboot\\u0026quot; itself and resume normally.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s not happening regularly but often enough that it\\u0026#39;s frustrating. Every 10 to 15 minutes on average. Sometimes considerably less. There is nothing in the log.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny ideas or suggestions? I\\u0026#39;ve tried different encoder settings but haven\\u0026#39;t noticed an improvement.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EGPU: RTX 4080 (Latest drivers - 551.79)\\u003C/li\\u003E\\n\\u003Cli\\u003ECPU: Ryzen 9 7900X3D\\u003C/li\\u003E\\n\\u003Cli\\u003EWindows 11 Pro (Latest update - 22621.1635)\\u003C/li\\u003E\\n\\u003Cli\\u003ESunshine: Latest nightly (0.19.1.81aecff301361ac21234fca88358aed1df889317)\\u003C/li\\u003E\\n\\u003Cli\\u003EClient: Moonlight on NVidia Shield\\u003C/li\\u003E\\n\\u003Cli\\u003EEncoder: HVENC (P5/ULL/CBR)\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"137hhpg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"steelfrog\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/137hhpg/sporadic_video_encoder_crash_when_exiting/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/137hhpg/sporadic_video_encoder_crash_when_exiting/\", \"subreddit_subscribers\": 876, \"created_utc\": 1683198817.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex v0.1.4 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_12t8kru\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/GxiapFYbVJ0xG5sYYjHRZp5EtsJ19g_tiPbERa8VPgY.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1682011305.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v0.1.4\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?auto=webp\\u0026s=deb47e5499e7e1ba4c301d2f03cc5c5fc8f755ba\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d5b162dc9f6d3b9b1af0669760c535adf5eb0695\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=143670912e33509cc3b077c29c623da51b29254f\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1f0627cbe19a1c6f8fb7581671fa33f3c3f36c5a\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=34ba9667798b1168505d191abfb14f3bcf6edc56\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=7761ae53358af950df463ac90fc15e8db70ac0f7\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/xC3KPH5gyOlIlV3wKetWvFDg5LvUFuy4Dbz-xCbg8Vo.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=9c82c86d95683be24ce83bd291ec28511187e937\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"lE7335O62wdwUydqkVUGLSUhPiSzhZeApBPAO2box8s\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"12t8kru\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/12t8kru/themerrplex_v014_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v0.1.4\", \"subreddit_subscribers\": 876, \"created_utc\": 1682011305.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Beginner question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 105, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_12kw6oa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 1, \"domain\": \"reddit.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_5m4xcej8\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/_cYEaa1t9xFvtyQuTnR7Jxb1mTfBFazm7fTRirnwhH8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"cloudygamer\", \"selftext\": \"Dose anyone have any idea on how to get sunshine/ moonlight to work directly over lan with out internet\\n\\nI\\u2019m hosting sunshine on my MSI laptop and running an Ethernet cable directly to my MacBook Pro. I have moonlight client on my mac but it doesn\\u2019t detect it computer.\", \"author_fullname\": \"t2_5m4xcej8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"is_gallery\": true, \"title\": \"Beginner question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/cloudygamer\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 105, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"zu9a0qjaoota1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/jpg\", \"p\": [{\"y\": 81, \"x\": 108, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=37b0e89e73b41bebb5c4c3d0cb4f7e893a0fa530\"}, {\"y\": 162, \"x\": 216, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0c9017a650f023767e236fab38caea16df9db230\"}, {\"y\": 240, \"x\": 320, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=99e3ff23425bd69e1eb357a0a2827f3105654318\"}, {\"y\": 480, \"x\": 640, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=45aa740b21f197822456910cddf041641926d3e1\"}, {\"y\": 720, \"x\": 960, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c180e5c391a4a4b6ebe38e3329762c32bee49452\"}, {\"y\": 810, \"x\": 1080, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ebb8856ea3b8cc033c247b06d77065c134e8a5f2\"}], \"s\": {\"y\": 3024, \"x\": 4032, \"u\": \"https://preview.redd.it/zu9a0qjaoota1.jpg?width=4032\\u0026format=pjpg\\u0026auto=webp\\u0026s=e77dff2111a95ba83bd44a5b4c5e1d57fce82091\"}, \"id\": \"zu9a0qjaoota1\"}, \"1yt0zpjaoota1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/jpg\", \"p\": [{\"y\": 81, \"x\": 108, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=78de183ae7c63be1adf34b23af09a83afb89b8c9\"}, {\"y\": 162, \"x\": 216, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1bf4f354e4c267d6a93c17f8fa53a030e47ff8af\"}, {\"y\": 240, \"x\": 320, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=003066c957cced0a770fe27888a44cc83a2985fb\"}, {\"y\": 480, \"x\": 640, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=8c6e5d34accabd1f373a8205990b5ddfd0922849\"}, {\"y\": 720, \"x\": 960, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=def96beeb75922db878b46f22c48d1f0dfcd58c0\"}, {\"y\": 810, \"x\": 1080, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=62f79890245b55e60cbdd745981a0b6dc7f1d336\"}], \"s\": {\"y\": 3024, \"x\": 4032, \"u\": \"https://preview.redd.it/1yt0zpjaoota1.jpg?width=4032\\u0026format=pjpg\\u0026auto=webp\\u0026s=b089ac8057c699cf5e22f2cdd82199bed4a46673\"}, \"id\": \"1yt0zpjaoota1\"}, \"n84s9pjaoota1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/jpg\", \"p\": [{\"y\": 81, \"x\": 108, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=fbe927e4d0ee81d019ed4e4ff17c8c2189b7ef1b\"}, {\"y\": 162, \"x\": 216, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a1f591f0bad3058980a551d3bc4ab3d762baed67\"}, {\"y\": 240, \"x\": 320, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3fb17aa000b61ee8a9eedbddd1df3cdaaf763e06\"}, {\"y\": 480, \"x\": 640, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6a6edf110b2ff91713c7e4d84a7a15f35774567c\"}, {\"y\": 720, \"x\": 960, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=33ff647100c507ffe34a42a9301f0998c2c1563b\"}, {\"y\": 810, \"x\": 1080, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e02f0e81a1985bd4d67585255ae35b077a1e4813\"}], \"s\": {\"y\": 3024, \"x\": 4032, \"u\": \"https://preview.redd.it/n84s9pjaoota1.jpg?width=4032\\u0026format=pjpg\\u0026auto=webp\\u0026s=90084f2e27fe9771c3221f90e2966f627ead3fce\"}, \"id\": \"n84s9pjaoota1\"}}, \"name\": \"t3_12kvvjg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.7, \"author_flair_background_color\": null, \"ups\": 10, \"domain\": \"reddit.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"gallery_data\": {\"items\": [{\"media_id\": \"n84s9pjaoota1\", \"id\": 263094712}, {\"media_id\": \"zu9a0qjaoota1\", \"id\": 263094713}, {\"media_id\": \"1yt0zpjaoota1\", \"id\": 263094714}]}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/_cYEaa1t9xFvtyQuTnR7Jxb1mTfBFazm7fTRirnwhH8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1681405508.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDose anyone have any idea on how to get sunshine/ moonlight to work directly over lan with out internet\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m hosting sunshine on my MSI laptop and running an Ethernet cable directly to my MacBook Pro. I have moonlight client on my mac but it doesn\\u2019t detect it computer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://www.reddit.com/gallery/12kvvjg\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3gdk4\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"12kvvjg\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"mcbest108\", \"discussion_type\": null, \"num_comments\": 22, \"send_replies\": false, \"whitelist_status\": \"all_ads\", \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/cloudygamer/comments/12kvvjg/beginner_question/\", \"parent_whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/gallery/12kvvjg\", \"subreddit_subscribers\": 27362, \"created_utc\": 1681405508.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1681406088.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://www.reddit.com/gallery/12kvvjg\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"12kw6oa\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"mcbest108\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_12kvvjg\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/12kw6oa/beginner_question/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/gallery/12kvvjg\", \"subreddit_subscribers\": 876, \"created_utc\": 1681406088.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi all,\\n\\nOn the host PC, I am using a 75Hz g-sync compatible display. I am using g-sync and v-sync on along with low latency mode ultra and I get a smooth 72-73 capped experience. When I move to my TV and moonlight though, no matter what, v-sync on causes encoding issues and I can't get a constant 59-60 fps stream, it varies between 45-57 fps, making it a playstationlike experience with less fps. Turning vsync off on the host PC solves the issue and I get a stable 59-60 fps stream but I have tearning on my PC monitor, even with a 72 fps cap via nvcp. \\n\\nI've tried disabling DwmFlush in Sunshine's options but the \\\"problem\\\" remains. Ideally, I would like to have gsync on along with a frame cap of 72 fps and vsync + low latency mode off but I get small tearing in games like Sackboy or Cyberpunk.\\n\\nEvery other option on Sunshine is on default. Is there anything more I can do or try to change apart from manually changing vsync settings depending on where I am playing?\", \"author_fullname\": \"t2_313xgm2w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine and vsync question\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_12juawy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1681323629.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOn the host PC, I am using a 75Hz g-sync compatible display. I am using g-sync and v-sync on along with low latency mode ultra and I get a smooth 72-73 capped experience. When I move to my TV and moonlight though, no matter what, v-sync on causes encoding issues and I can\\u0026#39;t get a constant 59-60 fps stream, it varies between 45-57 fps, making it a playstationlike experience with less fps. Turning vsync off on the host PC solves the issue and I get a stable 59-60 fps stream but I have tearning on my PC monitor, even with a 72 fps cap via nvcp. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried disabling DwmFlush in Sunshine\\u0026#39;s options but the \\u0026quot;problem\\u0026quot; remains. Ideally, I would like to have gsync on along with a frame cap of 72 fps and vsync + low latency mode off but I get small tearing in games like Sackboy or Cyberpunk.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery other option on Sunshine is on default. Is there anything more I can do or try to change apart from manually changing vsync settings depending on where I am playing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"12juawy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"iAzriel84\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/12juawy/sunshine_and_vsync_question/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/12juawy/sunshine_and_vsync_question/\", \"subreddit_subscribers\": 876, \"created_utc\": 1681323629.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I just upgraded to Sunshine 0.19.x from some much older build that didn't display its version number in the web ui. I've noticed the new one has a tray icon that asserts itself when the service is running, which is fine...\\n\\nBut what's the tray icon menu's quit entry for for if pressing 'quit' justs closes the taskbar icon, then the service restarts the taskbar icon? I would assume it would also tell the service to stop running? It's very strange.\", \"author_fullname\": \"t2_4gpdt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why does the Sunshine tray icon have a 'quit' option if it doesn't work?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_12gtpid\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 7, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 7, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1681069966.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI just upgraded to Sunshine 0.19.x from some much older build that didn\\u0026#39;t display its version number in the web ui. I\\u0026#39;ve noticed the new one has a tray icon that asserts itself when the service is running, which is fine...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut what\\u0026#39;s the tray icon menu\\u0026#39;s quit entry for for if pressing \\u0026#39;quit\\u0026#39; justs closes the taskbar icon, then the service restarts the taskbar icon? I would assume it would also tell the service to stop running? It\\u0026#39;s very strange.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"12gtpid\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"evilspoons\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/12gtpid/why_does_the_sunshine_tray_icon_have_a_quit/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/12gtpid/why_does_the_sunshine_tray_icon_have_a_quit/\", \"subreddit_subscribers\": 876, \"created_utc\": 1681069966.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi all! Massive fan of Sunshine and have it installed on a high-end Windows 11 PC. I use Android TV, Android tablets and other devices with Moonlight since version 18. Everything is wired via ethernet, and it's worked incredibly well even on very high bit/frame rates.\\n\\n...until just recently. I play Destiny 2, which has always performed admirably. However, the game now freezes within 30 seconds of opening. I can stream my desktop without issue, but when opening the game (although everything renders perfectly/buttery smooth!) I soon get an \\\"slow connection to PC / lower your bit rate\\\" warning before the stream freezes. Note that the game continues to run perfectly on my actual rig.\\n\\nI've tried everything I can think of... including uninstalling/reinstalling server and Moonlight apps, downgrading to lower versions on both host and client (trying to find a working combination), different devices/platforms (all produce the exact same behavior), resetting router, connecting wirelessly via strong 5GHz, lowering bit rate to 10mbps... nothing helps. I don't use HDR. The weirdest part, is that there has been no change at all on my setup! What else should I do? Thanks for reading.\", \"author_fullname\": \"t2_2upk6j1y\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unusual Sunshine freeze within 30 seconds (Destiny2)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_128p5ag\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1680362538.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1680361818.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all! Massive fan of Sunshine and have it installed on a high-end Windows 11 PC. I use Android TV, Android tablets and other devices with Moonlight since version 18. Everything is wired via ethernet, and it\\u0026#39;s worked incredibly well even on very high bit/frame rates.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...until just recently. I play Destiny 2, which has always performed admirably. However, the game now freezes within 30 seconds of opening. I can stream my desktop without issue, but when opening the game (although everything renders perfectly/buttery smooth!) I soon get an \\u0026quot;slow connection to PC / lower your bit rate\\u0026quot; warning before the stream freezes. Note that the game continues to run perfectly on my actual rig.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried everything I can think of... including uninstalling/reinstalling server and Moonlight apps, downgrading to lower versions on both host and client (trying to find a working combination), different devices/platforms (all produce the exact same behavior), resetting router, connecting wirelessly via strong 5GHz, lowering bit rate to 10mbps... nothing helps. I don\\u0026#39;t use HDR. The weirdest part, is that there has been no change at all on my setup! What else should I do? Thanks for reading.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"128p5ag\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"trevdot\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/128p5ag/unusual_sunshine_freeze_within_30_seconds_destiny2/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/128p5ag/unusual_sunshine_freeze_within_30_seconds_destiny2/\", \"subreddit_subscribers\": 876, \"created_utc\": 1680361818.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.19.1 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_126uxn7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 18, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 18, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/ABEAW1gBJfQ7IOPszHkAsk5f3Fj06Ib2L9bel-aJOHw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1680200227.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.19.1\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?auto=webp\\u0026s=d132058f1155cefacf681584823dbd176bb2f004\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f5be2dca508f471a4951d5d25ee84b907ed6d217\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ed55881bd02e1caef87d07068f067cdf26b61f13\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=75eb3d1277700067ce93b8425de6774b5a452780\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6cf5051979fc62b64aee5a701110e1bafc07af2e\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=481b7ecabfbf6595508950aa77c2c707ca8bf11a\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/i7RAzgxVeiBzuraLv64G7yNu-0Wi20diyGiOFnbzPtA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=147a89b76951be8991d83a651541189554485818\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"xfswfaQwgqdyViZkeJnsNw_1-WXAN1cNq1V7Q7-wqY0\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"126uxn7\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/126uxn7/sunshine_v0191_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.19.1\", \"subreddit_subscribers\": 876, \"created_utc\": 1680200227.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.19.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1269d0i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.91, \"ignore_reports\": false, \"ups\": 8, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 8, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/RQ6Z5P5f8DcYqHt6cnjmDCNbPz8Y2KzUVC1y1rjwRz4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1680145047.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.19.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?auto=webp\\u0026s=346806e5c530d6d9bd0d5f904444b7a870772523\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=1cc25061c9890b06292ff88a63a0b59742832b08\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=032540f90ec4ede5692d933c65acc4f99e32301b\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=d0c196e0b9a835bd55706eb5dba670e3990472a8\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=70eabbac6e2e168730224402110dd9eeebf8b3ce\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=ceba0e8fa5566dbf5f3a4ac7fc02f1b4f49d6ca0\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/BRXysrma-gf8pRiFCEmVCmyKB_9Bg0HLRvosyPPP-PY.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=97589145661fc108852e561d7e1fdc5ecf14e1dd\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"tSXSlvlu9w222-nOdnhqWrro4MMZkaAbvi5W_F09q8k\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1269d0i\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1269d0i/sunshine_v0190_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.19.0\", \"subreddit_subscribers\": 876, \"created_utc\": 1680145047.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" Hi, I use my Steam Deck with Moonlight to stream to my PC with Sunshine. Everything was going well, but with Horizon Zero Dawn it gets pixelated specially where there is grass and with objects that are far and I don't know how to solve it. On my PC it looks pretty great, but via stream it looks awful \\nHere is my preset for the encoder\\n\\nNVENC Preset: p7 -- slowest (best quality)\\n\\nNVENC Tune: ull -- ultra low latency (default)\\n\\nNVENC Rate Control: cbr -- constant bitrate (default)\\n\\nNVENC Coder (H264): auto -- let ffmpeg decide (default)\\n\\nIm using a RTX 3070 with a Ryzen 3800x and 1gb internet connection. In wifi my Steam deck gets around 200 mb/s in a 5ghz band\\n\\nAnd in Moonligth I use 1080p resolution with around 30mbs bitrate with both v-sync and frame pacing\", \"author_fullname\": \"t2_17i0vi6d\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problem with Sunshine and Horizon Zero Dawn\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11xe6hz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1679398474.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I use my Steam Deck with Moonlight to stream to my PC with Sunshine. Everything was going well, but with Horizon Zero Dawn it gets pixelated specially where there is grass and with objects that are far and I don\\u0026#39;t know how to solve it. On my PC it looks pretty great, but via stream it looks awful\\u003Cbr/\\u003E\\nHere is my preset for the encoder\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENVENC Preset: p7 -- slowest (best quality)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENVENC Tune: ull -- ultra low latency (default)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENVENC Rate Control: cbr -- constant bitrate (default)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENVENC Coder (H264): auto -- let ffmpeg decide (default)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIm using a RTX 3070 with a Ryzen 3800x and 1gb internet connection. In wifi my Steam deck gets around 200 mb/s in a 5ghz band\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd in Moonligth I use 1080p resolution with around 30mbs bitrate with both v-sync and frame pacing\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11xe6hz\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Rbtmj2\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11xe6hz/problem_with_sunshine_and_horizon_zero_dawn/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11xe6hz/problem_with_sunshine_and_horizon_zero_dawn/\", \"subreddit_subscribers\": 876, \"created_utc\": 1679398474.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I've searched high and low and was wondering if there is a way to add a windows .exe program to Sunshine and have to have it also start full screen?\", \"author_fullname\": \"t2_hwypd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine How to run a Windows Program\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11xdnd4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1679396806.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve searched high and low and was wondering if there is a way to add a windows .exe program to Sunshine and have to have it also start full screen?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11xdnd4\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"AaronG85\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11xdnd4/sunshine_how_to_run_a_windows_program/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11xdnd4/sunshine_how_to_run_a_windows_program/\", \"subreddit_subscribers\": 876, \"created_utc\": 1679396806.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hopefully you will be able to help. I set up a custom resolution on my Desktop to more closely match my phone's aspect ratio. In Moonlight, I checked stretch to full-screen. I'm using 1080p for the resolution. The resolution on my Desktop is 1920x843. Using GameStream the resolution will fit perfectly stretched out on my phone. Using Sunshine, only the horizontal would get stretched. The vertical will not stretch at all. Hopefully you will be able to help. Thank you.\", \"author_fullname\": \"t2_8xoapc3k\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Trying to get fullscreen using Moonlight on my phone.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11tfbra\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1679022335.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHopefully you will be able to help. I set up a custom resolution on my Desktop to more closely match my phone\\u0026#39;s aspect ratio. In Moonlight, I checked stretch to full-screen. I\\u0026#39;m using 1080p for the resolution. The resolution on my Desktop is 1920x843. Using GameStream the resolution will fit perfectly stretched out on my phone. Using Sunshine, only the horizontal would get stretched. The vertical will not stretch at all. Hopefully you will be able to help. Thank you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11tfbra\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"DependentBeginning96\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11tfbra/trying_to_get_fullscreen_using_moonlight_on_my/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11tfbra/trying_to_get_fullscreen_using_moonlight_on_my/\", \"subreddit_subscribers\": 876, \"created_utc\": 1679022335.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I run the dxgi tool and it outputs this below. When I enter \\\"NVIDIA GeForce GTX 850M\\\" in Adapter name and restart the sunshine service, the error logs say \\\"Error. Failed to locate output device.\\\" It only works with Intel HD Graphics. This is a laptop, so I am thinking since the monitor is pulling from the Intel it won't work. So my concern is that it wont use NVENC when streaming. Any ideas?\\n\\n====== ADAPTER =====\\n\\nDevice Name : NVIDIA GeForce GTX 850M\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00001391\\n\\nDevice Video Mem : 2008 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 4037 MiB\\n\\n\\u0026#x200B;\\n\\n====== OUTPUT ======\\n\\nOutput Name : \\\\\\\\\\\\\\\\.\\\\\\\\DISPLAY1\\n\\nAttachedToDesktop : yes\\n\\nResolution : 1536x864\\n\\n\\u0026#x200B;\\n\\n====== ADAPTER =====\\n\\nDevice Name : Intel(R) HD Graphics 4600\\n\\nDevice Vendor ID : 0x00008086\\n\\nDevice Device ID : 0x00000416\\n\\nDevice Video Mem : 112 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 2048 MiB\", \"author_fullname\": \"t2_pooty\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GTX 850M - Display Config Not Working\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11pl23r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1678644334.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1678643990.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI run the dxgi tool and it outputs this below. When I enter \\u0026quot;NVIDIA GeForce GTX 850M\\u0026quot; in Adapter name and restart the sunshine service, the error logs say \\u0026quot;Error. Failed to locate output device.\\u0026quot; It only works with Intel HD Graphics. This is a laptop, so I am thinking since the monitor is pulling from the Intel it won\\u0026#39;t work. So my concern is that it wont use NVENC when streaming. Any ideas?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E====== ADAPTER =====\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Name : NVIDIA GeForce GTX 850M\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00001391\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 2008 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 4037 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E====== OUTPUT ======\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOutput Name : \\\\\\\\.\\\\DISPLAY1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAttachedToDesktop : yes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EResolution : 1536x864\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E====== ADAPTER =====\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Name : Intel(R) HD Graphics 4600\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x00008086\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00000416\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 112 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 2048 MiB\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11pl23r\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Felblood\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11pl23r/gtx_850m_display_config_not_working/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11pl23r/gtx_850m_display_config_not_working/\", \"subreddit_subscribers\": 876, \"created_utc\": 1678643990.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#94e044\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_393wfkmy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Support Sunshine and LizardByte by buying a shirt\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11k0zjz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 9, \"domain\": \"customink.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"5d220538-ff87-11ec-a9c4-56c680cbb67e\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 9, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/UewNLESMhCeFnEvzog1tYWXpf7gRxv6TYq_kyfaXuWA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1678114498.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://www.customink.com/fundraising/lizardbyte-sunshine-1\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/UVmczgm6MeocLJQv48JNLyPQux20wW9jdopMLsZVF8g.jpg?auto=webp\\u0026s=60b44211bca5a09b80dbc775eae2534b7a6e5776\", \"width\": 800, \"height\": 400}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/UVmczgm6MeocLJQv48JNLyPQux20wW9jdopMLsZVF8g.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=51f141adf599858ffc9a8e601440eef1ab190064\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/UVmczgm6MeocLJQv48JNLyPQux20wW9jdopMLsZVF8g.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1367d0adaba3484933b2f47a77b4af0c62525de6\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/UVmczgm6MeocLJQv48JNLyPQux20wW9jdopMLsZVF8g.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=983846413aa4e1a125424ed7a2218b8f978395d5\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/UVmczgm6MeocLJQv48JNLyPQux20wW9jdopMLsZVF8g.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=661169db2d1668f3162cacb279b787120d592eef\", \"width\": 640, \"height\": 320}], \"variants\": {}, \"id\": \"HoyO8qcnL5TrWQSofcaE_hw3PzcB7H9gh4l3AJi35Z0\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Developer\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"11k0zjz\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ReenigneArcher\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/11k0zjz/support_sunshine_and_lizardbyte_by_buying_a_shirt/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.customink.com/fundraising/lizardbyte-sunshine-1\", \"subreddit_subscribers\": 876, \"created_utc\": 1678114498.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi everyone,\\n\\nI noticed that if my image is stale, like no movements of mouse cursor, it seems that the image downscales a bit and makes the texts a bit blurry.\\nAs soon as I move the mouse cursor a bit, like two long and rapid circular movements, the image comes back to the original quality and the blur goes away. If I stop moving the mouse cursor again, in less than 10 seconds it downscales again.\\n\\nLooks like some feature to save bandwidth or energy/processing... But its kinda annoying. Any way to fix or turn this off?\\n\\nThanks.\", \"author_fullname\": \"t2_ujz4jezt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Cursor Movement changes image quality\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11fq5pp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1677724040.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI noticed that if my image is stale, like no movements of mouse cursor, it seems that the image downscales a bit and makes the texts a bit blurry.\\nAs soon as I move the mouse cursor a bit, like two long and rapid circular movements, the image comes back to the original quality and the blur goes away. If I stop moving the mouse cursor again, in less than 10 seconds it downscales again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELooks like some feature to save bandwidth or energy/processing... But its kinda annoying. Any way to fix or turn this off?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11fq5pp\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"annakin171\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11fq5pp/cursor_movement_changes_image_quality/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11fq5pp/cursor_movement_changes_image_quality/\", \"subreddit_subscribers\": 876, \"created_utc\": 1677724040.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_vei1m\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wanted to Share the Workaround to a Weird Issue I had Running Retroarch on Sunshine via BigBox as a Detached Command\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 105, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11dgc43\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"youtu.be\", \"media_embed\": {\"content\": \"\\u003Ciframe width=\\\"356\\\" height=\\\"200\\\" src=\\\"https://www.youtube.com/embed/0jKz35tlci8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\\\" allowfullscreen title=\\\"I FIXED IT!!! | Sunshine Issue with Retroarch\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 356, \"scrolling\": false, \"height\": 200}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"I FIXED IT!!! | Sunshine Issue with Retroarch\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 200, \"width\": 356, \"html\": \"\\u003Ciframe width=\\\"356\\\" height=\\\"200\\\" src=\\\"https://www.youtube.com/embed/0jKz35tlci8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\\\" allowfullscreen title=\\\"I FIXED IT!!! | Sunshine Issue with Retroarch\\\"\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"QuirkyKirkPlays\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/0jKz35tlci8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/@quirkykirkplays\"}}, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {\"content\": \"\\u003Ciframe width=\\\"356\\\" height=\\\"200\\\" src=\\\"https://www.youtube.com/embed/0jKz35tlci8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\\\" allowfullscreen title=\\\"I FIXED IT!!! | Sunshine Issue with Retroarch\\\"\\u003E\\u003C/iframe\\u003E\", \"width\": 356, \"scrolling\": false, \"media_domain_url\": \"https://www.redditmedia.com/mediaembed/11dgc43\", \"height\": 200}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/jmSb8saWHVnKScfEmhn59mBJdpd6MQCYcko2ekxre4M.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"rich:video\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1677516242.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://youtu.be/0jKz35tlci8\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/eZ9YaKWJFZ4lVvdz-V_t2aq676BgecPpN0DcRnFzEw8.jpg?auto=webp\\u0026s=fb7828a4a666a94676c9c5344ec71c12cc92668e\", \"width\": 480, \"height\": 360}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/eZ9YaKWJFZ4lVvdz-V_t2aq676BgecPpN0DcRnFzEw8.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=e32e81c761aa9b484524de1b7fb7987010a0cfd7\", \"width\": 108, \"height\": 81}, {\"url\": \"https://external-preview.redd.it/eZ9YaKWJFZ4lVvdz-V_t2aq676BgecPpN0DcRnFzEw8.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=5589ad11c733ce846135713caccb9da1ebaac472\", \"width\": 216, \"height\": 162}, {\"url\": \"https://external-preview.redd.it/eZ9YaKWJFZ4lVvdz-V_t2aq676BgecPpN0DcRnFzEw8.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e206d317c49eb5ed195758cc52f6d5123936dad2\", \"width\": 320, \"height\": 240}], \"variants\": {}, \"id\": \"0N1mMG7lYXrCH_KtPHkLOmOBGeC_bJf8CLxM-JILA9Q\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"11dgc43\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"QuirkyKirk96\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11dgc43/wanted_to_share_the_workaround_to_a_weird_issue_i/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://youtu.be/0jKz35tlci8\", \"subreddit_subscribers\": 876, \"created_utc\": 1677516242.0, \"num_crossposts\": 0, \"media\": {\"type\": \"youtube.com\", \"oembed\": {\"provider_url\": \"https://www.youtube.com/\", \"version\": \"1.0\", \"title\": \"I FIXED IT!!! | Sunshine Issue with Retroarch\", \"type\": \"video\", \"thumbnail_width\": 480, \"height\": 200, \"width\": 356, \"html\": \"\\u003Ciframe width=\\\"356\\\" height=\\\"200\\\" src=\\\"https://www.youtube.com/embed/0jKz35tlci8?feature=oembed\\u0026enablejsapi=1\\\" frameborder=\\\"0\\\" allow=\\\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\\\" allowfullscreen title=\\\"I FIXED IT!!! | Sunshine Issue with Retroarch\\\"\\u003E\\u003C/iframe\\u003E\", \"author_name\": \"QuirkyKirkPlays\", \"provider_name\": \"YouTube\", \"thumbnail_url\": \"https://i.ytimg.com/vi/0jKz35tlci8/hqdefault.jpg\", \"thumbnail_height\": 360, \"author_url\": \"https://www.youtube.com/@quirkykirkplays\"}}, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi everyone,\\n\\nI recently started with Sunshine and want to understand how to receive 5.1 or 7.1 sound on my Shield 2019 Pro with moonlight.\\nI have a JBL 9.1 sound bar and its properly connected since I can send from Shield to JBL Dolby Atmos TrueHD, etc.\\nBut when I stream from PC using sunshine to Moonlight it just shows as PCM, but doing some tests with multi channel audio at PC (Windows), I can see that its more like a stereo audio...\\n\\nThanks.\", \"author_fullname\": \"t2_ujz4jezt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine How to achieve 5.1/7.1 sound?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_11918sa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1677076824.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI recently started with Sunshine and want to understand how to receive 5.1 or 7.1 sound on my Shield 2019 Pro with moonlight.\\nI have a JBL 9.1 sound bar and its properly connected since I can send from Shield to JBL Dolby Atmos TrueHD, etc.\\nBut when I stream from PC using sunshine to Moonlight it just shows as PCM, but doing some tests with multi channel audio at PC (Windows), I can see that its more like a stereo audio...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"11918sa\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"annakin171\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/11918sa/sunshine_how_to_achieve_5171_sound/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/11918sa/sunshine_how_to_achieve_5171_sound/\", \"subreddit_subscribers\": 876, \"created_utc\": 1677076824.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.18.4 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_117s4wd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 14, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 14, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JAe9Z75NiSX8EmH3mFjQmbJV7TNbsvSodC_Cc5BeGVU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1676947003.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.4\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?auto=webp\\u0026s=d0e2291448637046dfff717eb10ff8208f1716b1\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=0a6a62b3557d9c24cdc8eef588468805f31cb710\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=00fbe002ec0e2c106cdf3e50f6c805705db57f43\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=aa1afabe2faf270e001d1721173bc5d3ef156d46\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=e50bdca329b052706cd22c41cade6eca35ad8e36\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=1db5e8dc21c8a50420fcaaf2550b47f0927b7c4b\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/3z9fOvOYmiE1QMxZjYXymthC7wtrVgoPPJs_n0fEL8U.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=50ae99bb986ac17c922070961d8d3598eb3503ef\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"Zvh_FfesjWpRkK0rFpShmkaCMBJH9f49eyuJonZV6Ss\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"117s4wd\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/117s4wd/sunshine_v0184_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.4\", \"subreddit_subscribers\": 876, \"created_utc\": 1676947003.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey guys, just discovered Sunlight and I have to say, the video quality seems much sharper than what I was getting with Nvidia gamestream. \\n\\n\\nI'm having a bit of an issue though, does anyone know if it's possible to force desktop resolution when launching a game from moonlight? \\n\\n\\u0026#x200B;\\n\\nI'm using my steam deck to stream from, and it's a bit of a pain having to manually change resolution etc.\\n\\nAppreciate it, thanks!\", \"author_fullname\": \"t2_jv3tg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Force monitor resolution from moonlight?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_114yz35\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 4, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 4, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1676671442.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys, just discovered Sunlight and I have to say, the video quality seems much sharper than what I was getting with Nvidia gamestream. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m having a bit of an issue though, does anyone know if it\\u0026#39;s possible to force desktop resolution when launching a game from moonlight? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using my steam deck to stream from, and it\\u0026#39;s a bit of a pain having to manually change resolution etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAppreciate it, thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"114yz35\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Kiory123\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/114yz35/force_monitor_resolution_from_moonlight/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/114yz35/force_monitor_resolution_from_moonlight/\", \"subreddit_subscribers\": 876, \"created_utc\": 1676671442.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.18.3 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_111rtog\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"ignore_reports\": false, \"ups\": 13, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 13, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/FBtpu2ycCPI-Q2eIQppF1nSPyw2T4NrOC5XcWRDh2Js.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1676342979.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.3\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?auto=webp\\u0026s=3d059fb53da49f0b8c5d5b26362f082adf968d19\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=337e95a9eda86be4c93d96f9048f9598bba0b5de\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b09b863b50d9a7179729dc9810adb3301d1e5f3c\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=47af8db1bb07902a8f728f99dad42d5bc407cabc\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=805a8391f81117e033981b745ca8af5de49602bf\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=b7d72d367e10753df85a9adc2065250df160340c\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/bfnSPgnSe-0VtsUNFVwSgT6gSO_9E4mHBfdRRkaqClQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=345291bf3ed2623c79547fbf07962aa934a35012\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"CYuuahyUGFWUcjJ-uXwDR890S0TKCDVsON4Hv8cx--o\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"111rtog\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/111rtog/sunshine_v0183_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.3\", \"subreddit_subscribers\": 876, \"created_utc\": 1676342979.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.18.2 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_111hmx0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 10, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 10, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/3NoPJmKOgpSRtmjyJJgXRa2MG7-jN04KFeHJL-Bvcl0.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1676316517.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.2\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?auto=webp\\u0026s=ad09895923a1219da5711134ab7c45c8c6102ee8\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a20cbc02b30b31f93dbc9793d3ceb78a5549479c\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=3844609d72b7feca6281e08006aa09339b693a1e\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f45bf2a14978e925bed78094533999b665acf2ef\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=ba96390601d07d8f65730b3e1a7e175548034f21\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=8b096be2e5866b1a4d985a5e61213ed39d21bab5\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/xIbzD0QLL_d7FEGjVVUZnNL20jxnfXwVP41dCVyrmxQ.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=beb12143a6005c9a806158d106615892cf9729b2\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"OazVbhAFS5Ky5L829Ht7oRmZ67BpjM5K9iJRYT5Vu7Y\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"111hmx0\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/111hmx0/sunshine_v0182_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.18.2\", \"subreddit_subscribers\": 876, \"created_utc\": 1676316517.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi there, I have an ongoing problem using Sunshine. I have an Intel Arc A770 using Quicksync HEVC, and regardless of what game I am playing, I play for about 10 minutes, and then the stream crashes. For that 10 minutes performance is absolutely flawless until it suddenly crashes. It is always around 10 minutes of playtime. Logs are attached in comment below.\", \"author_fullname\": \"t2_kc5vn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Problems streaming to Moonlight via Intel Arc A770\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_110xiz6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1676256757.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there, I have an ongoing problem using Sunshine. I have an Intel Arc A770 using Quicksync HEVC, and regardless of what game I am playing, I play for about 10 minutes, and then the stream crashes. For that 10 minutes performance is absolutely flawless until it suddenly crashes. It is always around 10 minutes of playtime. Logs are attached in comment below.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"110xiz6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"gargamel314\", \"discussion_type\": null, \"num_comments\": 11, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/110xiz6/problems_streaming_to_moonlight_via_intel_arc_a770/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/110xiz6/problems_streaming_to_moonlight_via_intel_arc_a770/\", \"subreddit_subscribers\": 876, \"created_utc\": 1676256757.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" \\n\\nHi! I started using Sunshine 2 days ago and test it against Steam Link. I was delighted to find out that it works like a charm with latest release 0.18.1 but I have 2 issues. Steam Big Picture was working just find at the beginning but now every time I select it from Moonlight it just opens the Desktop instead... I didn't touch anything it just happened.\\n\\nSecond, I get constant microstutters while streaming. My pc is a 9900K, 16GB ram, 4080 and moonlight is running on an Apple TV 4K on a gigabit wired connection. It happens no matter the encoder (HEVC or H264), the resolution, the in game settings, vsync on/off.... I have tried to disable background refresh also in Apple TV but still the issue remains...\\n\\nAny solution for these issues? They are the only things preventing me from switching completely, since Sunshine works better atm than Steam Link... Thanks in advance!\", \"author_fullname\": \"t2_313xgm2w\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine + stutter + big picture mode issues\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_110bdt5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1676192768.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi! I started using Sunshine 2 days ago and test it against Steam Link. I was delighted to find out that it works like a charm with latest release 0.18.1 but I have 2 issues. Steam Big Picture was working just find at the beginning but now every time I select it from Moonlight it just opens the Desktop instead... I didn\\u0026#39;t touch anything it just happened.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESecond, I get constant microstutters while streaming. My pc is a 9900K, 16GB ram, 4080 and moonlight is running on an Apple TV 4K on a gigabit wired connection. It happens no matter the encoder (HEVC or H264), the resolution, the in game settings, vsync on/off.... I have tried to disable background refresh also in Apple TV but still the issue remains...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny solution for these issues? They are the only things preventing me from switching completely, since Sunshine works better atm than Steam Link... Thanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"110bdt5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"iAzriel84\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/110bdt5/sunshine_stutter_big_picture_mode_issues/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/110bdt5/sunshine_stutter_big_picture_mode_issues/\", \"subreddit_subscribers\": 876, \"created_utc\": 1676192768.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GSMS v0.3.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_10z9y9x\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/LWJrDcsAqw40hM-cEjYO0Sq48sQqLwBxhIlTvYwtCzE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1676082677.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?auto=webp\\u0026s=e1febc40ed8551b88b8c28fa7d6a277601897af0\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f22854dc11412b4a3b0cc5ac70aca248dcfd731e\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=13e76c999265f4fbca0536904515586cfbe108c0\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=fbb89784efba55ea1ba95fe0e6c5f3a14c73f1f7\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=df07453ed3f3afe841d14c4911c55931784e5ad6\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3f2fc6c0cbb90126ca1e01fd18fb932ec8cfc036\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/LCGEDHLUX0ueECK8qj0O0sZETEvmh5Qs5P5ZzyehMPI.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d48227a4c532602f216a391e33d10c8742e03d8f\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"xW_penK_ekYQTVXDNFkCmgQmqfEIpDoTMDJitWb7TWs\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"10z9y9x\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/10z9y9x/gsms_v030_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.0\", \"subreddit_subscribers\": 876, \"created_utc\": 1676082677.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I cant make AUR package work with NVFBC, no error, casting by x11, nvidia-patch installed, so I dont where to track this issue.\\n\\nSo I use flatpak app instead, the issue is, I dont know how to make it become a system service (not --user), for login at gdm screen.\\n\\nPls help me if you can solve any problems above.\", \"author_fullname\": \"t2_eu5jaa2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to run sunshine flatpak as a system service, for gdm login\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_10vzlfl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1675769408.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI cant make AUR package work with NVFBC, no error, casting by x11, nvidia-patch installed, so I dont where to track this issue.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo I use flatpak app instead, the issue is, I dont know how to make it become a system service (not --user), for login at gdm screen.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPls help me if you can solve any problems above.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"10vzlfl\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ForteDoexe\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/10vzlfl/how_to_run_sunshine_flatpak_as_a_system_service/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/10vzlfl/how_to_run_sunshine_flatpak_as_a_system_service/\", \"subreddit_subscribers\": 876, \"created_utc\": 1675769408.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi everyone, I ran across this plex plugin and thought it was really cool, I was wondering if anyone has ben able to get RetroArcher working on ubuntu server ? I could not figure it out and tried on windows but same thing. Anyone have a Guide , I'm fairly new to this .\\n\\nThanks\", \"author_fullname\": \"t2_1vti8ev\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"RetroArcher on ubuntu server ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_10vk9e8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1675722480.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone, I ran across this plex plugin and thought it was really cool, I was wondering if anyone has ben able to get RetroArcher working on ubuntu server ? I could not figure it out and tried on windows but same thing. Anyone have a Guide , I\\u0026#39;m fairly new to this .\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"10vk9e8\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Cody112233X\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/10vk9e8/retroarcher_on_ubuntu_server/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/10vk9e8/retroarcher_on_ubuntu_server/\", \"subreddit_subscribers\": 876, \"created_utc\": 1675722480.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-jellyfin v0.0.1 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_10tivna\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/z1oGZAxb8AJuLQWf_TJ_-cdITRdL8CSCQn7SMNtclqU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1675524130.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Themerr-jellyfin/releases/tag/v0.0.1\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?auto=webp\\u0026s=14a4de57ed4069f80abba97e44f3233cc76c83b8\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=2763b1497a1fa91066fbb43bda68e789a0d3af96\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=9c9dac353814b268baf97b691240d4841a6852bc\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=151fd7b7e50b8d60c2e2db92b804c96fdbc67626\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=23139b2f384e1f43315870cc30322ad53016b5f5\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=74f977845cd426af593c50093f35f8e15720ae65\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/KRVIxa6ycLmJZ-LhqeI_BBLhSRu-70lo7GMkJp2yhgo.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=1fee6f4efe8816b72c065250df30872f8f5ba758\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"Mab3i6bpvNs6vV2151eZDB3uAlQ0b0el-ybKA6RAJS8\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"subreddit_type\": \"public\", \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"10tivna\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/10tivna/themerrjellyfin_v001_released/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://github.com/LizardByte/Themerr-jellyfin/releases/tag/v0.0.1\", \"subreddit_subscribers\": 876, \"created_utc\": 1675524130.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey guys i have installed sunshine on my host pc but how can i connect it with my moonlight pc with different internet. it is asking for ip address but its not working [https://whatismyipaddress.com/](https://whatismyipaddress.com/) i am using this ip.\\n\\nplease help\", \"author_fullname\": \"t2_5pt89pvr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can i connect sunshine with moonlight over the internet\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": null, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_10sfla4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1675413991.0, \"link_flair_type\": \"text\", \"wls\": null, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey guys i have installed sunshine on my host pc but how can i connect it with my moonlight pc with different internet. it is asking for ip address but its not working \\u003Ca href=\\\"https://whatismyipaddress.com/\\\"\\u003Ehttps://whatismyipaddress.com/\\u003C/a\\u003E i am using this ip.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eplease help\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"10sfla4\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"AAbrains\", \"discussion_type\": null, \"num_comments\": 12, \"send_replies\": true, \"whitelist_status\": null, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/10sfla4/how_can_i_connect_sunshine_with_moonlight_over/\", \"parent_whitelist_status\": null, \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/10sfla4/how_can_i_connect_sunshine_with_moonlight_over/\", \"subreddit_subscribers\": 876, \"created_utc\": 1675413991.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}], \"before\": null}}" + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": \"t3_167fid0\", \"dist\": 100, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I would like to know if the Sunshine .deb file from Github can be installed on Debian 13 (testing)?\\n\\nAbout three weeks ago, I was in Debian 12 (stable) and upgraded to testing because my Steam games would not launch. I was able to play any Steam games on Debian 13 after the upgrade.\\n\\nThe issue now is when I noticed that the system wanted me to run ```apt autoremove``` because of the 100+ old packages that are not needed. Sunshine broke because it wasn't compatible with the newer packages.\\n\\nHas anyone got Sunshine working with Debian 13?\", \"author_fullname\": \"t2_4b61cig1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Is Sunshine working with Debian 13 testing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1kbb6wg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1746000409.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI would like to know if the Sunshine .deb file from Github can be installed on Debian 13 (testing)?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAbout three weeks ago, I was in Debian 12 (stable) and upgraded to testing because my Steam games would not launch. I was able to play any Steam games on Debian 13 after the upgrade.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe issue now is when I noticed that the system wanted me to run \\u003Ccode\\u003Eapt autoremove\\u003C/code\\u003E because of the 100+ old packages that are not needed. Sunshine broke because it wasn\\u0026#39;t compatible with the newer packages.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHas anyone got Sunshine working with Debian 13?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1kbb6wg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"forwardslashroot\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1kbb6wg/is_sunshine_working_with_debian_13_testing/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1746000409.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello, I recently updated to Fedora 42 and doing so removed my copr Sunshine.\\n\\nIs Sunshine working with Fedora 42 yet or do we have a timeline when it might work again?\\n\\nThanks!\\n\\n \\n\\\\[Solved - Devs responded to use beta\\\\]\", \"author_fullname\": \"t2_xguspqcsg\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Fedora 42\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1k7t2tz\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1745723204.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1745607974.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I recently updated to Fedora 42 and doing so removed my copr Sunshine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs Sunshine working with Fedora 42 yet or do we have a timeline when it might work again?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[Solved - Devs responded to use beta]\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1k7t2tz\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Few_Imagination1769\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1k7t2tz/fedora_42/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1745607974.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I am running pop os I just did fresh install added steam and the sunshine flatpak. I noticed on moonlight that the steam big picture app was not already added via sunshine application. I then added the steam big picture app using the sunshine apps example. The problem is when I start steam from moonlight I just loads to desktop without opening big picture mode. I also ran the recommend command to use for the app in terminal and it opens just fine. What could be the issue I have done this before in the past and worked fine.\", \"author_fullname\": \"t2_8y693gj0\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Steam app\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1k6qqcj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1745497038.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am running pop os I just did fresh install added steam and the sunshine flatpak. I noticed on moonlight that the steam big picture app was not already added via sunshine application. I then added the steam big picture app using the sunshine apps example. The problem is when I start steam from moonlight I just loads to desktop without opening big picture mode. I also ran the recommend command to use for the app in terminal and it opens just fine. What could be the issue I have done this before in the past and worked fine.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1k6qqcj\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Chukkles22\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1k6qqcj/steam_app/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1k6qqcj/steam_app/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1745497038.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"First of all, love Sunshine! Great software. Now onto my problem:\\n\\nI use Sunshine as my game streaming service (running on Windows 11). I usually play with friends where they connect remotely to my PC using Moonlight. I make sure they enable the host audio on Moonlight's settings since I want to also have audio while I play with everyone else (all of them remote clients).\\n\\nProblem is, the audio is tied to the host audio in the sense that lowering my volume (the Sunshine host volume) lowers everyone else's. Is there a way for me to have independent audio on the Moonlight clients so that I can have a very low volume on the host while the volume on clients does not change or vice-versa?\\n\\nAgain, if I adjust my volume everyone else has to adjust it again. And if I turn it down too low it is impossible for them to hear anything even if they turn it up all the way on their end.\\n\\nBasically, if my audio is always 100% there is no issue on their end because if they lower their own audio to 50% they hear it half as loud. BUT if I lower my host audio to 50% the people who also had the audio at 50% now have it (effectively) at 50% \\\\* 50% = 25% which they can barely hear so they have to adjust it. If I lower the host audio to 20% then there is no way for them to hear audio at more than an effective 20% even if they set their client to 100%.\\n\\nIt's kind of hard to explain but does that make sense?\", \"author_fullname\": \"t2_15bqwts0tc\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Independent client audio stream? (Sunshine + Moonlight)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1jrc0i3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1743773657.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFirst of all, love Sunshine! Great software. Now onto my problem:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI use Sunshine as my game streaming service (running on Windows 11). I usually play with friends where they connect remotely to my PC using Moonlight. I make sure they enable the host audio on Moonlight\\u0026#39;s settings since I want to also have audio while I play with everyone else (all of them remote clients).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProblem is, the audio is tied to the host audio in the sense that lowering my volume (the Sunshine host volume) lowers everyone else\\u0026#39;s. Is there a way for me to have independent audio on the Moonlight clients so that I can have a very low volume on the host while the volume on clients does not change or vice-versa?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAgain, if I adjust my volume everyone else has to adjust it again. And if I turn it down too low it is impossible for them to hear anything even if they turn it up all the way on their end.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically, if my audio is always 100% there is no issue on their end because if they lower their own audio to 50% they hear it half as loud. BUT if I lower my host audio to 50% the people who also had the audio at 50% now have it (effectively) at 50% * 50% = 25% which they can barely hear so they have to adjust it. If I lower the host audio to 20% then there is no way for them to hear audio at more than an effective 20% even if they set their client to 100%.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s kind of hard to explain but does that make sense?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1jrc0i3\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ozone6587\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1jrc0i3/independent_client_audio_stream_sunshine_moonlight/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1jrc0i3/independent_client_audio_stream_sunshine_moonlight/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1743773657.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I am using sunshine to connect from my ipad pro with pencl pro to my windows 10 pc. The stylus works great with low latency and even pressure and tilt, but the cursor lags anytime i start a stroke or just drag (so even when scrolling). When drawing a circle for example, the first quarter of the circle is cut off because the cursor essentially stayed where it was and later caught up. Could this be an issue of windows ink butting in or something different?\\n\\n \\nSo far i tried to recompile sunsine with the input.cpp changed to not send pen\\\\_move data in packets but either it did not change anything or i did someting wrong.\\n\\n \\nLast thing i can describe is that when i hover with the pen it seems like the cursor icon is quickly flashing between standard windows cursor and the dot that windows ink mode uses when in browser, could these two modes be interfering with each other?\\n\\n \\nAny tips would be appreciated.\", \"author_fullname\": \"t2_362mkgds\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stylus cursor has lag upon start of a stroke\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1jh7e9m\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1742646704.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI am using sunshine to connect from my ipad pro with pencl pro to my windows 10 pc. The stylus works great with low latency and even pressure and tilt, but the cursor lags anytime i start a stroke or just drag (so even when scrolling). When drawing a circle for example, the first quarter of the circle is cut off because the cursor essentially stayed where it was and later caught up. Could this be an issue of windows ink butting in or something different?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo far i tried to recompile sunsine with the input.cpp changed to not send pen_move data in packets but either it did not change anything or i did someting wrong.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELast thing i can describe is that when i hover with the pen it seems like the cursor icon is quickly flashing between standard windows cursor and the dot that windows ink mode uses when in browser, could these two modes be interfering with each other?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny tips would be appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1jh7e9m\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"testerl101\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1jh7e9m/stylus_cursor_has_lag_upon_start_of_a_stroke/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1jh7e9m/stylus_cursor_has_lag_upon_start_of_a_stroke/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1742646704.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have a windows 11 Sunshine host running v2025.122.141614.\\n\\nI have a RPI3 running as a Moonlight client which is connected to a TV on the opposite side of the room effectively acting as a LAN HDMI extender. Moonlight is running as a service and will restart if it disconnects for any reason. This runs perpectually and has been for a number of weeks now.\\n\\nI would also like to connect from a Moonlight client in our outbuilding for gaming while entertaining as the warmer weather approaches.\\n\\nBoth clients work perfectly independently, but the 1 client cannot connect without stopping the other. As I would like the RPI3 always on, this is not ideal.\\n\\nI have modified C:\\\\\\\\Program Files\\\\\\\\Sunshine\\\\\\\\config\\\\\\\\sunshine.conf to include `channels=2`as per old information available on Reddit and other forums, but this does not seem to allow m,ultiple clients to connect anymore.\\n\\nWhen I try to connect the second client, it just hangs trying to establish a connect with the following output:\\n\\n me@moonpi:~ $ moonlight stream -1080 -app \\\"Desktop\\\"\\n Searching for server...\\n Connecting to \\u003CSunshineServerIP\\u003E...\\n\\nAlso I cannot find any reference to this config option in any current LizardByte documentation, has it been removed and no longer possible?\\n\\nThanks in advance.\", \"author_fullname\": \"t2_m8z6laxt\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Multiple clients connecting to Windows Sunshine host\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1jf2lqu\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1742405520.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a windows 11 Sunshine host running v2025.122.141614.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a RPI3 running as a Moonlight client which is connected to a TV on the opposite side of the room effectively acting as a LAN HDMI extender. Moonlight is running as a service and will restart if it disconnects for any reason. This runs perpectually and has been for a number of weeks now.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would also like to connect from a Moonlight client in our outbuilding for gaming while entertaining as the warmer weather approaches.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBoth clients work perfectly independently, but the 1 client cannot connect without stopping the other. As I would like the RPI3 always on, this is not ideal.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have modified C:\\\\Program Files\\\\Sunshine\\\\config\\\\sunshine.conf to include \\u003Ccode\\u003Echannels=2\\u003C/code\\u003Eas per old information available on Reddit and other forums, but this does not seem to allow m,ultiple clients to connect anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I try to connect the second client, it just hangs trying to establish a connect with the following output:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Eme@moonpi:~ $ moonlight stream -1080 -app \\u0026quot;Desktop\\u0026quot;\\nSearching for server...\\nConnecting to \\u0026lt;SunshineServerIP\\u0026gt;...\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EAlso I cannot find any reference to this config option in any current LizardByte documentation, has it been removed and no longer possible?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1jf2lqu\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"FullClip_Killer\", \"discussion_type\": null, \"num_comments\": 11, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1jf2lqu/multiple_clients_connecting_to_windows_sunshine/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1742405520.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi All,\\n\\nI am running Sunshine on Linux Mint. I have added Steam Big Picture to Sunshine as per the Sunshine app examples webpage. When I launch Steam Bigpicture from Moonlight on my Tablet or my Pi5, it just goes to the desk top as if I clicked on the Desktop.\\n\\nMy PC has an Ryzen 5 8600G with an RX6600.\\n\\nWhats driving me crazy on my laptop (which also runs Linux Mint), Sunshine auto detects Steam big picture and it works with no issues. My laptop has Ryzen 7 4800H and GTX1650 Ti.\\n\\nCould it be the graphics card difference?\\n\\nI have tried adding different commands, enrolling in the steam client beta but to no avail.\\n\\nThis by the way happens with any app that I try to use detached commands with.\", \"author_fullname\": \"t2_j47ql9o8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine not Launching Steam Big Picture on Linux Mint\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1j6x9w9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1741492610.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1741486480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi All,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am running Sunshine on Linux Mint. I have added Steam Big Picture to Sunshine as per the Sunshine app examples webpage. When I launch Steam Bigpicture from Moonlight on my Tablet or my Pi5, it just goes to the desk top as if I clicked on the Desktop.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy PC has an Ryzen 5 8600G with an RX6600.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhats driving me crazy on my laptop (which also runs Linux Mint), Sunshine auto detects Steam big picture and it works with no issues. My laptop has Ryzen 7 4800H and GTX1650 Ti.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECould it be the graphics card difference?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have tried adding different commands, enrolling in the steam client beta but to no avail.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis by the way happens with any app that I try to use detached commands with.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1j6x9w9\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"GoodBus9133\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1j6x9w9/sunshine_not_launching_steam_big_picture_on_linux/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1741486480.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi y'all,\\n\\nI'm trying to stream my Macbook stream over to my 3DS, with success even - the problem is, though, that none of the 3DS keys are registered by macOS. only the virtual keyboard and trackpad work. Now I did read that gamepads are supported, but is there a way to make the 3DS key be just keyboard inputs? I've tried searching online, and in Sunshine, but found nothing about it. Thanks In advance.\", \"author_fullname\": \"t2_4kjysx5l\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sunshine and macOS\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1j6vogw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1741481389.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi y\\u0026#39;all,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m trying to stream my Macbook stream over to my 3DS, with success even - the problem is, though, that none of the 3DS keys are registered by macOS. only the virtual keyboard and trackpad work. Now I did read that gamepads are supported, but is there a way to make the 3DS key be just keyboard inputs? I\\u0026#39;ve tried searching online, and in Sunshine, but found nothing about it. Thanks In advance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1j6vogw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"fraaaaa4\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1j6vogw/sunshine_and_macos/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1741481389.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Sunshine used to recognize my controller fine, but suddenly it doesn't anymore.\\n\\nAs described in the title, Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't.\\n\\nI already tried to uninstall e install again ViGEmBus, both 1.22.0 and 1.21.442 versions. Tried to uninstall and reinstall Sunshine. Neither worked.\\n\\nI have no other controllers connected to the host or client.\\n\\nI searched Reddit and found a guy who had to reinstall his entire Windows to get things working again.\\n\\nDo you have any idea what might be going on?\", \"author_fullname\": \"t2_10pmfh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn't\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1j27efb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1740966026.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESunshine used to recognize my controller fine, but suddenly it doesn\\u0026#39;t anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs described in the title, Gamestream + Moonlight recognizes controller but Sunshine + Moonlight doesn\\u0026#39;t.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI already tried to uninstall e install again ViGEmBus, both 1.22.0 and 1.21.442 versions. Tried to uninstall and reinstall Sunshine. Neither worked.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no other controllers connected to the host or client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI searched Reddit and found a guy who had to reinstall his entire Windows to get things working again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDo you have any idea what might be going on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1j27efb\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"JulioPSGuarize\", \"discussion_type\": null, \"num_comments\": 12, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1j27efb/gamestream_moonlight_recognizes_controller_but/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1740966026.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Any new solution for the image freezing with Sunshine/Moonlight?\\nAll works perfect, but randomly the image get freezed, sound continues working. I must get out of the session and reenter It.\\nI disabled GPU hardware scheduling in windows 11 but It doesn't solve the problem.\", \"author_fullname\": \"t2_argwok0r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Freeze image\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1iy6zew\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1740520647.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1740520411.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny new solution for the image freezing with Sunshine/Moonlight?\\nAll works perfect, but randomly the image get freezed, sound continues working. I must get out of the session and reenter It.\\nI disabled GPU hardware scheduling in windows 11 but It doesn\\u0026#39;t solve the problem.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1iy6zew\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Bramahputra\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1iy6zew/freeze_image/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1iy6zew/freeze_image/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1740520411.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"the key part is not using the home-brew to install it , but clone it by your self, then manually compile the code and file , the ERROR1 or ERROR2 is mainly about the document , it does not matter!!! so when you compile or make the code just turn it off, then you can finally got the sunshine file , other key messages is please double check your arch , it must be arm64!!! ,not x86-64 or amd64, that means all your package gonna installed must be arm64 arch, that is very important !!!!\\n\\n\\n\\n\\n\\n\\n\\n**1. Installation Process of Sunshine and Encountered Issues**\\n\\n\\n\\n**1.1 Initial Installation and Dependency Issues**\\n\\n\\u2022\\u00a0**Problem Description:**\\n\\nWhen attempting to install\\u00a0sunshine-beta\\u00a0via Homebrew, errors occurred indicating a missing\\u00a0CMakeLists.txt\\u00a0and that dependencies such as\\u00a0nlohmann\\\\_json\\u00a0were not found.\\n\\n\\u2022\\u00a0**Solution Approach:**\\n\\n\\u2022\\u00a0Check and manually install the missing dependencies (e.g.,\\u00a0nlohmann-json).\\n\\n\\u2022\\u00a0Clear the Homebrew cache and retry the installation, or clone the source code manually and compile it.\\n\\n\\u2022\\u00a0**Key Code Examples:**\\n\\n # Install the nlohmann-json dependency\\n brew install nlohmann-json\\n \\n # Clean the cache and reinstall\\n brew uninstall --ignore-dependencies sunshine-beta\\n brew cleanup -s\\n rm -rf ~/Library/Caches/Homebrew/sunshine-beta*\\n brew install lizardbyte/homebrew/sunshine-beta\\n\\n\\n\\n\\n\\n**1.2 Using Manual Source Code Cloning and Compilation**\\n\\n\\u2022\\u00a0**Problem Description:**\\n\\nSince the Homebrew installation failed, you decided to manually clone the Sunshine source code and compile it.\\n\\n\\u2022\\u00a0**Solution Approach:**\\n\\n\\u2022\\u00a0Use\\u00a0git clone --recursive\\u00a0to pull the source code along with all submodules.\\n\\n\\u2022\\u00a0In the source directory, create a dedicated\\u00a0build\\u00a0directory, configure using CMake, then compile and install.\\n\\n\\u2022\\u00a0**Key Code Examples:**\\n\\n git clone --recursive https://github.com/LizardByte/Sunshine.git ~/sunshine-beta\\n cd ~/sunshine-beta\\n mkdir build \\u0026\\u0026 cd build\\n cmake .. -DCMAKE_BUILD_TYPE=Release \\\\\\n -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) \\\\\\n -DOPENSSL_INCLUDE_DIR=$(brew --prefix openssl)/include \\\\\\n -DOPENSSL_SSL_LIBRARY=$(brew --prefix openssl)/lib/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$(brew --prefix openssl)/lib/libcrypto.3.dylib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\n make -j$(sysctl -n hw.ncpu)\\n\\n**2. Linking Errors and OpenSSL/Boost Architecture Issues**\\n\\n\\n\\n**2.1 Error Phenomenon**\\n\\n\\u2022\\u00a0**Error Messages:**\\n\\nDuring the linking phase, errors occurred where several OpenSSL symbols (e.g.,\\u00a0\\\\_SSL\\\\_CTX\\\\_use\\\\_PrivateKey\\\\_file,\\u00a0\\\\_TLS\\\\_client\\\\_method,\\u00a0\\\\_X509\\\\_sign) could not be found, with a message stating \\u201csymbol(s) not found for architecture arm64\\u201d.\\n\\n\\u2022\\u00a0**Analysis:**\\n\\n\\u2022\\u00a0The CMakeCache.txt revealed that the variables\\u00a0OPENSSL\\\\_CRYPTO\\\\_LIBRARY\\u00a0and\\u00a0OPENSSL\\\\_SSL\\\\_LIBRARYwere pointing to libraries under\\u00a0/usr/local/opt/openssl\\u00a0(which are built for x86\\\\_64), while the target architecture is arm64.\\n\\n\\u2022\\u00a0The correct arm64 OpenSSL should be located under\\u00a0/opt/homebrew/opt/openssl@3.\\n\\n\\n\\n**2.2 Solution Approach**\\n\\n\\u2022\\u00a0**Steps:**\\n\\n1.\\u00a0**Check the OpenSSL Library Architecture:**\\n\\n file $(brew --prefix openssl)/lib/libssl.3.dylib\\n\\nThe output should indicate\\u00a0arm64.\\n\\n\\n\\n2.\\u00a0**Clear the Old Build Cache and Reconfigure CMake:**\\n\\nManually specify the correct OpenSSL paths and libraries in the CMake configuration.\\n\\n3.\\u00a0**Set the Environment Variables:**\\n\\nEnsure that CMake uses the correct paths by exporting the necessary variables.\\n\\n\\n\\n\\u2022\\u00a0**Key Code Examples:**\\n\\n # Clear the build directory\\n cd ~/sunshine-beta\\n rm -rf build\\n mkdir build \\u0026\\u0026 cd build\\n \\n # Set environment variables\\n export OPENSSL_ROOT_DIR=$(brew --prefix openssl)\\n export OPENSSL_LIBRARIES=$OPENSSL_ROOT_DIR/lib\\n export OPENSSL_INCLUDE_DIR=$OPENSSL_ROOT_DIR/include\\n export LDFLAGS=\\\"-L$OPENSSL_LIBRARIES\\\"\\n export CPPFLAGS=\\\"-I$OPENSSL_INCLUDE_DIR\\\"\\n export PKG_CONFIG_PATH=\\\"$OPENSSL_LIBRARIES/pkgconfig\\\"\\n \\n # Reconfigure CMake (specifying the correct OpenSSL library paths)\\n cmake .. -DCMAKE_BUILD_TYPE=Release \\\\\\n -DOPENSSL_ROOT_DIR=$OPENSSL_ROOT_DIR \\\\\\n -DOPENSSL_INCLUDE_DIR=$OPENSSL_INCLUDE_DIR \\\\\\n -DOPENSSL_SSL_LIBRARY=$OPENSSL_LIBRARIES/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$OPENSSL_LIBRARIES/libcrypto.3.dylib \\\\\\n -DBOOST_ROOT=$(brew --prefix boost) \\\\\\n -DBOOST_LIBRARYDIR=$(brew --prefix boost)/lib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\n \\n # Compile\\n make -j$(sysctl -n hw.ncpu)\\n\\n**3. Documentation Generation Errors**\\n\\n\\n\\n**3.1 Problem Description**\\n\\n\\u2022\\u00a0**Phenomenon:**\\n\\nDuring compilation, the documentation generation phase (which uses tools such as Doxygen and Graphviz) produced errors, returning Error 2. However, the main executable was successfully generated.\\n\\n\\u2022\\u00a0**Analysis:**\\n\\n\\u2022\\u00a0The documentation is used only to generate developer reference materials and does not affect the runtime operation of Sunshine.\\n\\n\\u2022\\u00a0The error might be caused by misconfiguration of documentation tools or missing input files.\\n\\n\\n\\n**3.2 Solution Approach**\\n\\n\\u2022\\u00a0**If You Don\\u2019t Need Documentation:**\\n\\n\\u2022\\u00a0Reconfigure the build with documentation generation disabled using the\\u00a0-DENABLE\\\\_DOCS=OFF\\u00a0option, or simply compile only the main executable target.\\n\\n\\u2022\\u00a0**Key Code Examples (to skip documentation):**\\n\\n rm -rf build\\n mkdir build \\u0026\\u0026 cd build\\n cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCS=OFF \\\\\\n -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) \\\\\\n -DOPENSSL_INCLUDE_DIR=$(brew --prefix openssl)/include \\\\\\n -DOPENSSL_SSL_LIBRARY=$(brew --prefix openssl)/lib/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$(brew --prefix openssl)/lib/libcrypto.3.dylib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\n # Only compile the main program target to avoid the docs target\\n make sunshine -j$(sysctl -n hw.ncpu)\\n\\n\\n\\n\\u2022\\u00a0**During Installation:**\\n\\nTo bypass errors related to the documentation installation, you can create an empty\\u00a0docs\\u00a0directory before installing:\\n\\n cd ~/sunshine-beta/build\\n mkdir -p docs\\n sudo cmake --install .\\n\\n\", \"author_fullname\": \"t2_78hoo1y6\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Host it in your Apple Silicon machine , here is how\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ivgwj8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1740224413.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethe key part is not using the home-brew to install it , but clone it by your self, then manually compile the code and file , the ERROR1 or ERROR2 is mainly about the document , it does not matter!!! so when you compile or make the code just turn it off, then you can finally got the sunshine file , other key messages is please double check your arch , it must be arm64!!! ,not x86-64 or amd64, that means all your package gonna installed must be arm64 arch, that is very important !!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E1. Installation Process of Sunshine and Encountered Issues\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E1.1 Initial Installation and Dependency Issues\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EProblem Description:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen attempting to install\\u00a0sunshine-beta\\u00a0via Homebrew, errors occurred indicating a missing\\u00a0CMakeLists.txt\\u00a0and that dependencies such as\\u00a0nlohmann_json\\u00a0were not found.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003ESolution Approach:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0Check and manually install the missing dependencies (e.g.,\\u00a0nlohmann-json).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0Clear the Homebrew cache and retry the installation, or clone the source code manually and compile it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EKey Code Examples:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E# Install the nlohmann-json dependency\\nbrew install nlohmann-json\\n\\n# Clean the cache and reinstall\\nbrew uninstall --ignore-dependencies sunshine-beta\\nbrew cleanup -s\\nrm -rf ~/Library/Caches/Homebrew/sunshine-beta*\\nbrew install lizardbyte/homebrew/sunshine-beta\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E1.2 Using Manual Source Code Cloning and Compilation\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EProblem Description:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince the Homebrew installation failed, you decided to manually clone the Sunshine source code and compile it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003ESolution Approach:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0Use\\u00a0git clone --recursive\\u00a0to pull the source code along with all submodules.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0In the source directory, create a dedicated\\u00a0build\\u00a0directory, configure using CMake, then compile and install.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EKey Code Examples:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Egit clone --recursive https://github.com/LizardByte/Sunshine.git ~/sunshine-beta\\ncd ~/sunshine-beta\\nmkdir build \\u0026amp;\\u0026amp; cd build\\ncmake .. -DCMAKE_BUILD_TYPE=Release \\\\\\n -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) \\\\\\n -DOPENSSL_INCLUDE_DIR=$(brew --prefix openssl)/include \\\\\\n -DOPENSSL_SSL_LIBRARY=$(brew --prefix openssl)/lib/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$(brew --prefix openssl)/lib/libcrypto.3.dylib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\nmake -j$(sysctl -n hw.ncpu)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2. Linking Errors and OpenSSL/Boost Architecture Issues\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.1 Error Phenomenon\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EError Messages:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuring the linking phase, errors occurred where several OpenSSL symbols (e.g.,\\u00a0_SSL_CTX_use_PrivateKey_file,\\u00a0_TLS_client_method,\\u00a0_X509_sign) could not be found, with a message stating \\u201csymbol(s) not found for architecture arm64\\u201d.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EAnalysis:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0The CMakeCache.txt revealed that the variables\\u00a0OPENSSL_CRYPTO_LIBRARY\\u00a0and\\u00a0OPENSSL_SSL_LIBRARYwere pointing to libraries under\\u00a0/usr/local/opt/openssl\\u00a0(which are built for x86_64), while the target architecture is arm64.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0The correct arm64 OpenSSL should be located under\\u00a0/opt/homebrew/opt/openssl@3.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E2.2 Solution Approach\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003ESteps:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E1.\\u00a0\\u003Cstrong\\u003ECheck the OpenSSL Library Architecture:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Efile $(brew --prefix openssl)/lib/libssl.3.dylib\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe output should indicate\\u00a0arm64.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2.\\u00a0\\u003Cstrong\\u003EClear the Old Build Cache and Reconfigure CMake:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EManually specify the correct OpenSSL paths and libraries in the CMake configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3.\\u00a0\\u003Cstrong\\u003ESet the Environment Variables:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEnsure that CMake uses the correct paths by exporting the necessary variables.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EKey Code Examples:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E# Clear the build directory\\ncd ~/sunshine-beta\\nrm -rf build\\nmkdir build \\u0026amp;\\u0026amp; cd build\\n\\n# Set environment variables\\nexport OPENSSL_ROOT_DIR=$(brew --prefix openssl)\\nexport OPENSSL_LIBRARIES=$OPENSSL_ROOT_DIR/lib\\nexport OPENSSL_INCLUDE_DIR=$OPENSSL_ROOT_DIR/include\\nexport LDFLAGS=\\u0026quot;-L$OPENSSL_LIBRARIES\\u0026quot;\\nexport CPPFLAGS=\\u0026quot;-I$OPENSSL_INCLUDE_DIR\\u0026quot;\\nexport PKG_CONFIG_PATH=\\u0026quot;$OPENSSL_LIBRARIES/pkgconfig\\u0026quot;\\n\\n# Reconfigure CMake (specifying the correct OpenSSL library paths)\\ncmake .. -DCMAKE_BUILD_TYPE=Release \\\\\\n -DOPENSSL_ROOT_DIR=$OPENSSL_ROOT_DIR \\\\\\n -DOPENSSL_INCLUDE_DIR=$OPENSSL_INCLUDE_DIR \\\\\\n -DOPENSSL_SSL_LIBRARY=$OPENSSL_LIBRARIES/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$OPENSSL_LIBRARIES/libcrypto.3.dylib \\\\\\n -DBOOST_ROOT=$(brew --prefix boost) \\\\\\n -DBOOST_LIBRARYDIR=$(brew --prefix boost)/lib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\n\\n# Compile\\nmake -j$(sysctl -n hw.ncpu)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3. Documentation Generation Errors\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.1 Problem Description\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EPhenomenon:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDuring compilation, the documentation generation phase (which uses tools such as Doxygen and Graphviz) produced errors, returning Error 2. However, the main executable was successfully generated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EAnalysis:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0The documentation is used only to generate developer reference materials and does not affect the runtime operation of Sunshine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0The error might be caused by misconfiguration of documentation tools or missing input files.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E3.2 Solution Approach\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EIf You Don\\u2019t Need Documentation:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0Reconfigure the build with documentation generation disabled using the\\u00a0-DENABLE_DOCS=OFF\\u00a0option, or simply compile only the main executable target.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EKey Code Examples (to skip documentation):\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Erm -rf build\\nmkdir build \\u0026amp;\\u0026amp; cd build\\ncmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_DOCS=OFF \\\\\\n -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) \\\\\\n -DOPENSSL_INCLUDE_DIR=$(brew --prefix openssl)/include \\\\\\n -DOPENSSL_SSL_LIBRARY=$(brew --prefix openssl)/lib/libssl.3.dylib \\\\\\n -DOPENSSL_CRYPTO_LIBRARY=$(brew --prefix openssl)/lib/libcrypto.3.dylib \\\\\\n -DCMAKE_OSX_ARCHITECTURES=arm64\\n# Only compile the main program target to avoid the docs target\\nmake sunshine -j$(sysctl -n hw.ncpu)\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u2022\\u00a0\\u003Cstrong\\u003EDuring Installation:\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETo bypass errors related to the documentation installation, you can create an empty\\u00a0docs\\u00a0directory before installing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecd ~/sunshine-beta/build\\nmkdir -p docs\\nsudo cmake --install .\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1ivgwj8\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SecretTwo7329\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ivgwj8/host_it_in_your_apple_silicon_machine_here_is_how/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1740224413.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"On a windows PC, downloaded the windows installer.\\n\\nWhen I open it nothing seems to happen. Running as administrator doesn't make a difference.\\n\\nI can't seem to figure out the issue, nothing in documentation or other github issues.\\n\\nAnyone know what might be the cause?\\n\\nThanks!\", \"author_fullname\": \"t2_7k07z\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Windows: Sunshine installer executable doesn't start\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1iq7lqa\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1739643661.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn a windows PC, downloaded the windows installer.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I open it nothing seems to happen. Running as administrator doesn\\u0026#39;t make a difference.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u0026#39;t seem to figure out the issue, nothing in documentation or other github issues.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone know what might be the cause?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1iq7lqa\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"HappyGrandPappy\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1iq7lqa/windows_sunshine_installer_executable_doesnt_start/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1iq7lqa/windows_sunshine_installer_executable_doesnt_start/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1739643661.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Algu\\u00e9m pode me ajudar dizendo se \\u00e9 poss\\u00edvel desligar o monitor do pc enquanto uso o moonlight no switch sem que a imagem congele ?\", \"author_fullname\": \"t2_vk5qgzg2p\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Desligar o monitor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1iko9jg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1739024414.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlgu\\u00e9m pode me ajudar dizendo se \\u00e9 poss\\u00edvel desligar o monitor do pc enquanto uso o moonlight no switch sem que a imagem congele ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1iko9jg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Ambitious_Dig_5561\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1iko9jg/desligar_o_monitor/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1iko9jg/desligar_o_monitor/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1739024414.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\\\"_X509_set_version\\\", referenced from:\\n crypto::gen_creds(std::__1::basic_string_view\\u003Cchar, std::__1::char_traits\\u003Cchar\\u003E\\u003E const\\u0026, unsigned int) in crypto.cpp.o\\n \\\"_X509_sign\\\", referenced from:\\n crypto::gen_creds(std::__1::basic_string_view\\u003Cchar, std::__1::char_traits\\u003Cchar\\u003E\\u003E const\\u0026, unsigned int) in crypto.cpp.o\\n \\\"_X509_verify_cert\\\", referenced from:\\n crypto::cert_chain_t::verify(x509_st*) in crypto.cpp.o\\n \\\"_X509_verify_cert_error_string\\\", referenced from:\\n crypto::cert_chain_t::verify(x509_st*) in crypto.cpp.o\\n crypto::cert_chain_t::verify(x509_st*) in crypto.cpp.o\\nld: symbol(s) not found for architecture arm64\\nclang++: error: linker command failed with exit code 1 (use -v to see invocation)\\nm64/lib/libx264.a /tmp/sunshine-beta-20250129-14614-xobigf/third-party/build-deps/dist/Darwin-arm64/lib/libx265.a /opt/homebrew/lib/libboost_locale.dylib /opt/homebrew/lib/libboost_log.dylib /opt/homebrew/lib/libboost_program_options.dylib /usr/local/opt/openssl/lib/libssl.dylib /usr/local/opt/openssl/lib/libcrypto.dylib ../lib/libgtest.a ../third-party/libdisplaydevice/src/common/liblibdisplaydevice_common.a /opt/homebrew/lib/libboost_filesystem.dylib /opt/homebrew/lib/libboost_atomic.dylib /opt/homebrew/lib/libboost_chrono.dylib /opt/homebrew/lib/libboost_system.dylib /opt/homebrew/lib/libboost_thread.dylib\\nmake[2]: *** [tests/test_sunshine] Error 1\\nmake[1]: *** [tests/CMakeFiles/test_sunshine.dir/all] Error 2\\nmake: *** [all] Error 2\\n\\nIf reporting this issue please do so at (not Homebrew/brew or Homebrew/homebrew-core):\\n https://github.com/lizardbyte/homebrew-homebrew/issues\\n\\nTried both the beta and standard and cleared the brew cache before on both.\\n\\nM4 Max running latest Sequoia.\", \"author_fullname\": \"t2_18iw0zsl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unable to build sunshine in macOs Sequoia.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1icqylj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1738147050.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;\\u003Cem\\u003EX509_set_version\\u0026quot;, referenced from:\\n crypto::gen_creds(std::\\u003C/em\\u003E\\u003Cem\\u003E1::basic_string_view\\u0026lt;char, std::\\u003C/em\\u003E\\u003Cem\\u003E1::char_traits\\u0026lt;char\\u0026gt;\\u0026gt; const\\u0026amp;, unsigned int) in crypto.cpp.o\\n \\u0026quot;_X509_sign\\u0026quot;, referenced from:\\n crypto::gen_creds(std::\\u003C/em\\u003E\\u003Cem\\u003E1::basic_string_view\\u0026lt;char, std::\\u003C/em\\u003E_1::char_traits\\u0026lt;char\\u0026gt;\\u0026gt; const\\u0026amp;, unsigned int) in crypto.cpp.o\\n \\u0026quot;_X509_verify_cert\\u0026quot;, referenced from:\\n crypto::cert_chain_t::verify(x509_st\\u003Cem\\u003E) in crypto.cpp.o\\n \\u0026quot;_X509_verify_cert_error_string\\u0026quot;, referenced from:\\n crypto::cert_chain_t::verify(x509_st\\u003C/em\\u003E) in crypto.cpp.o\\n crypto::cert_chain_t::verify(x509_st\\u003Cem\\u003E) in crypto.cpp.o\\nld: symbol(s) not found for architecture arm64\\nclang++: error: linker command failed with exit code 1 (use -v to see invocation)\\nm64/lib/libx264.a /tmp/sunshine-beta-20250129-14614-xobigf/third-party/build-deps/dist/Darwin-arm64/lib/libx265.a /opt/homebrew/lib/libboost_locale.dylib /opt/homebrew/lib/libboost_log.dylib /opt/homebrew/lib/libboost_program_options.dylib /usr/local/opt/openssl/lib/libssl.dylib /usr/local/opt/openssl/lib/libcrypto.dylib ../lib/libgtest.a ../third-party/libdisplaydevice/src/common/liblibdisplaydevice_common.a /opt/homebrew/lib/libboost_filesystem.dylib /opt/homebrew/lib/libboost_atomic.dylib /opt/homebrew/lib/libboost_chrono.dylib /opt/homebrew/lib/libboost_system.dylib /opt/homebrew/lib/libboost_thread.dylib\\nmake[2]: *\\u003C/em\\u003E* [tests/test_sunshine] Error 1\\nmake[1]: *** [tests/CMakeFiles/test_sunshine.dir/all] Error 2\\nmake: *** [all] Error 2\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf reporting this issue please do so at (not Homebrew/brew or Homebrew/homebrew-core):\\n \\u003Ca href=\\\"https://github.com/lizardbyte/homebrew-homebrew/issues\\\"\\u003Ehttps://github.com/lizardbyte/homebrew-homebrew/issues\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETried both the beta and standard and cleared the brew cache before on both.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EM4 Max running latest Sequoia.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?auto=webp\\u0026s=2afe308aca40b927a8035ba9c239f81feedb2b5a\", \"width\": 1280, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=b49a224ae3c43106c6e4850ed14a59a308753ac9\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=4741b7b4fb3a6dc608c8ac7cf5caa542ca580261\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=68bd7864c5cd89026713a474be5d5557a2f1a6ca\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=a6c2198df459bdfb0fbe6b5cd68e994c34b7746e\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2935887176c975d1eac2187e6bc42dc85a863672\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/ERjLgFVMvZaQXKwKKTioSrF9UIDKz0ADjYLum6KOQhM.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=04b11f2f453a21708e9045901b38078bf9942053\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"ZNPhd79pbdAlMwBNVJbqxm_Hk3V47eBbiS0W3xOAA9o\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1icqylj\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ElonsAlcantaraJacket\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1icqylj/unable_to_build_sunshine_in_macos_sequoia/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1738147050.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_dty63\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"new to this , having trouble opening the program. . .\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 76, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ic17wr\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"i.redd.it\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/IApSprz-AtLBRB3-KPnchNNS6d6A5FKwXr3bzLKmoF8.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1738069918.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?auto=webp\\u0026s=0503889d435c21c5530e65183a8c40efc19afa7f\", \"width\": 1920, \"height\": 1046}, \"resolutions\": [{\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a9d4af542433a26741bd4a347a0b266a5da69707\", \"width\": 108, \"height\": 58}, {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f90be7a88d208f4f0e96b509811b0581cae16b85\", \"width\": 216, \"height\": 117}, {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5583e2438226148d4525fc240b0074a7b6877a30\", \"width\": 320, \"height\": 174}, {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=686a533739274992d2fa9cc030f47b44079c938b\", \"width\": 640, \"height\": 348}, {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e5d8951457dba6595dbc5054ceb5686d5d765c4c\", \"width\": 960, \"height\": 523}, {\"url\": \"https://preview.redd.it/s5b606m2iqfe1.png?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=586c2cb182943e8ae3f6dd5b0c1f98f05f1d8e32\", \"width\": 1080, \"height\": 588}], \"variants\": {}, \"id\": \"j4NhMfdPrd0o87HirBjyEp9AryBROfoLNvStUyg5vBI\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ic17wr\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"R0ars\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ic17wr/new_to_this_having_trouble_opening_the_program/\", \"stickied\": false, \"url\": \"https://i.redd.it/s5b606m2iqfe1.png\", \"subreddit_subscribers\": 1087, \"created_utc\": 1738069918.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm running on Pop!\\\\_OS 22.04 and installed Sunshine following [Getting Started](https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#debianubuntu) and [Service](https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#service) however Sunshine would not start on boot.\\n\\nI'm not sure what I ended up with as I fiddiling for a bit with it, but I think that sunshine.service had to be `~/.config/systemd/user/sunshine.service` with content\\n\\n`[Unit]` \\n`Description=Self-hosted game stream host for Moonlight` \\n`StartLimitIntervalSec=500` \\n`StartLimitBurst=5`\\n\\n`[Service]` \\n`# Avoid starting Sunshine before the desktop is fully initialized.` \\n`ExecStartPre=/bin/sleep 5` \\n`ExecStart=/usr/bin/sunshine` \\n`Restart=on-failure` \\n`RestartSec=5s`\\n\\n`[Install]` \\n`#WantedBy=xdg-desktop-autostart.target` \\n[`WantedBy=default.target`](http://WantedBy=default.target)\\n\\nThen enabling it created the symlink in default.target.wants instead of the xdg-desktop-autostart.target.wants\\n\\nIf someone would point in direction of this being a documentation change or a code change on Github I'd like to help others hitting this issue. \", \"author_fullname\": \"t2_qm0cd83e3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Not running on boot with systemctl --user enabled\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ia9bvq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1737880323.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1737879684.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running on Pop!_OS 22.04 and installed Sunshine following \\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#debianubuntu\\\"\\u003EGetting Started\\u003C/a\\u003E and \\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/latest/md_docs_2getting__started.html#service\\\"\\u003EService\\u003C/a\\u003E however Sunshine would not start on boot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure what I ended up with as I fiddiling for a bit with it, but I think that sunshine.service had to be \\u003Ccode\\u003E~/.config/systemd/user/sunshine.service\\u003C/code\\u003E with content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[Unit]\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003EDescription=Self-hosted game stream host for Moonlight\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003EStartLimitIntervalSec=500\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003EStartLimitBurst=5\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[Service]\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003E# Avoid starting Sunshine before the desktop is fully initialized.\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003EExecStartPre=/bin/sleep 5\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003EExecStart=/usr/bin/sunshine\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003ERestart=on-failure\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003ERestartSec=5s\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[Install]\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ccode\\u003E#WantedBy=xdg-desktop-autostart.target\\u003C/code\\u003E\\u003Cbr/\\u003E\\n\\u003Ca href=\\\"http://WantedBy=default.target\\\"\\u003E\\u003Ccode\\u003EWantedBy=default.target\\u003C/code\\u003E\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen enabling it created the symlink in default.target.wants instead of the xdg-desktop-autostart.target.wants\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf someone would point in direction of this being a documentation change or a code change on Github I\\u0026#39;d like to help others hitting this issue. \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ia9bvq\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Top_Mobile_2194\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ia9bvq/not_running_on_boot_with_systemctl_user_enabled/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ia9bvq/not_running_on_boot_with_systemctl_user_enabled/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1737879684.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": 1747711136, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v2025.122.141614 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"user_reports_dismissed\": [[\"It's involuntary pornography and i appear in it\", 1, false, false]], \"thumbnail_height\": 140, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1i7j3qs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"ignore_reports\": true, \"ups\": 12, \"domain\": \"app.lizardbyte.dev\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 12, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/eV3JDE2U8IecxakF5pmNEoy5C4SyeBV5qWOsnNQ7sbk.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1737572982.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://app.lizardbyte.dev/2025-01-22-v2025.122.141614/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?auto=webp\\u0026s=2e0e736c857196029e59ce80b430606dba6263d8\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a8dd03a3e938207dfef50d07f5d71b8980cf4714\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6acc0719eca74d9c1939719473aacb651a3dc842\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"z74cr55Nlok9FlJf0-rq_jbP40zKk1dzMgrwuqNGg9Q\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": -1, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1i7j3qs\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1i7j3qs/sunshine_v2025122141614_released/\", \"stickied\": false, \"url\": \"https://app.lizardbyte.dev/2025-01-22-v2025.122.141614/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1737572982.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I've been curious to try the new Sunshine release with its resolution-switching. I'm also interested to test whether the experimental \\\"New capture method using Windows.Graphics.Capture API on Windows\\\" feature might solve the problems with HAGS freezing the stream under high loads.\\n\\nBut I don't particularly want to rock the boat with my existing setup, which is working well for now, unless the new features seem really worthwhile to me. I'm hoping u/Lizardbyte or someone who's tried it can answer a few questions:\\n\\n\\\\* If I understand correctly, it'll switch the display resolution to what the Moonlight client requests but only if the display being mirrored matches those resolutions. If you're using MTT's VDD, how do you enable less-common resolutions for clients that may not use expected ones?\\n\\n\\\\* If you're using MTT's VDD and you set Sunshine to stream the virtual display, can it also automatically switch that display to be primary, so that games and other applications open there? Can it disable your physical displays while streaming? Does it return to your previous setup -- typically with a physical display as primary -- once the stream is done?\\n\\n\\\\* What happens if there's a crash or freeze while the VDD is primary? Is there any fallback to return primacy to your physical displays so you can take care of things when back at your host computer?\\n\\n\\\\* Is the Windows.Graphics.Capture API feature expected to solve (or really, work around) the HAGS freezes that happen when using real-time streaming on Nvidia cards?\\n\\n\\\\* Has anyone done any performance testing with the Windows.Graphics.Capture API feature? Does appear to generally work as quickly as the other capture method? Are there known issues with it at this stage of development to be wary of going in?\", \"author_fullname\": \"t2_71uwuxdy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Some questions about VDD and the new Sunshine resolution-switching\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1i5u7ul\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1737390692.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve been curious to try the new Sunshine release with its resolution-switching. I\\u0026#39;m also interested to test whether the experimental \\u0026quot;New capture method using Windows.Graphics.Capture API on Windows\\u0026quot; feature might solve the problems with HAGS freezing the stream under high loads.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBut I don\\u0026#39;t particularly want to rock the boat with my existing setup, which is working well for now, unless the new features seem really worthwhile to me. I\\u0026#39;m hoping \\u003Ca href=\\\"/u/Lizardbyte\\\"\\u003Eu/Lizardbyte\\u003C/a\\u003E or someone who\\u0026#39;s tried it can answer a few questions:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* If I understand correctly, it\\u0026#39;ll switch the display resolution to what the Moonlight client requests but only if the display being mirrored matches those resolutions. If you\\u0026#39;re using MTT\\u0026#39;s VDD, how do you enable less-common resolutions for clients that may not use expected ones?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* If you\\u0026#39;re using MTT\\u0026#39;s VDD and you set Sunshine to stream the virtual display, can it also automatically switch that display to be primary, so that games and other applications open there? Can it disable your physical displays while streaming? Does it return to your previous setup -- typically with a physical display as primary -- once the stream is done?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* What happens if there\\u0026#39;s a crash or freeze while the VDD is primary? Is there any fallback to return primacy to your physical displays so you can take care of things when back at your host computer?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Is the Windows.Graphics.Capture API feature expected to solve (or really, work around) the HAGS freezes that happen when using real-time streaming on Nvidia cards?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Has anyone done any performance testing with the Windows.Graphics.Capture API feature? Does appear to generally work as quickly as the other capture method? Are there known issues with it at this stage of development to be wary of going in?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1i5u7ul\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Accomplished-Lack721\", \"discussion_type\": null, \"num_comments\": 8, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1i5u7ul/some_questions_about_vdd_and_the_new_sunshine/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1737390692.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have a raspberry pi 5 with the default debian 12 bookworm os. I have installed retropie on it as an app via manual install method.\\n\\nI am wondering if anyone has tried streaming the retropie's emulation station output to another client such as fire tv stick.\\n\\nBasically will sunshine ~~work on raspberry pi 5 host and~~ stream the emulation station output?\\n\\nI wasn't able to find any relevant document or video.\\n\\nThe alternative I know would be to simply connect my pi 5 to the tv via an hdmi cable but I wanted to experiment with the wireless setup as it will work on all devices on my home network \\n\\nEdit: \\n1. Able to install sunshine. \\n2. Able to stream the default raspberry pi 5 os desktop to firetv stick with moonlight on firetv stick (after setting one extra command on pi 5 for wayland compatibility). But I do need to start sunshine from a terminal started from GUI i.e. from a VNC session since I don't have a physical display connected.\\n3. Not able to connect to pi5 via VNC. Hence trying to start sunshine via remote terminal. Not able to get sunshine start correctly when retropie is configured to start on boot. Basically it is not able to find any display.\\n\\nI am guessing that there is some problem with me starting sunshine via a remote terminal. I will now try to figure how to get sunshine working correctly for default desktop via a remote session since it works through the gui launched terminal. \", \"author_fullname\": \"t2_io263\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Using sunshine on raspberry pi 5?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1i522bs\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1737317081.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1737303435.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a raspberry pi 5 with the default debian 12 bookworm os. I have installed retropie on it as an app via manual install method.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am wondering if anyone has tried streaming the retropie\\u0026#39;s emulation station output to another client such as fire tv stick.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBasically will sunshine \\u003Cdel\\u003Ework on raspberry pi 5 host and\\u003C/del\\u003E stream the emulation station output?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wasn\\u0026#39;t able to find any relevant document or video.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe alternative I know would be to simply connect my pi 5 to the tv via an hdmi cable but I wanted to experiment with the wireless setup as it will work on all devices on my home network \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: \\n1. Able to install sunshine. \\n2. Able to stream the default raspberry pi 5 os desktop to firetv stick with moonlight on firetv stick (after setting one extra command on pi 5 for wayland compatibility). But I do need to start sunshine from a terminal started from GUI i.e. from a VNC session since I don\\u0026#39;t have a physical display connected.\\n3. Not able to connect to pi5 via VNC. Hence trying to start sunshine via remote terminal. Not able to get sunshine start correctly when retropie is configured to start on boot. Basically it is not able to find any display.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am guessing that there is some problem with me starting sunshine via a remote terminal. I will now try to figure how to get sunshine working correctly for default desktop via a remote session since it works through the gui launched terminal. \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1i522bs\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"rents17\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1i522bs/using_sunshine_on_raspberry_pi_5/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1737303435.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v2025.118.151840 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1i4ma0r\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.99, \"ignore_reports\": false, \"ups\": 49, \"domain\": \"app.lizardbyte.dev\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 49, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/G5Q9gyCOvGGsYUEINpzv5h4j6_uyJAYbTsvqmGj-hSw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1737248375.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://app.lizardbyte.dev/2025-01-18-v2025.118.151840/\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?auto=webp\\u0026s=2e0e736c857196029e59ce80b430606dba6263d8\", \"width\": 256, \"height\": 256}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=a8dd03a3e938207dfef50d07f5d71b8980cf4714\", \"width\": 108, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/rP5lvAM0UERVK8jPFUM7hvZaNgBMliXz8Q0Hg9KOZLo.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6acc0719eca74d9c1939719473aacb651a3dc842\", \"width\": 216, \"height\": 216}], \"variants\": {}, \"id\": \"z74cr55Nlok9FlJf0-rq_jbP40zKk1dzMgrwuqNGg9Q\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1i4ma0r\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1i4ma0r/sunshine_v2025118151840_released/\", \"stickied\": false, \"url\": \"https://app.lizardbyte.dev/2025-01-18-v2025.118.151840/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1737248375.0, \"num_crossposts\": 2, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Using arch Linux\", \"author_fullname\": \"t2_14fptt63hd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine always defaults to sunshine-sink audio (and it doesnt work) using my normal audio playback device works. How do I disable this behaviour? (LINUX)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1hxmrtf\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1736455510.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsing arch Linux\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1hxmrtf\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Vast-Application5848\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1hxmrtf/sunshine_always_defaults_to_sunshinesink_audio/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1hxmrtf/sunshine_always_defaults_to_sunshinesink_audio/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1736455510.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Oops, I didn't realize there was a subreddit specifically for Sunshine. I created a question here [https://www.reddit.com/r/MoonlightStreaming/comments/1hsapkh/sunshine\\\\_moonlight\\\\_not\\\\_working/](https://www.reddit.com/r/MoonlightStreaming/comments/1hsapkh/sunshine_moonlight_not_working/), if anybody here is able to provide help that would be greatly appreciated.\\n\\nHere are the logs from Sunshine when I try to start it\\n\\n`[2025:01:02:17:44:09]: Info: Sunshine version: v0.23.1`\\n\\n`[2025:01:02:17:44:09]: Info: System tray created`\\n\\n\\n\\n`(sunshine:7207): libayatana-appindicator-WARNING **: 17:44:09.969: Unable to get the session bus: Failed to execute child process \\u201cdbus-launch\\u201d (No such file or directory)`\\n\\n\\n\\n`(sunshine:7207): LIBDBUSMENU-GLIB-WARNING **: 17:44:09.969: Unable to get session bus: Failed to execute child process \\u201cdbus-launch\\u201d (No such file or directory)`\\n\\n`[2025:01:02:17:44:10]: Error: Failed to create session: This hardware does not support NvFBC`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u003E nvidia-drm`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u003E i915`\\n\\n`[2025:01:02:17:44:10]: Error: Environment variable WAYLAND_DISPLAY has not been defined`\\n\\n`[2025:01:02:17:44:10]: Info: Detecting monitors`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 0: DP-0, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 1: DP-1, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 2: DP-2, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 3: DP-3, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 4: HDMI-0, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 5: DP-4, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 6: DP-5, connected: true`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 7: DP-2-1, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 8: HDMI-2-1, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: Detected monitor 9: HDMI-2-2, connected: false`\\n\\n`[2025:01:02:17:44:10]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //`\\n\\n`[2025:01:02:17:44:10]: Info: Trying encoder [nvenc]`\\n\\n`[2025:01:02:17:44:10]: Info: Screencasting with KMS`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u003E nvidia-drm`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u003E i915`\\n\\n`[2025:01:02:17:44:10]: Error: Couldn't find monitor [0]`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u003E nvidia-drm`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u003E i915`\\n\\n`[2025:01:02:17:44:10]: Error: Couldn't find monitor [0]`\\n\\n`[2025:01:02:17:44:10]: Info: Screencasting with KMS`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u003E nvidia-drm`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u003E i915`\\n\\n`[2025:01:02:17:44:10]: Error: Couldn't find monitor [0]`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u003E nvidia-drm`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u003E i915`\\n\\n`[2025:01:02:17:44:10]: Error: Couldn't find monitor [0]`\\n\\n`[2025:01:02:17:44:10]: Info: Encoder [nvenc] failed`\\n\\n`[2025:01:02:17:44:10]: Info: Trying encoder [vaapi]`\\n\\n`[2025:01:02:17:44:10]: Info: Screencasting with KMS`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: Found monitor for DRM screencasting`\\n\\n`[2025:01:02:17:44:10]: Error: Failed to determine panel orientation, defaulting to landscape.`\\n\\n`[2025:01:02:17:44:10]: Info: Found connector ID [35]`\\n\\n`[2025:01:02:17:44:10]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/simpledrm_drv_video.so`\\n\\n`libva info: va_openDriver() returns -1`\\n\\n`[2025:01:02:17:44:10]: Error: Couldn't initialize va display: unknown libva error`\\n\\n`[2025:01:02:17:44:10]: Warning: Monitor doesn't support hardware encoding. Reverting back to GPU -\\u003E RAM -\\u003E GPU`\\n\\n`[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:10]: Info: Found monitor for DRM screencasting`\\n\\n`[2025:01:02:17:44:10]: Error: Failed to determine panel orientation, defaulting to landscape.`\\n\\n`[2025:01:02:17:44:10]: Info: Found connector ID [35]`\\n\\n`[2025:01:02:17:44:10]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!`\\n\\n`MESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\\\\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)`\\n\\n`[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:10]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:10]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a52ddc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).`\\n\\n`[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [h264_vaapi] after error: Invalid argument`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a570dc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).`\\n\\n`[2025:01:02:17:44:10]: Error: Could not open codec [h264_vaapi]: Invalid argument`\\n\\n`[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:10]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:10]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a570dc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).`\\n\\n`[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [h264_vaapi] after error: Invalid argument`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a52ddc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).`\\n\\n`[2025:01:02:17:44:10]: Error: Could not open codec [h264_vaapi]: Invalid argument`\\n\\n`[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:10]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:10]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:10]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:10]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a52ddc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).`\\n\\n`[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [hevc_vaapi] after error: Function not implemented`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a570dc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).`\\n\\n`[2025:01:02:17:44:10]: Error: Could not open codec [hevc_vaapi]: Function not implemented`\\n\\n`[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:10]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:10]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a570dc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).`\\n\\n`[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [hevc_vaapi] after error: Function not implemented`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a52ddc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).`\\n\\n`[2025:01:02:17:44:10]: Error: Could not open codec [hevc_vaapi]: Function not implemented`\\n\\n`[2025:01:02:17:44:11]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:11]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:11]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a52ddc0] No usable encoding profile found.`\\n\\n`[2025:01:02:17:44:11]: Info: Retrying with fallback configuration options for [av1_vaapi] after error: Function not implemented`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a570dc0] No usable encoding profile found.`\\n\\n`[2025:01:02:17:44:11]: Error: Could not open codec [av1_vaapi]: Function not implemented`\\n\\n`[2025:01:02:17:44:11]: Info: SDR color coding [Rec. 601]`\\n\\n`[2025:01:02:17:44:11]: Info: Color depth: 8-bit`\\n\\n`[2025:01:02:17:44:11]: Info: Color range: [JPEG]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a570dc0] No usable encoding profile found.`\\n\\n`[2025:01:02:17:44:11]: Info: Retrying with fallback configuration options for [av1_vaapi] after error: Function not implemented`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so`\\n\\n`libva info: Found init function __vaDriverInit_1_20`\\n\\n`libva info: va_openDriver() returns 0`\\n\\n`[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a52ddc0] No usable encoding profile found.`\\n\\n`[2025:01:02:17:44:11]: Error: Could not open codec [av1_vaapi]: Function not implemented`\\n\\n`[2025:01:02:17:44:11]: Info: Screencasting with KMS`\\n\\n`[2025:01:02:17:44:11]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:11]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:11]: Info: Found monitor for DRM screencasting`\\n\\n`[2025:01:02:17:44:11]: Error: Failed to determine panel orientation, defaulting to landscape.`\\n\\n`[2025:01:02:17:44:11]: Info: Found connector ID [35]`\\n\\n`libva info: VA-API version 1.20.0`\\n\\n`[2025:01:02:17:44:11]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!`\\n\\n`libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/simpledrm_drv_video.so`\\n\\n`libva info: va_openDriver() returns -1`\\n\\n`[2025:01:02:17:44:11]: Error: Couldn't initialize va display: unknown libva error`\\n\\n`[2025:01:02:17:44:11]: Warning: Monitor doesn't support hardware encoding. Reverting back to GPU -\\u003E RAM -\\u003E GPU`\\n\\n`[2025:01:02:17:44:11]: Info: /dev/dri/card0 -\\u003E simpledrm`\\n\\n`[2025:01:02:17:44:11]: Warning: No render device name for: /dev/dri/card0`\\n\\n`[2025:01:02:17:44:11]: Info: Found monitor for DRM screencasting`\\n\\n`[2025:01:02:17:44:11]: Error: Failed to determine panel orientation, defaulting to landscape.`\\n\\n`[2025:01:02:17:44:11]: Info: Found connector ID [35]`\\n\\n`[2025:01:02:17:44:11]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!`\\n\\n`MESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\\\\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)`\\n\\n`[2025:01:02:17:44:11]: Info:` \\n\\n`[2025:01:02:17:44:11]: Info: // Ignore any errors mentioned above, they are not relevant. //`\\n\\n`[2025:01:02:17:44:11]: Info:` \\n\\n`[2025:01:02:17:44:11]: Info: Found H.264 encoder: h264_vaapi [vaapi]`\\n\\n`[2025:01:02:17:44:11]: Info: Adding avahi service Sunshine`\\n\\n`[2025:01:02:17:44:11]: Info: Configuration UI available at [https://localhost:47990]`\\n\\n`[2025:01:02:17:44:11]: Info: Avahi service Sunshine successfully established.`\", \"author_fullname\": \"t2_hlztl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine -\\u003E Moonlight Not Working\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1hsaz8h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1735868979.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOops, I didn\\u0026#39;t realize there was a subreddit specifically for Sunshine. I created a question here \\u003Ca href=\\\"https://www.reddit.com/r/MoonlightStreaming/comments/1hsapkh/sunshine_moonlight_not_working/\\\"\\u003Ehttps://www.reddit.com/r/MoonlightStreaming/comments/1hsapkh/sunshine_moonlight_not_working/\\u003C/a\\u003E, if anybody here is able to provide help that would be greatly appreciated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere are the logs from Sunshine when I try to start it\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:09]: Info: Sunshine version: v0.23.1\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:09]: Info: System tray created\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(sunshine:7207): libayatana-appindicator-WARNING **: 17:44:09.969: Unable to get the session bus: Failed to execute child process \\u201cdbus-launch\\u201d (No such file or directory)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E(sunshine:7207): LIBDBUSMENU-GLIB-WARNING **: 17:44:09.969: Unable to get session bus: Failed to execute child process \\u201cdbus-launch\\u201d (No such file or directory)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Failed to create session: This hardware does not support NvFBC\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u0026gt; nvidia-drm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Environment variable WAYLAND_DISPLAY has not been defined\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detecting monitors\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 0: DP-0, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 1: DP-1, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 2: DP-2, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 3: DP-3, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 4: HDMI-0, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 5: DP-4, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 6: DP-5, connected: true\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 7: DP-2-1, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 8: HDMI-2-1, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Detected monitor 9: HDMI-2-2, connected: false\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Trying encoder [nvenc]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Screencasting with KMS\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u0026gt; nvidia-drm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u0026gt; nvidia-drm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Screencasting with KMS\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u0026gt; nvidia-drm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card2 -\\u0026gt; nvidia-drm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Encoder [nvenc] failed\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Trying encoder [vaapi]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Screencasting with KMS\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Found monitor for DRM screencasting\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Failed to determine panel orientation, defaulting to landscape.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Found connector ID [35]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/simpledrm_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns -1\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Couldn\\u0026#39;t initialize va display: unknown libva error\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: Monitor doesn\\u0026#39;t support hardware encoding. Reverting back to GPU -\\u0026gt; RAM -\\u0026gt; GPU\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Found monitor for DRM screencasting\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Failed to determine panel orientation, defaulting to landscape.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Found connector ID [35]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EMESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\\\\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a52ddc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [h264_vaapi] after error: Invalid argument\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a570dc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Could not open codec [h264_vaapi]: Invalid argument\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a570dc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [h264_vaapi] after error: Invalid argument\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [h264_vaapi @ 0x61466a52ddc0] Driver does not support any RC mode compatible with selected options (supported modes: CQP).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Could not open codec [h264_vaapi]: Invalid argument\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a52ddc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [hevc_vaapi] after error: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a570dc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Could not open codec [hevc_vaapi]: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a570dc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Info: Retrying with fallback configuration options for [hevc_vaapi] after error: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: [hevc_vaapi @ 0x61466a52ddc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:10]: Error: Could not open codec [hevc_vaapi]: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a52ddc0] No usable encoding profile found.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Retrying with fallback configuration options for [av1_vaapi] after error: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a570dc0] No usable encoding profile found.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: Could not open codec [av1_vaapi]: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: SDR color coding [Rec. 601]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Color depth: 8-bit\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Color range: [JPEG]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a570dc0] No usable encoding profile found.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Retrying with fallback configuration options for [av1_vaapi] after error: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Found init function __vaDriverInit_1_20\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns 0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: [av1_vaapi @ 0x61466a52ddc0] No usable encoding profile found.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: Could not open codec [av1_vaapi]: Function not implemented\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Screencasting with KMS\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Found monitor for DRM screencasting\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: Failed to determine panel orientation, defaulting to landscape.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Found connector ID [35]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: VA-API version 1.20.0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/simpledrm_drv_video.so\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Elibva info: va_openDriver() returns -1\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: Couldn\\u0026#39;t initialize va display: unknown libva error\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Warning: Monitor doesn\\u0026#39;t support hardware encoding. Reverting back to GPU -\\u0026gt; RAM -\\u0026gt; GPU\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: /dev/dri/card0 -\\u0026gt; simpledrm\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Warning: No render device name for: /dev/dri/card0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Found monitor for DRM screencasting\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Error: Failed to determine panel orientation, defaulting to landscape.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Found connector ID [35]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Warning: No KMS cursor plane found. Cursor may not be displayed while streaming!\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003EMESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so: cannot open shared object file: No such file or directory (search paths /usr/lib/x86_64-linux-gnu/dri:\\\\$${ORIGIN}/dri:/usr/lib/dri, suffix _dri)\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info:\\u003C/code\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: // Ignore any errors mentioned above, they are not relevant. //\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info:\\u003C/code\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Found H.264 encoder: h264_vaapi [vaapi]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Adding avahi service Sunshine\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Configuration UI available at [https://localhost:47990]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2025:01:02:17:44:11]: Info: Avahi service Sunshine successfully established.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1hsaz8h\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"pj778\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1hsaz8h/sunshine_moonlight_not_working/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1hsaz8h/sunshine_moonlight_not_working/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1735868979.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone ! \\n\\nI\\u2019ve got a PC with a 3080 Ti and a 5800X3D streaming to my NVIDIA Shield Pro using Sunshine. Both are connected via Ethernet. My TV is 4K 60Hz, but my main monitor is 1440p 140Hz, so I stream at 1440p 60fps.\\n\\nWhen I play games like *Dragon Ball Z: Kakarot* or *Zelda Wind Waker* on RetroBat, the latency is super low (under 10ms), and everything feels smooth. However, when I switch to CEMU (Wii U) or PS3 games using emulators, the latency jumps to around 20ms, even though my CPU/GPU usage is fine and not stressed.\\n\\nI can really feel the difference when playing those games, and I\\u2019m trying to figure out why this is happening. Why would emulated games introduce more latency compared to RetroBat or simpler games?\\n\\nAnyone got ideas or suggestions ?\", \"author_fullname\": \"t2_ni9wp\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Latency with CEMU and RPCS3\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1hogl12\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1735423502.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone ! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ve got a PC with a 3080 Ti and a 5800X3D streaming to my NVIDIA Shield Pro using Sunshine. Both are connected via Ethernet. My TV is 4K 60Hz, but my main monitor is 1440p 140Hz, so I stream at 1440p 60fps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I play games like \\u003Cem\\u003EDragon Ball Z: Kakarot\\u003C/em\\u003E or \\u003Cem\\u003EZelda Wind Waker\\u003C/em\\u003E on RetroBat, the latency is super low (under 10ms), and everything feels smooth. However, when I switch to CEMU (Wii U) or PS3 games using emulators, the latency jumps to around 20ms, even though my CPU/GPU usage is fine and not stressed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can really feel the difference when playing those games, and I\\u2019m trying to figure out why this is happening. Why would emulated games introduce more latency compared to RetroBat or simpler games?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone got ideas or suggestions ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1hogl12\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"umadgen\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1hogl12/latency_with_cemu_and_rpcs3/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1hogl12/latency_with_cemu_and_rpcs3/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1735423502.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello, I just installed Sunshine on my PC, after testing, the pen input on my galaxy s6 lite on Moonlight was working for about two minutes, then suddenly is no longer working.\\n\\n [notify_pre_releases] -- [enabled]\\n [output_name] -- [1]\\n [sunshine_name] -- [Fedora]\\n [controller] -- [disabled]\\n [keyboard] -- [disabled]\\n [2024-12-06 11:10:54.856]: Info: Sunshine version: v2024.1204.170534\\n [2024-12-06 11:10:54.856]: Info: Package Publisher: LizardByte\\n [2024-12-06 11:10:54.856]: Info: Publisher Website: \\n [2024-12-06 11:10:54.856]: Info: Get support: \\n Cannot load libcuda.so.1\\n [2024-12-06 11:10:54.872]: Error: Couldn't load cuda: -1\\n [2024-12-06 11:10:54.872]: Info: Found display [wayland-0]\\n [2024-12-06 11:10:54.872]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n [2024-12-06 11:10:54.872]: Info: Found interface: wl_output(65) version 4\\n [2024-12-06 11:10:54.872]: Info: Found interface: wl_output(66) version 4\\n [2024-12-06 11:10:54.872]: Warning: Missing Wayland wire for wlr-export-dmabuf\\n [2024-12-06 11:10:54.873]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:54.874]: Info: Found display [wayland-0]\\n [2024-12-06 11:10:54.874]: Info: Found display [wayland-0]\\n [2024-12-06 11:10:54.874]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n [2024-12-06 11:10:54.874]: Info: Found interface: wl_output(65) version 4\\n [2024-12-06 11:10:54.874]: Info: Found interface: wl_output(66) version 4\\n [2024-12-06 11:10:54.874]: Info: Resolution: 1920x1080\\n [2024-12-06 11:10:54.874]: Info: Resolution: 1920x1200\\n [2024-12-06 11:10:54.874]: Info: Offset: 1920x0\\n [2024-12-06 11:10:54.874]: Info: Logical size: 1920x1080\\n [2024-12-06 11:10:54.874]: Info: Name: HDMI-A-1\\n [2024-12-06 11:10:54.874]: Info: Found monitor: Hewlett Packard HP ZR22w/CN41110FL8\\n [2024-12-06 11:10:54.874]: Info: Offset: 0x0\\n [2024-12-06 11:10:54.874]: Info: Logical size: 1920x1200\\n [2024-12-06 11:10:54.874]: Info: Name: DP-1\\n [2024-12-06 11:10:54.874]: Info: Found monitor: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n [2024-12-06 11:10:54.874]: Info: -------- Start of KMS monitor list --------\\n [2024-12-06 11:10:54.874]: Info: Monitor 0 is HDMI-A-1: Hewlett Packard HP ZR22w/CN41110FL8\\n [2024-12-06 11:10:54.874]: Info: Monitor 1 is DP-1: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n [2024-12-06 11:10:54.874]: Info: --------- End of KMS monitor list ---------\\n [2024-12-06 11:10:54.876]: Warning: Gamepad ds5 is disabled due to Permission denied\\n [2024-12-06 11:10:54.876]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n [2024-12-06 11:10:54.876]: Info: Trying encoder [nvenc]\\n [2024-12-06 11:10:54.876]: Info: Screencasting with KMS\\n [2024-12-06 11:10:54.876]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:54.877]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:10:54.877]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:54.878]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:10:54.904]: Info: System tray created\\n Gtk-Message: 11:10:54.907: Failed to load module \\\"appmenu-gtk-module\\\"\\n [2024-12-06 11:10:55.078]: Info: Screencasting with KMS\\n [2024-12-06 11:10:55.078]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.079]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:10:55.079]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.080]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:10:55.280]: Info: Encoder [nvenc] failed\\n [2024-12-06 11:10:55.280]: Info: Trying encoder [vaapi]\\n [2024-12-06 11:10:55.280]: Info: Screencasting with KMS\\n [2024-12-06 11:10:55.280]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.281]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:10:55.281]: Info: Found connector ID [103]\\n [2024-12-06 11:10:55.281]: Info: Found cursor plane [82]\\n libva info: VA-API version 1.22.0\\n libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\n libva info: Found init function __vaDriverInit_1_22\\n libva info: va_openDriver() returns 0\\n [2024-12-06 11:10:55.293]: Error: Couldn't query entrypoints: the requested VAProfile is not supported\\n [2024-12-06 11:10:55.294]: Warning: Monitor 1 doesn't support hardware encoding. Reverting back to GPU -\\u003E RAM -\\u003E GPU\\n [2024-12-06 11:10:55.295]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.295]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:10:55.295]: Info: Found connector ID [103]\\n [2024-12-06 11:10:55.296]: Info: Found cursor plane [82]\\n [2024-12-06 11:10:55.306]: Info: Creating encoder [h264_vaapi]\\n [2024-12-06 11:10:55.306]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:10:55.306]: Info: Color depth: 8-bit\\n [2024-12-06 11:10:55.306]: Info: Color range: JPEG\\n libva info: VA-API version 1.22.0\\n libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\n libva info: Found init function __vaDriverInit_1_22\\n libva info: va_openDriver() returns 0\\n [2024-12-06 11:10:55.323]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n [2024-12-06 11:10:55.324]: Error: [h264_vaapi @ 0x38d70f40] No usable encoding profile found.\\n [2024-12-06 11:10:55.325]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n [2024-12-06 11:10:55.326]: Info: Creating encoder [h264_vaapi]\\n [2024-12-06 11:10:55.326]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:10:55.326]: Info: Color depth: 8-bit\\n [2024-12-06 11:10:55.326]: Info: Color range: JPEG\\n libva info: VA-API version 1.22.0\\n libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\n libva info: Found init function __vaDriverInit_1_22\\n libva info: va_openDriver() returns 0\\n [2024-12-06 11:10:55.337]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n [2024-12-06 11:10:55.339]: Error: [h264_vaapi @ 0x393fe380] No usable encoding profile found.\\n [2024-12-06 11:10:55.339]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n [2024-12-06 11:10:55.340]: Info: Encoder [vaapi] failed\\n [2024-12-06 11:10:55.343]: Info: Trying encoder [software]\\n [2024-12-06 11:10:55.343]: Info: Screencasting with KMS\\n [2024-12-06 11:10:55.343]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.343]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:10:55.343]: Info: Found connector ID [103]\\n [2024-12-06 11:10:55.344]: Info: Found cursor plane [82]\\n [2024-12-06 11:10:55.353]: Info: Creating encoder [libx264]\\n [2024-12-06 11:10:55.353]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:10:55.353]: Info: Color depth: 8-bit\\n [2024-12-06 11:10:55.353]: Info: Color range: JPEG\\n [2024-12-06 11:10:55.353]: Info: [libx264 @ 0x38d71d00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n [2024-12-06 11:10:55.354]: Info: [libx264 @ 0x38d71d00] profile High, level 4.2, 4:2:0, 8-bit\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] frame I:1 Avg QP:31.00 size: 1203\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] mb I I16..4: 99.9% 0.0% 0.0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] 8x8 transform intra:0.0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] coded y,uvDC,uvAC intra: 0.0% 0.0% 0.0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i16 v,h,dc,p: 97% 0% 3% 0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i8c dc,h,v,p: 100% 0% 0% 0%\\n [2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] kb/s:577.44\\n [2024-12-06 11:10:55.376]: Info: Creating encoder [libx264]\\n [2024-12-06 11:10:55.376]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:10:55.376]: Info: Color depth: 8-bit\\n [2024-12-06 11:10:55.376]: Info: Color range: JPEG\\n [2024-12-06 11:10:55.376]: Info: [libx264 @ 0x38d71d00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n [2024-12-06 11:10:55.377]: Info: [libx264 @ 0x38d71d00] profile High 4:4:4 Predictive, level 4.2, 4:4:4, 8-bit\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] frame I:1 Avg QP:31.00 size: 1312\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] mb I I16..4: 99.9% 0.0% 0.0%\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] 8x8 transform intra:0.0%\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] coded y,u,v intra: 0.0% 0.0% 0.0%\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i16 v,h,dc,p: 97% 0% 3% 0%\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n [2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n [2024-12-06 11:10:55.405]: Info: [libx264 @ 0x38d71d00] kb/s:629.76\\n [2024-12-06 11:10:55.407]: Info: Screencasting with KMS\\n [2024-12-06 11:10:55.407]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:10:55.408]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:10:55.408]: Info: Found connector ID [103]\\n [2024-12-06 11:10:55.408]: Info: Found cursor plane [82]\\n [2024-12-06 11:10:55.418]: Info: \\n [2024-12-06 11:10:55.418]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n [2024-12-06 11:10:55.419]: Info: \\n [2024-12-06 11:10:55.419]: Info: Found H.264 encoder: libx264 [software]\\n [2024-12-06 11:10:55.420]: Info: Configuration UI available at [https://localhost:47990]\\n [2024-12-06 11:10:55.421]: Info: Adding avahi service 192\\n [2024-12-06 11:10:56.335]: Info: Avahi service 192 successfully established.\\n [2024-12-06 11:11:01.642]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n [2024-12-06 11:11:01.642]: Info: Trying encoder [nvenc]\\n [2024-12-06 11:11:01.642]: Info: Screencasting with KMS\\n [2024-12-06 11:11:01.642]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:01.643]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:11:01.643]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:01.644]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:11:01.844]: Info: Screencasting with KMS\\n [2024-12-06 11:11:01.845]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:01.846]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:11:01.846]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:01.846]: Error: Couldn't find monitor [1]\\n [2024-12-06 11:11:02.046]: Info: Encoder [nvenc] failed\\n [2024-12-06 11:11:02.047]: Info: Trying encoder [vaapi]\\n [2024-12-06 11:11:02.047]: Info: Screencasting with KMS\\n [2024-12-06 11:11:02.047]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.048]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:11:02.048]: Info: Found connector ID [103]\\n libva info: VA-API version 1.22.0\\n [2024-12-06 11:11:02.048]: Info: Found cursor plane [82]\\n libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\n libva info: Found init function __vaDriverInit_1_22\\n libva info: va_openDriver() returns 0\\n [2024-12-06 11:11:02.056]: Error: Couldn't query entrypoints: the requested VAProfile is not supported\\n [2024-12-06 11:11:02.057]: Warning: Monitor 1 doesn't support hardware encoding. Reverting back to GPU -\\u003E RAM -\\u003E GPU\\n [2024-12-06 11:11:02.058]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.059]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:11:02.059]: Info: Found connector ID [103]\\n [2024-12-06 11:11:02.059]: Info: Found cursor plane [82]\\n [2024-12-06 11:11:02.069]: Info: Creating encoder [h264_vaapi]\\n [2024-12-06 11:11:02.069]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:11:02.069]: Info: Color depth: 8-bit\\n [2024-12-06 11:11:02.069]: Info: Color range: JPEG\\n libva info: VA-API version 1.22.0\\n libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\n libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\n libva info: Found init function __vaDriverInit_1_22\\n libva info: va_openDriver() returns 0\\n [2024-12-06 11:11:02.079]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n [2024-12-06 11:11:02.081]: Error: [h264_vaapi @ 0x7fa448047800] No usable encoding profile found.\\n [2024-12-06 11:11:02.081]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n [2024-12-06 11:11:02.082]: Info: Encoder [vaapi] failed\\n [2024-12-06 11:11:02.085]: Info: Trying encoder [software]\\n [2024-12-06 11:11:02.085]: Info: Screencasting with KMS\\n [2024-12-06 11:11:02.085]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.085]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:11:02.085]: Info: Found connector ID [103]\\n [2024-12-06 11:11:02.085]: Info: Found cursor plane [82]\\n [2024-12-06 11:11:02.094]: Info: Creating encoder [libx264]\\n [2024-12-06 11:11:02.094]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:11:02.094]: Info: Color depth: 8-bit\\n [2024-12-06 11:11:02.094]: Info: Color range: JPEG\\n [2024-12-06 11:11:02.095]: Info: [libx264 @ 0x7fa448045c00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n [2024-12-06 11:11:02.095]: Info: [libx264 @ 0x7fa448045c00] profile High, level 4.2, 4:2:0, 8-bit\\n [2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] frame I:1 Avg QP:31.00 size: 1203\\n [2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] mb I I16..4: 99.9% 0.0% 0.0%\\n [2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] 8x8 transform intra:0.0%\\n [2024-12-06 11:11:02.119]: Info: [libx264 @ 0x7fa448045c00] coded y,uvDC,uvAC intra: 0.0% 0.0% 0.0%\\n [2024-12-06 11:11:02.119]: Info: [libx264 @ 0x7fa448045c00] i16 v,h,dc,p: 97% 0% 3% 0%\\n [2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n [2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n [2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i8c dc,h,v,p: 100% 0% 0% 0%\\n [2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] kb/s:577.44\\n [2024-12-06 11:11:02.120]: Info: Creating encoder [libx264]\\n [2024-12-06 11:11:02.120]: Info: Color coding: SDR (Rec. 601)\\n [2024-12-06 11:11:02.120]: Info: Color depth: 8-bit\\n [2024-12-06 11:11:02.120]: Info: Color range: JPEG\\n [2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n [2024-12-06 11:11:02.121]: Info: [libx264 @ 0x7fa448045c00] profile High 4:4:4 Predictive, level 4.2, 4:4:4, 8-bit\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] frame I:1 Avg QP:31.00 size: 1312\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] mb I I16..4: 99.9% 0.0% 0.0%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] 8x8 transform intra:0.0%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] coded y,u,v intra: 0.0% 0.0% 0.0%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i16 v,h,dc,p: 97% 0% 3% 0%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n [2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] kb/s:629.76\\n [2024-12-06 11:11:02.152]: Info: Screencasting with KMS\\n [2024-12-06 11:11:02.152]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.153]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:11:02.153]: Info: Found connector ID [103]\\n [2024-12-06 11:11:02.153]: Info: Found cursor plane [82]\\n [2024-12-06 11:11:02.163]: Info: \\n [2024-12-06 11:11:02.164]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n [2024-12-06 11:11:02.164]: Info: \\n [2024-12-06 11:11:02.164]: Info: Found H.264 encoder: libx264 [software]\\n [2024-12-06 11:11:02.164]: Info: Executing [Desktop]\\n [2024-12-06 11:11:02.210]: Info: New streaming session started [active sessions: 1]\\n [2024-12-06 11:11:02.244]: Info: CLIENT CONNECTED\\n [2024-12-06 11:11:02.458]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.459]: Info: Found display [wayland-0]\\n [2024-12-06 11:11:02.459]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n [2024-12-06 11:11:02.459]: Info: Found interface: wl_output(65) version 4\\n [2024-12-06 11:11:02.459]: Info: Found interface: wl_output(66) version 4\\n [2024-12-06 11:11:02.459]: Info: Resolution: 1920x1080\\n [2024-12-06 11:11:02.459]: Info: Resolution: 1920x1200\\n [2024-12-06 11:11:02.459]: Info: Offset: 1920x0\\n [2024-12-06 11:11:02.459]: Info: Logical size: 1920x1080\\n [2024-12-06 11:11:02.459]: Info: Name: HDMI-A-1\\n [2024-12-06 11:11:02.459]: Info: Found monitor: Hewlett Packard HP ZR22w/CN41110FL8\\n [2024-12-06 11:11:02.459]: Info: Offset: 0x0\\n [2024-12-06 11:11:02.459]: Info: Logical size: 1920x1200\\n [2024-12-06 11:11:02.459]: Info: Name: DP-1\\n [2024-12-06 11:11:02.459]: Info: Found monitor: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n [2024-12-06 11:11:02.459]: Info: -------- Start of KMS monitor list --------\\n [2024-12-06 11:11:02.459]: Info: Monitor 0 is HDMI-A-1: Hewlett Packard HP ZR22w/CN41110FL8\\n [2024-12-06 11:11:02.459]: Info: Monitor 1 is DP-1: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n [2024-12-06 11:11:02.459]: Info: --------- End of KMS monitor list ---------\\n [2024-12-06 11:11:02.459]: Info: Screencasting with KMS\\n [2024-12-06 11:11:02.459]: Info: /dev/dri/card1 -\\u003E amdgpu\\n [2024-12-06 11:11:02.460]: Info: Found monitor for DRM screencasting\\n [2024-12-06 11:11:02.460]: Info: Found connector ID [103]\\n [2024-12-06 11:11:02.460]: Info: Found cursor plane [82]\\n [2024-12-06 11:11:02.471]: Info: Creating encoder [libx264]\\n [2024-12-06 11:11:02.471]: Info: Color coding: SDR (Rec. 709)\\n [2024-12-06 11:11:02.471]: Info: Color depth: 8-bit\\n [2024-12-06 11:11:02.471]: Info: Color range: MPEG\\n [2024-12-06 11:11:02.472]: Info: [libx264 @ 0x7fa420002580] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n [2024-12-06 11:11:02.473]: Info: [libx264 @ 0x7fa420002580] profile High, level 5.0, 4:2:0, 8-bit\\n [2024-12-06 11:11:02.710]: Info: Found default monitor by name: alsa_output.pci-0000_08_00.6.analog-stereo.monitor\\n [2024-12-06 11:11:02.737]: Info: Opus initialized: 48 kHz, 2 channels, 512 kbps (total), LOWDELAYhttps://app.lizardbyte.devhttps://app.lizardbyte.dev/support\\n\\nCan someone assist me?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pen input no longer works [Fedora KDE 41]\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1h7xfdv\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_flair_background_color\": \"\", \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1733476373.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I just installed Sunshine on my PC, after testing, the pen input on my galaxy s6 lite on Moonlight was working for about two minutes, then suddenly is no longer working.\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E[notify_pre_releases] -- [enabled]\\n[output_name] -- [1]\\n[sunshine_name] -- [Fedora]\\n[controller] -- [disabled]\\n[keyboard] -- [disabled]\\n[2024-12-06 11:10:54.856]: Info: Sunshine version: v2024.1204.170534\\n[2024-12-06 11:10:54.856]: Info: Package Publisher: LizardByte\\n[2024-12-06 11:10:54.856]: Info: Publisher Website: \\n[2024-12-06 11:10:54.856]: Info: Get support: \\nCannot load libcuda.so.1\\n[2024-12-06 11:10:54.872]: Error: Couldn\\u0026#39;t load cuda: -1\\n[2024-12-06 11:10:54.872]: Info: Found display [wayland-0]\\n[2024-12-06 11:10:54.872]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n[2024-12-06 11:10:54.872]: Info: Found interface: wl_output(65) version 4\\n[2024-12-06 11:10:54.872]: Info: Found interface: wl_output(66) version 4\\n[2024-12-06 11:10:54.872]: Warning: Missing Wayland wire for wlr-export-dmabuf\\n[2024-12-06 11:10:54.873]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:54.874]: Info: Found display [wayland-0]\\n[2024-12-06 11:10:54.874]: Info: Found display [wayland-0]\\n[2024-12-06 11:10:54.874]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n[2024-12-06 11:10:54.874]: Info: Found interface: wl_output(65) version 4\\n[2024-12-06 11:10:54.874]: Info: Found interface: wl_output(66) version 4\\n[2024-12-06 11:10:54.874]: Info: Resolution: 1920x1080\\n[2024-12-06 11:10:54.874]: Info: Resolution: 1920x1200\\n[2024-12-06 11:10:54.874]: Info: Offset: 1920x0\\n[2024-12-06 11:10:54.874]: Info: Logical size: 1920x1080\\n[2024-12-06 11:10:54.874]: Info: Name: HDMI-A-1\\n[2024-12-06 11:10:54.874]: Info: Found monitor: Hewlett Packard HP ZR22w/CN41110FL8\\n[2024-12-06 11:10:54.874]: Info: Offset: 0x0\\n[2024-12-06 11:10:54.874]: Info: Logical size: 1920x1200\\n[2024-12-06 11:10:54.874]: Info: Name: DP-1\\n[2024-12-06 11:10:54.874]: Info: Found monitor: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n[2024-12-06 11:10:54.874]: Info: -------- Start of KMS monitor list --------\\n[2024-12-06 11:10:54.874]: Info: Monitor 0 is HDMI-A-1: Hewlett Packard HP ZR22w/CN41110FL8\\n[2024-12-06 11:10:54.874]: Info: Monitor 1 is DP-1: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n[2024-12-06 11:10:54.874]: Info: --------- End of KMS monitor list ---------\\n[2024-12-06 11:10:54.876]: Warning: Gamepad ds5 is disabled due to Permission denied\\n[2024-12-06 11:10:54.876]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n[2024-12-06 11:10:54.876]: Info: Trying encoder [nvenc]\\n[2024-12-06 11:10:54.876]: Info: Screencasting with KMS\\n[2024-12-06 11:10:54.876]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:54.877]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:10:54.877]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:54.878]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:10:54.904]: Info: System tray created\\nGtk-Message: 11:10:54.907: Failed to load module \\u0026quot;appmenu-gtk-module\\u0026quot;\\n[2024-12-06 11:10:55.078]: Info: Screencasting with KMS\\n[2024-12-06 11:10:55.078]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.079]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:10:55.079]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.080]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:10:55.280]: Info: Encoder [nvenc] failed\\n[2024-12-06 11:10:55.280]: Info: Trying encoder [vaapi]\\n[2024-12-06 11:10:55.280]: Info: Screencasting with KMS\\n[2024-12-06 11:10:55.280]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.281]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:10:55.281]: Info: Found connector ID [103]\\n[2024-12-06 11:10:55.281]: Info: Found cursor plane [82]\\nlibva info: VA-API version 1.22.0\\nlibva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\nlibva info: Found init function __vaDriverInit_1_22\\nlibva info: va_openDriver() returns 0\\n[2024-12-06 11:10:55.293]: Error: Couldn\\u0026#39;t query entrypoints: the requested VAProfile is not supported\\n[2024-12-06 11:10:55.294]: Warning: Monitor 1 doesn\\u0026#39;t support hardware encoding. Reverting back to GPU -\\u0026gt; RAM -\\u0026gt; GPU\\n[2024-12-06 11:10:55.295]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.295]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:10:55.295]: Info: Found connector ID [103]\\n[2024-12-06 11:10:55.296]: Info: Found cursor plane [82]\\n[2024-12-06 11:10:55.306]: Info: Creating encoder [h264_vaapi]\\n[2024-12-06 11:10:55.306]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:10:55.306]: Info: Color depth: 8-bit\\n[2024-12-06 11:10:55.306]: Info: Color range: JPEG\\nlibva info: VA-API version 1.22.0\\nlibva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\nlibva info: Found init function __vaDriverInit_1_22\\nlibva info: va_openDriver() returns 0\\n[2024-12-06 11:10:55.323]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n[2024-12-06 11:10:55.324]: Error: [h264_vaapi @ 0x38d70f40] No usable encoding profile found.\\n[2024-12-06 11:10:55.325]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n[2024-12-06 11:10:55.326]: Info: Creating encoder [h264_vaapi]\\n[2024-12-06 11:10:55.326]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:10:55.326]: Info: Color depth: 8-bit\\n[2024-12-06 11:10:55.326]: Info: Color range: JPEG\\nlibva info: VA-API version 1.22.0\\nlibva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\nlibva info: Found init function __vaDriverInit_1_22\\nlibva info: va_openDriver() returns 0\\n[2024-12-06 11:10:55.337]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n[2024-12-06 11:10:55.339]: Error: [h264_vaapi @ 0x393fe380] No usable encoding profile found.\\n[2024-12-06 11:10:55.339]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n[2024-12-06 11:10:55.340]: Info: Encoder [vaapi] failed\\n[2024-12-06 11:10:55.343]: Info: Trying encoder [software]\\n[2024-12-06 11:10:55.343]: Info: Screencasting with KMS\\n[2024-12-06 11:10:55.343]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.343]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:10:55.343]: Info: Found connector ID [103]\\n[2024-12-06 11:10:55.344]: Info: Found cursor plane [82]\\n[2024-12-06 11:10:55.353]: Info: Creating encoder [libx264]\\n[2024-12-06 11:10:55.353]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:10:55.353]: Info: Color depth: 8-bit\\n[2024-12-06 11:10:55.353]: Info: Color range: JPEG\\n[2024-12-06 11:10:55.353]: Info: [libx264 @ 0x38d71d00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n[2024-12-06 11:10:55.354]: Info: [libx264 @ 0x38d71d00] profile High, level 4.2, 4:2:0, 8-bit\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] frame I:1 Avg QP:31.00 size: 1203\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] mb I I16..4: 99.9% 0.0% 0.0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] 8x8 transform intra:0.0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] coded y,uvDC,uvAC intra: 0.0% 0.0% 0.0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i16 v,h,dc,p: 97% 0% 3% 0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] i8c dc,h,v,p: 100% 0% 0% 0%\\n[2024-12-06 11:10:55.375]: Info: [libx264 @ 0x38d71d00] kb/s:577.44\\n[2024-12-06 11:10:55.376]: Info: Creating encoder [libx264]\\n[2024-12-06 11:10:55.376]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:10:55.376]: Info: Color depth: 8-bit\\n[2024-12-06 11:10:55.376]: Info: Color range: JPEG\\n[2024-12-06 11:10:55.376]: Info: [libx264 @ 0x38d71d00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n[2024-12-06 11:10:55.377]: Info: [libx264 @ 0x38d71d00] profile High 4:4:4 Predictive, level 4.2, 4:4:4, 8-bit\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] frame I:1 Avg QP:31.00 size: 1312\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] mb I I16..4: 99.9% 0.0% 0.0%\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] 8x8 transform intra:0.0%\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] coded y,u,v intra: 0.0% 0.0% 0.0%\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i16 v,h,dc,p: 97% 0% 3% 0%\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n[2024-12-06 11:10:55.404]: Info: [libx264 @ 0x38d71d00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n[2024-12-06 11:10:55.405]: Info: [libx264 @ 0x38d71d00] kb/s:629.76\\n[2024-12-06 11:10:55.407]: Info: Screencasting with KMS\\n[2024-12-06 11:10:55.407]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:10:55.408]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:10:55.408]: Info: Found connector ID [103]\\n[2024-12-06 11:10:55.408]: Info: Found cursor plane [82]\\n[2024-12-06 11:10:55.418]: Info: \\n[2024-12-06 11:10:55.418]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n[2024-12-06 11:10:55.419]: Info: \\n[2024-12-06 11:10:55.419]: Info: Found H.264 encoder: libx264 [software]\\n[2024-12-06 11:10:55.420]: Info: Configuration UI available at [https://localhost:47990]\\n[2024-12-06 11:10:55.421]: Info: Adding avahi service 192\\n[2024-12-06 11:10:56.335]: Info: Avahi service 192 successfully established.\\n[2024-12-06 11:11:01.642]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n[2024-12-06 11:11:01.642]: Info: Trying encoder [nvenc]\\n[2024-12-06 11:11:01.642]: Info: Screencasting with KMS\\n[2024-12-06 11:11:01.642]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:01.643]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:11:01.643]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:01.644]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:11:01.844]: Info: Screencasting with KMS\\n[2024-12-06 11:11:01.845]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:01.846]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:11:01.846]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:01.846]: Error: Couldn\\u0026#39;t find monitor [1]\\n[2024-12-06 11:11:02.046]: Info: Encoder [nvenc] failed\\n[2024-12-06 11:11:02.047]: Info: Trying encoder [vaapi]\\n[2024-12-06 11:11:02.047]: Info: Screencasting with KMS\\n[2024-12-06 11:11:02.047]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.048]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:11:02.048]: Info: Found connector ID [103]\\nlibva info: VA-API version 1.22.0\\n[2024-12-06 11:11:02.048]: Info: Found cursor plane [82]\\nlibva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\nlibva info: Found init function __vaDriverInit_1_22\\nlibva info: va_openDriver() returns 0\\n[2024-12-06 11:11:02.056]: Error: Couldn\\u0026#39;t query entrypoints: the requested VAProfile is not supported\\n[2024-12-06 11:11:02.057]: Warning: Monitor 1 doesn\\u0026#39;t support hardware encoding. Reverting back to GPU -\\u0026gt; RAM -\\u0026gt; GPU\\n[2024-12-06 11:11:02.058]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.059]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:11:02.059]: Info: Found connector ID [103]\\n[2024-12-06 11:11:02.059]: Info: Found cursor plane [82]\\n[2024-12-06 11:11:02.069]: Info: Creating encoder [h264_vaapi]\\n[2024-12-06 11:11:02.069]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:11:02.069]: Info: Color depth: 8-bit\\n[2024-12-06 11:11:02.069]: Info: Color range: JPEG\\nlibva info: VA-API version 1.22.0\\nlibva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so\\nlibva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so\\nlibva info: Found init function __vaDriverInit_1_22\\nlibva info: va_openDriver() returns 0\\n[2024-12-06 11:11:02.079]: Info: vaapi vendor: Mesa Gallium driver 24.2.8 for AMD Radeon RX 6650 XT (radeonsi, navi23, LLVM 19.1.0, DRM 3.59, 6.11.10-300.fc41.x86_64)\\n[2024-12-06 11:11:02.081]: Error: [h264_vaapi @ 0x7fa448047800] No usable encoding profile found.\\n[2024-12-06 11:11:02.081]: Error: Could not open codec [h264_vaapi]: Function not implemented\\n[2024-12-06 11:11:02.082]: Info: Encoder [vaapi] failed\\n[2024-12-06 11:11:02.085]: Info: Trying encoder [software]\\n[2024-12-06 11:11:02.085]: Info: Screencasting with KMS\\n[2024-12-06 11:11:02.085]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.085]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:11:02.085]: Info: Found connector ID [103]\\n[2024-12-06 11:11:02.085]: Info: Found cursor plane [82]\\n[2024-12-06 11:11:02.094]: Info: Creating encoder [libx264]\\n[2024-12-06 11:11:02.094]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:11:02.094]: Info: Color depth: 8-bit\\n[2024-12-06 11:11:02.094]: Info: Color range: JPEG\\n[2024-12-06 11:11:02.095]: Info: [libx264 @ 0x7fa448045c00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n[2024-12-06 11:11:02.095]: Info: [libx264 @ 0x7fa448045c00] profile High, level 4.2, 4:2:0, 8-bit\\n[2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] frame I:1 Avg QP:31.00 size: 1203\\n[2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] mb I I16..4: 99.9% 0.0% 0.0%\\n[2024-12-06 11:11:02.118]: Info: [libx264 @ 0x7fa448045c00] 8x8 transform intra:0.0%\\n[2024-12-06 11:11:02.119]: Info: [libx264 @ 0x7fa448045c00] coded y,uvDC,uvAC intra: 0.0% 0.0% 0.0%\\n[2024-12-06 11:11:02.119]: Info: [libx264 @ 0x7fa448045c00] i16 v,h,dc,p: 97% 0% 3% 0%\\n[2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n[2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n[2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] i8c dc,h,v,p: 100% 0% 0% 0%\\n[2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] kb/s:577.44\\n[2024-12-06 11:11:02.120]: Info: Creating encoder [libx264]\\n[2024-12-06 11:11:02.120]: Info: Color coding: SDR (Rec. 601)\\n[2024-12-06 11:11:02.120]: Info: Color depth: 8-bit\\n[2024-12-06 11:11:02.120]: Info: Color range: JPEG\\n[2024-12-06 11:11:02.120]: Info: [libx264 @ 0x7fa448045c00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n[2024-12-06 11:11:02.121]: Info: [libx264 @ 0x7fa448045c00] profile High 4:4:4 Predictive, level 4.2, 4:4:4, 8-bit\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] frame I:1 Avg QP:31.00 size: 1312\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] mb I I16..4: 99.9% 0.0% 0.0%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] 8x8 transform intra:0.0%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] coded y,u,v intra: 0.0% 0.0% 0.0%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i16 v,h,dc,p: 97% 0% 3% 0%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 75% 12% 0% 0% 0% 0% 12%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 0% 100% 0% 0% 0% 0% 0% 0%\\n[2024-12-06 11:11:02.147]: Info: [libx264 @ 0x7fa448045c00] kb/s:629.76\\n[2024-12-06 11:11:02.152]: Info: Screencasting with KMS\\n[2024-12-06 11:11:02.152]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.153]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:11:02.153]: Info: Found connector ID [103]\\n[2024-12-06 11:11:02.153]: Info: Found cursor plane [82]\\n[2024-12-06 11:11:02.163]: Info: \\n[2024-12-06 11:11:02.164]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n[2024-12-06 11:11:02.164]: Info: \\n[2024-12-06 11:11:02.164]: Info: Found H.264 encoder: libx264 [software]\\n[2024-12-06 11:11:02.164]: Info: Executing [Desktop]\\n[2024-12-06 11:11:02.210]: Info: New streaming session started [active sessions: 1]\\n[2024-12-06 11:11:02.244]: Info: CLIENT CONNECTED\\n[2024-12-06 11:11:02.458]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.459]: Info: Found display [wayland-0]\\n[2024-12-06 11:11:02.459]: Info: Found interface: zxdg_output_manager_v1(31) version 3\\n[2024-12-06 11:11:02.459]: Info: Found interface: wl_output(65) version 4\\n[2024-12-06 11:11:02.459]: Info: Found interface: wl_output(66) version 4\\n[2024-12-06 11:11:02.459]: Info: Resolution: 1920x1080\\n[2024-12-06 11:11:02.459]: Info: Resolution: 1920x1200\\n[2024-12-06 11:11:02.459]: Info: Offset: 1920x0\\n[2024-12-06 11:11:02.459]: Info: Logical size: 1920x1080\\n[2024-12-06 11:11:02.459]: Info: Name: HDMI-A-1\\n[2024-12-06 11:11:02.459]: Info: Found monitor: Hewlett Packard HP ZR22w/CN41110FL8\\n[2024-12-06 11:11:02.459]: Info: Offset: 0x0\\n[2024-12-06 11:11:02.459]: Info: Logical size: 1920x1200\\n[2024-12-06 11:11:02.459]: Info: Name: DP-1\\n[2024-12-06 11:11:02.459]: Info: Found monitor: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n[2024-12-06 11:11:02.459]: Info: -------- Start of KMS monitor list --------\\n[2024-12-06 11:11:02.459]: Info: Monitor 0 is HDMI-A-1: Hewlett Packard HP ZR22w/CN41110FL8\\n[2024-12-06 11:11:02.459]: Info: Monitor 1 is DP-1: ASUSTek COMPUTER INC PA24A/JCLMQS164966\\n[2024-12-06 11:11:02.459]: Info: --------- End of KMS monitor list ---------\\n[2024-12-06 11:11:02.459]: Info: Screencasting with KMS\\n[2024-12-06 11:11:02.459]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\n[2024-12-06 11:11:02.460]: Info: Found monitor for DRM screencasting\\n[2024-12-06 11:11:02.460]: Info: Found connector ID [103]\\n[2024-12-06 11:11:02.460]: Info: Found cursor plane [82]\\n[2024-12-06 11:11:02.471]: Info: Creating encoder [libx264]\\n[2024-12-06 11:11:02.471]: Info: Color coding: SDR (Rec. 709)\\n[2024-12-06 11:11:02.471]: Info: Color depth: 8-bit\\n[2024-12-06 11:11:02.471]: Info: Color range: MPEG\\n[2024-12-06 11:11:02.472]: Info: [libx264 @ 0x7fa420002580] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\\n[2024-12-06 11:11:02.473]: Info: [libx264 @ 0x7fa420002580] profile High, level 5.0, 4:2:0, 8-bit\\n[2024-12-06 11:11:02.710]: Info: Found default monitor by name: alsa_output.pci-0000_08_00.6.analog-stereo.monitor\\n[2024-12-06 11:11:02.737]: Info: Opus initialized: 48 kHz, 2 channels, 512 kbps (total), LOWDELAYhttps://app.lizardbyte.devhttps://app.lizardbyte.dev/support\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003ECan someone assist me?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1h7xfdv\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"[deleted]\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1h7xfdv/pen_input_no_longer_works_fedora_kde_41/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1h7xfdv/pen_input_no_longer_works_fedora_kde_41/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1733476373.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Is it possible to get sunshine on Chromebook? I know you can supposedly get Moonlight but I\\u2019m unsure on what systems can have Sunshine, thanks in advance \", \"author_fullname\": \"t2_6p4jxvmr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can you get sunshine on Chromebook?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1h4dksj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1733087262.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it possible to get sunshine on Chromebook? I know you can supposedly get Moonlight but I\\u2019m unsure on what systems can have Sunshine, thanks in advance \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1h4dksj\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ChummyBoy24\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1h4dksj/can_you_get_sunshine_on_chromebook/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1h4dksj/can_you_get_sunshine_on_chromebook/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1733087262.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello,\\n\\nsorry for the dumb question but i can't wrap my head around this.\\n\\nI understand that Sunshine supports full encryption and that the connection between Sunshine and Moonlight is made with keys, but i can't wrap my head around the pairing instead.\\n\\nMost times, i use Wireguard to make my desktop at home accessible from wherever, but i have some clients (an embed and a PSVita) that do not support Wireguard, moreover i do not have a rooted android so i cannot share a VPN trough hotspot.\\n\\nHow can i ensure that a Port Forwarded PC does not come under attack? \\nMy best guess is that because the :8080 is not exposed, the PIN interface cannot be bruteforced, is that the case?\\n\\nThanks\", \"author_fullname\": \"t2_40tlt9j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stream over Internet - Sunshine Safety\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1h0g02w\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1732638690.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esorry for the dumb question but i can\\u0026#39;t wrap my head around this.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI understand that Sunshine supports full encryption and that the connection between Sunshine and Moonlight is made with keys, but i can\\u0026#39;t wrap my head around the pairing instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMost times, i use Wireguard to make my desktop at home accessible from wherever, but i have some clients (an embed and a PSVita) that do not support Wireguard, moreover i do not have a rooted android so i cannot share a VPN trough hotspot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can i ensure that a Port Forwarded PC does not come under attack?\\u003Cbr/\\u003E\\nMy best guess is that because the :8080 is not exposed, the PIN interface cannot be bruteforced, is that the case?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1h0g02w\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"raffy404\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1h0g02w/stream_over_internet_sunshine_safety/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1h0g02w/stream_over_internet_sunshine_safety/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1732638690.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"FINAL UPDATE - 3/6/25: After being given proof by u/DarkAeonX7, I decided to bite the bullet and reinstall windows on a brand new drive. I installed Sunshine and booted it with my Steam Deck and it just works! I am grateful that all of the trial and error is over and I can finally enjoy the perks of the new NVIDIA app and streaming games through Sunlight/Moonlight.\\n\\n\\u0026nbsp;\\n\\n[I made this post originally in the Moonlight subreddit](https://www.reddit.com/r/MoonlightStreaming/comments/1dr86e9/vigembus_driver_is_causing_my_host_pc_to_bsod/), but I decided to share it here for posterity and maybe to get a different set of eyes.\\n\\n\\u0026nbsp;\\n\\nEvery time I use Moonlight (latest update, flatpack) on my Steam Deck OLED to connect to Sunshine on my PC (also latest update, used both stable and nightly builds) my PC immediately experiences a BSOD within seconds of connecting, sometimes with the code irql_not_less_or_equal, other times with the code system_thread_exception_not_handled.\\n\\n\\u0026nbsp;\\n\\nI downloaded Bluescreenview and checked the crash dump. The crash always seems to be a combination of 1-3 of these things: ntoskrnl.exe, ViGEmBus.sys, and Wdf01000.sys.\\n\\n\\u0026nbsp;\\n\\nI am fairly confident ViGEmBus is the root cause because when I uninstall it everything works except for, of course, the Steam Deck controls, but that's obviously kinda important. The BSOD also doesn't occur when I disable controller emulation in the Sunshine setting. And just to be 100% certain it wasn't my system at fault, I ran a memtest on my RAM and it found 0 errors.\\n\\n\\u0026nbsp;\\n\\nI have looked up everything on reddit and Github relating to ViGEmBus driver issues, even reached out for help on the Lizardbyte discord, and it doesn't seem to have anything to do with putting my pc to sleep or having to restart Sunshine. I usually have a controller connected to my pc but disconnecting that does nothing either. I've uninstalled Sunshine, Moonlight, and ViGEmBus and used just about every combination of previous versions of each to no avail. I also am aware that ViGEmBus is a dead program that is no longer being updated with no clear public successor in sight.\\n\\n\\u0026nbsp;\\n\\nI can provide a log for Sunshine after a BSOD if desired as well. Thank you in advance for any help, and if this is the wrong place to ask I can delete this post.\\n\\n\\u0026nbsp;\\n\\nEDIT: I found [this](https://github.com/LizardByte/Sunshine/issues/1370) closed issue on the Sunshine Github page that seems to be an issue also caused by the ViGEm driver, but isn't exactly what I'm experiencing and their solution doesn't help.\\n\\n\\u0026nbsp;\\n\\nEDIT 2: I've done a clean install of the Nvidia graphics drivers via DDU and the issue still seems to be persisting.\\n\\n\\u0026nbsp;\\n\\nEDIT 3: I also own a ROG Ally so I tried using Moonlight from there just to see if it was solely a Steam Deck issue and it also caused the same BSOD.\\n\\n\\u0026nbsp;\\n\\nEDIT 4 - 11/19/24: Earlier today I updated my bios for the first time since building my computer so I decided to give Sunshine another try but fortunately or unfortunately the bios was not the issue. I spent the whole night again testing every single driver version of ViGEmBus and all of them caused my computer to BSOD. Turning off controller support in the Sunshine webapp even prevented the BSOD so it has to be ViGEmBus. It just sucks that the driver is now defunct and there has yet to be a replacement. I just want to stream to my Deck *and* use RTX HDR, but I guess I have to pick one or the other until a new driver comes or I build an entirely new PC.\\n\\n\\u0026nbsp;\\n\\nEDIT 5 - 2/19/25: u/DarkAeonX7 reached out to me over chat and learned that there was a corrupted system file for ViGEmBus version 1.21.422.0 present that was seemingly undeleteable, even after uninstalling any version of ViGEmBus . They have informed me today that they have since reinstalled Windows on their PC and that has seemingly solved the issue for them. I plan on doing the same eventually, but figured it might help someone to have this information as soon as possible.\", \"author_fullname\": \"t2_k916f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ViGEmBus driver is causing my host PC to BSOD when streaming via Sunshine\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gym3t8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.88, \"ignore_reports\": false, \"ups\": 6, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1741260274.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1732435936.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFINAL UPDATE - 3/6/25: After being given proof by \\u003Ca href=\\\"/u/DarkAeonX7\\\"\\u003Eu/DarkAeonX7\\u003C/a\\u003E, I decided to bite the bullet and reinstall windows on a brand new drive. I installed Sunshine and booted it with my Steam Deck and it just works! I am grateful that all of the trial and error is over and I can finally enjoy the perks of the new NVIDIA app and streaming games through Sunlight/Moonlight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.reddit.com/r/MoonlightStreaming/comments/1dr86e9/vigembus_driver_is_causing_my_host_pc_to_bsod/\\\"\\u003EI made this post originally in the Moonlight subreddit\\u003C/a\\u003E, but I decided to share it here for posterity and maybe to get a different set of eyes.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEvery time I use Moonlight (latest update, flatpack) on my Steam Deck OLED to connect to Sunshine on my PC (also latest update, used both stable and nightly builds) my PC immediately experiences a BSOD within seconds of connecting, sometimes with the code irql_not_less_or_equal, other times with the code system_thread_exception_not_handled.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI downloaded Bluescreenview and checked the crash dump. The crash always seems to be a combination of 1-3 of these things: ntoskrnl.exe, ViGEmBus.sys, and Wdf01000.sys.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am fairly confident ViGEmBus is the root cause because when I uninstall it everything works except for, of course, the Steam Deck controls, but that\\u0026#39;s obviously kinda important. The BSOD also doesn\\u0026#39;t occur when I disable controller emulation in the Sunshine setting. And just to be 100% certain it wasn\\u0026#39;t my system at fault, I ran a memtest on my RAM and it found 0 errors.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have looked up everything on reddit and Github relating to ViGEmBus driver issues, even reached out for help on the Lizardbyte discord, and it doesn\\u0026#39;t seem to have anything to do with putting my pc to sleep or having to restart Sunshine. I usually have a controller connected to my pc but disconnecting that does nothing either. I\\u0026#39;ve uninstalled Sunshine, Moonlight, and ViGEmBus and used just about every combination of previous versions of each to no avail. I also am aware that ViGEmBus is a dead program that is no longer being updated with no clear public successor in sight.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can provide a log for Sunshine after a BSOD if desired as well. Thank you in advance for any help, and if this is the wrong place to ask I can delete this post.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: I found \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/issues/1370\\\"\\u003Ethis\\u003C/a\\u003E closed issue on the Sunshine Github page that seems to be an issue also caused by the ViGEm driver, but isn\\u0026#39;t exactly what I\\u0026#39;m experiencing and their solution doesn\\u0026#39;t help.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT 2: I\\u0026#39;ve done a clean install of the Nvidia graphics drivers via DDU and the issue still seems to be persisting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT 3: I also own a ROG Ally so I tried using Moonlight from there just to see if it was solely a Steam Deck issue and it also caused the same BSOD.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT 4 - 11/19/24: Earlier today I updated my bios for the first time since building my computer so I decided to give Sunshine another try but fortunately or unfortunately the bios was not the issue. I spent the whole night again testing every single driver version of ViGEmBus and all of them caused my computer to BSOD. Turning off controller support in the Sunshine webapp even prevented the BSOD so it has to be ViGEmBus. It just sucks that the driver is now defunct and there has yet to be a replacement. I just want to stream to my Deck \\u003Cem\\u003Eand\\u003C/em\\u003E use RTX HDR, but I guess I have to pick one or the other until a new driver comes or I build an entirely new PC.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026nbsp;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT 5 - 2/19/25: \\u003Ca href=\\\"/u/DarkAeonX7\\\"\\u003Eu/DarkAeonX7\\u003C/a\\u003E reached out to me over chat and learned that there was a corrupted system file for ViGEmBus version 1.21.422.0 present that was seemingly undeleteable, even after uninstalling any version of ViGEmBus . They have informed me today that they have since reinstalled Windows on their PC and that has seemingly solved the issue for them. I plan on doing the same eventually, but figured it might help someone to have this information as soon as possible.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?auto=webp\\u0026s=d2dc9e9137bc5150c6a0ff8878c0c80d26ee683e\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9eb1b001ea9e2b28aef1f61077af0e28e5a62c4a\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e0e4362f3a07123d7af3c563c128a65fb1dac65b\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2ded9001dd8b6727f3f5d13c74691bccb3e4111e\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cf590b119b485b7dae48a646edf5fb4eaa6a4c09\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=58a76681def5318c87c24ee90af3211b5cba4294\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/3TRJPCCjW5EPBvnAKq6sYvTE5QKEHcYc3WmJ6lRAWZY.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=a3fc2ec919e5f5b01b1d47c8da2a2e4f75db2255\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"TuCUIi13sRR8SqadXtlYvOZct7SGTYnFSlGXGVuvHzU\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1gym3t8\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"NoahMeadMusic\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1gym3t8/vigembus_driver_is_causing_my_host_pc_to_bsod/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1gym3t8/vigembus_driver_is_causing_my_host_pc_to_bsod/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1732435936.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GSMS v2024.1117.145 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gt0rjc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/v8VIzjzkFus8txlgtFJh0UeXr7P4y6MDM_8xsf5XZGI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1731801941.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/GSMS/releases/tag/v2024.1117.145\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?auto=webp\\u0026s=a1873c849254a63396b661cdc0e15043fd000962\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=5c0c7fccce45d83aaa3abeb6fe3c37bea0604085\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=fbed885ff76e38f604b3564f808ec599e3afd9b4\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2e006f3f44c7bb513ab9e25c64cb54b8176a2293\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=6cfefe5c7d57aab3af56a5aa6d0177499d0e6501\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c6ad4bda7d4b6d6c6293e1bd6b3329d7f1113ebd\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/I5Ex2OOZ-jJGPjYaFUfQtYrbu9qeOJb6hUH6LER-gzE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=086447c0e6832be70d36ece8216d4495c1258aed\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"GJoDovteXtswnoY-RPNGFhki2GtkYPsksAJt55Khcwc\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1gt0rjc\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1gt0rjc/gsms_v20241117145_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/GSMS/releases/tag/v2024.1117.145\", \"subreddit_subscribers\": 1087, \"created_utc\": 1731801941.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"When trying to broadcast monitor 1 (created virtually, when running `gnome-shell --virtual-monitor \\u003Cresolution\\u003E`), an error occurs \\n\\n\\u003E\\\\[adapter\\\\_name\\\\] -- \\\\[/dev/dri/renderD129\\\\]\\n\\n\\u003E\\\\[mouse\\\\] -- \\\\[disabled\\\\]\\n\\n\\u003E\\\\[keyboard\\\\] -- \\\\[disabled\\\\]\\n\\n\\u003E\\\\[controller\\\\] -- \\\\[disabled\\\\]\\n\\n\\u003E\\\\[min\\\\_fps\\\\_factor\\\\] -- \\\\[30\\\\]\\n\\n\\u003E\\\\[output\\\\_name\\\\] -- \\\\[33\\\\]\\n\\n\\u003E\\\\[locale\\\\] -- \\\\[ru\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.394\\\\]: Info: Sunshine version: 2024.911.215654.copr\\n\\n\\u003E\\\\[2024-10-30 22:12:37.394\\\\]: Info: Package Publisher: Third Party Publisher\\n\\n\\u003E\\\\[2024-10-30 22:12:37.394\\\\]: Info: Publisher Website: \\n\\n\\u003E\\\\[2024-10-30 22:12:37.394\\\\]: Info: Get support: [https://app.lizardbyte.dev/support](https://app.lizardbyte.dev/support)\\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Error: Failed to create session: \\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Info: Found display \\\\[wayland-0\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Info: Found interface: wl\\\\_output(4) version 4\\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Info: Found interface: wl\\\\_output(5) version 4\\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Info: Found interface: zxdg\\\\_output\\\\_manager\\\\_v1(6) version 3\\n\\n\\u003E\\\\[2024-10-30 22:12:37.416\\\\]: Warning: Missing Wayland wire for wlr-export-dmabuf\\n\\n\\u003E\\\\[2024-10-30 22:12:37.417\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.417\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.418\\\\]: Info: Found display \\\\[wayland-0\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.418\\\\]: Info: Found display \\\\[wayland-0\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Found interface: wl\\\\_output(4) version 4\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Found interface: wl\\\\_output(5) version 4\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Found interface: zxdg\\\\_output\\\\_manager\\\\_v1(6) version 3\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Resolution: 1920x1080\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Resolution: 2532x1170\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Offset: 2532x90\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Logical size: 1920x1080\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Name: eDP-1\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Found monitor: \\u0412\\u0441\\u0442\\u0440\\u043e\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0434\\u0438\\u0441\\u043f\\u043b\\u0435\\u0439\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Offset: 0x0\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Logical size: 2532x1170\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Name: Meta-0\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Found monitor: MetaVendor\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: -------- Start of KMS monitor list --------\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: Monitor 0 is eDP-1: \\u0412\\u0441\\u0442\\u0440\\u043e\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0434\\u0438\\u0441\\u043f\\u043b\\u0435\\u0439\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Error: Unknown Monitor connector type \\\\[Meta\\\\]: Please report this to the GitHub issue tracker\\n\\n\\u003E\\\\[2024-10-30 22:12:37.421\\\\]: Info: --------- End of KMS monitor list ---------\\n\\n\\u003E\\\\[2024-10-30 22:12:37.431\\\\]: Info: System tray created\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: Trying encoder \\\\[nvenc\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.461\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.661\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.662\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.862\\\\]: Info: Encoder \\\\[nvenc\\\\] failed\\n\\n\\u003E\\\\[2024-10-30 22:12:37.862\\\\]: Info: Trying encoder \\\\[vaapi\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.862\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:37.862\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.862\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.863\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:37.863\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:37.863\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:37.863\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.063\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:38.063\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:38.064\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:38.064\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.064\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:38.064\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:38.064\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.264\\\\]: Info: Encoder \\\\[vaapi\\\\] failed\\n\\n\\u003E\\\\[2024-10-30 22:12:38.264\\\\]: Info: Trying encoder \\\\[software\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.264\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:38.265\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:38.265\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:38.265\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.465\\\\]: Info: Screencasting with KMS\\n\\n\\u003E\\\\[2024-10-30 22:12:38.465\\\\]: Info: /dev/dri/card1 -\\u003E i915\\n\\n\\u003E\\\\[2024-10-30 22:12:38.466\\\\]: Info: /dev/dri/card0 -\\u003E nvidia-drm\\n\\n\\u003E\\\\[2024-10-30 22:12:38.466\\\\]: Error: Couldn't find monitor \\\\[33\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:38.666\\\\]: Info: Encoder \\\\[software\\\\] failed\\n\\n\\u003E\\\\[2024-10-30 22:12:38.666\\\\]: Fatal: Unable to find display or encoder during startup.\\n\\n\\u003E\\\\[2024-10-30 22:12:38.666\\\\]: Fatal: Please ensure your manually chosen GPU and monitor are connected and powered on.\\n\\n\\u003E\\\\[2024-10-30 22:12:38.666\\\\]: Error: Video failed to find working encoder\\n\\n\\u003E\\\\[2024-10-30 22:12:38.669\\\\]: Info: Adding avahi service MiWiFi-R4A-srv\\n\\n\\u003E\\\\[2024-10-30 22:12:38.669\\\\]: Info: Configuration UI available at \\\\[https://localhost:47990\\\\]\\n\\n\\u003E\\\\[2024-10-30 22:12:39.530\\\\]: Info: Avahi service MiWiFi-R4A-srv successfully established.\\n\\n\\n\\nOperating system: Fedora 40 (Gnome, Wayland)\", \"author_fullname\": \"t2_hrlfgqjbe\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Virtual monitor translation error (Wayland)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gfuppc\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1730315723.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhen trying to broadcast monitor 1 (created virtually, when running \\u003Ccode\\u003Egnome-shell --virtual-monitor \\u0026lt;resolution\\u0026gt;\\u003C/code\\u003E), an error occurs \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E[adapter_name] -- [/dev/dri/renderD129]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[mouse] -- [disabled]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[keyboard] -- [disabled]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[controller] -- [disabled]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[min_fps_factor] -- [30]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[output_name] -- [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[locale] -- [ru]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.394]: Info: Sunshine version: 2024.911.215654.copr\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.394]: Info: Package Publisher: Third Party Publisher\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.394]: Info: Publisher Website: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.394]: Info: Get support: \\u003Ca href=\\\"https://app.lizardbyte.dev/support\\\"\\u003Ehttps://app.lizardbyte.dev/support\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Error: Failed to create session: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Info: Found display [wayland-0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Info: Found interface: wl_output(4) version 4\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Info: Found interface: wl_output(5) version 4\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Info: Found interface: zxdg_output_manager_v1(6) version 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.416]: Warning: Missing Wayland wire for wlr-export-dmabuf\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.417]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.417]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.418]: Info: Found display [wayland-0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.418]: Info: Found display [wayland-0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Found interface: wl_output(4) version 4\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Found interface: wl_output(5) version 4\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Found interface: zxdg_output_manager_v1(6) version 3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Resolution: 1920x1080\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Resolution: 2532x1170\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Offset: 2532x90\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Logical size: 1920x1080\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Name: eDP-1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Found monitor: \\u0412\\u0441\\u0442\\u0440\\u043e\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0434\\u0438\\u0441\\u043f\\u043b\\u0435\\u0439\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Offset: 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Logical size: 2532x1170\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Name: Meta-0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Found monitor: MetaVendor\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: -------- Start of KMS monitor list --------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: Monitor 0 is eDP-1: \\u0412\\u0441\\u0442\\u0440\\u043e\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0434\\u0438\\u0441\\u043f\\u043b\\u0435\\u0439\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Error: Unknown Monitor connector type [Meta]: Please report this to the GitHub issue tracker\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.421]: Info: --------- End of KMS monitor list ---------\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.431]: Info: System tray created\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: Trying encoder [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.461]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.661]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.662]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.862]: Info: Encoder [nvenc] failed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.862]: Info: Trying encoder [vaapi]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.862]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.862]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.862]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.863]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.863]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.863]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:37.863]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.063]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.063]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.064]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.064]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.064]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.064]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.064]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.264]: Info: Encoder [vaapi] failed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.264]: Info: Trying encoder [software]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.264]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.265]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.265]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.265]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.465]: Info: Screencasting with KMS\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.465]: Info: /dev/dri/card1 -\\u0026gt; i915\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.466]: Info: /dev/dri/card0 -\\u0026gt; nvidia-drm\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.466]: Error: Couldn\\u0026#39;t find monitor [33]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.666]: Info: Encoder [software] failed\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.666]: Fatal: Unable to find display or encoder during startup.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.666]: Fatal: Please ensure your manually chosen GPU and monitor are connected and powered on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.666]: Error: Video failed to find working encoder\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.669]: Info: Adding avahi service MiWiFi-R4A-srv\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:38.669]: Info: Configuration UI available at [https://localhost:47990]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024-10-30 22:12:39.530]: Info: Avahi service MiWiFi-R4A-srv successfully established.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EOperating system: Fedora 40 (Gnome, Wayland)\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?auto=webp\\u0026s=37eb27d5d5724ee0de14c5c9b132bc4db98ef9ff\", \"width\": 1200, \"height\": 630}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c3e1e1ce90d416be3abb2279d50d85eb90f3fa3d\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=54e1d83c459cb6380d6a62f950c6c889d6eab829\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=5df46782ed430fdb5610a5543a32eadd5610fc19\", \"width\": 320, \"height\": 168}, {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=28615989569c974418ff4a10548914946fc81ad0\", \"width\": 640, \"height\": 336}, {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=23b15daae5d22bad87dd671d2efb60013fe3e2f4\", \"width\": 960, \"height\": 504}, {\"url\": \"https://external-preview.redd.it/z0zaVs1Xq6v0xs5CAbz3P5OXw2S2E-OrUqfiUZo98Mw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=54ccc68fd82e39b9b39e96d7a0ee88b7377ded11\", \"width\": 1080, \"height\": 567}], \"variants\": {}, \"id\": \"rIw1PoPg0lfW6bo-oiKfCXDX3KqOUuXIkuL0kQDkQJI\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1gfuppc\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Fristivan\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1gfuppc/virtual_monitor_translation_error_wayland/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1gfuppc/virtual_monitor_translation_error_wayland/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1730315723.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_i3g008ht\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Does anyone know why Mupen64 plus core will not load? i am using the web player so it might just be very laggy\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gfktg7\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1730289686.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1gfktg7\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Electrowolf32213\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1gfktg7/does_anyone_know_why_mupen64_plus_core_will_not/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1gfktg7/does_anyone_know_why_mupen64_plus_core_will_not/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1730289686.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello,\\n\\nSince some week, there isn't the fedora 40 version on beta release for Sunshine.\\n\\nThe flatpak version doesn't work well compared to .rpm package. The docs aren't up time on beta release.\\n\\nWill you support again the fedora version ?\", \"author_fullname\": \"t2_11f94r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Fedora ?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gf5tth\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1730238850.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1730236748.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince some week, there isn\\u0026#39;t the fedora 40 version on beta release for Sunshine.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe flatpak version doesn\\u0026#39;t work well compared to .rpm package. The docs aren\\u0026#39;t up time on beta release.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWill you support again the fedora version ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1gf5tth\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"jobierre\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1gf5tth/fedora/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1gf5tth/fedora/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1730236748.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Please please please put sunshine on android please\", \"author_fullname\": \"t2_140ye2sym8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Android \", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1gd5664\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.25, \"ignore_reports\": false, \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 0, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1730012203.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPlease please please put sunshine on android please\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1gd5664\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Working_Put_8840\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1gd5664/android/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1gd5664/android/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1730012203.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Does anyone know if it's possible to stream the second desktop?? We have a PC so my sister watches a series and I play PC games on my phone.. :((( Can someone help me please?? \", \"author_fullname\": \"t2_z9wwclmb1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"stream 2\\u00aa desktop??\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ganc90\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1729722665.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDoes anyone know if it\\u0026#39;s possible to stream the second desktop?? We have a PC so my sister watches a series and I play PC games on my phone.. :((( Can someone help me please?? \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ganc90\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"L1nkito\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ganc90/stream_2\\u00aa_desktop/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ganc90/stream_2\\u00aa_desktop/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1729722665.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone: \\nI'm getting some issues with a brand new macOS laptop and sunshine. (It works great on windows!). I just upgraded to Sequoia 15.0.1, and have updated Xcode. When trying to install sunshine through macports, I get the following:\\n\\n Error: Failed to checksum brotli: brotli-1.1.0.tar.gz does not exist in /opt/local/var/macports/distfiles/brotli\\n Error: See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_archivers_brotli/brotli/main.log for details.\\n Error: Follow if you believe there is a bug.https://guide.macports.org/#project.tickets\\n Error: Processing of port Sunshine failed\\n\\nI've tried to install brotli through other ways, but haven't gotten anywhere.\\n\\n\\n\\nThrough homebrew, it's:\\n\\n ==\\u003E Installing lizardbyte/homebrew/sunshine\\n ==\\u003E cmake -S . -B build -DBUILD_WERROR=ON -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl@3 -DSUNSHINE_ASSETS_DIR=su\\n ==\\u003E make -j\\n Last 15 lines from /Users/xrq24scu_l/Library/Logs/Homebrew/sunshine/02.make:\\n ../../../../build/assets/web/assets/Navbar-48ec9d0d.css \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.07 kB \\u2502 gzip: \\u00a0 0.09 kB\\n ../../../../build/assets/web/assets/_plugin-vue_export-helper-cff45802.css\\u00a0 327.59 kB \\u2502 gzip:\\u00a0 54.06 kB\\n ../../../../build/assets/web/assets/password-41ebda5b.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.63 kB \\u2502 gzip: \\u00a0 0.41 kB\\n ../../../../build/assets/web/assets/welcome-6454da3a.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.66 kB \\u2502 gzip: \\u00a0 0.42 kB\\n ../../../../build/assets/web/assets/pin-677ef343.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.81 kB \\u2502 gzip: \\u00a0 0.43 kB\\n ../../../../build/assets/web/assets/troubleshooting-76080e6f.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 1.36 kB \\u2502 gzip: \\u00a0 0.59 kB\\n ../../../../build/assets/web/assets/ResourceCard-ea4a7cba.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 1.67 kB \\u2502 gzip: \\u00a0 0.64 kB\\n ../../../../build/assets/web/assets/index-1d511c0f.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 2.06 kB \\u2502 gzip: \\u00a0 0.90 kB\\n ../../../../build/assets/web/assets/Navbar-dbaf0800.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 2.16 kB \\u2502 gzip: \\u00a0 0.94 kB\\n ../../../../build/assets/web/assets/config-f4fb6dcb.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 4.97 kB \\u2502 gzip: \\u00a0 2.10 kB\\n ../../../../build/assets/web/assets/apps-966a1e70.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 85.57 kB \\u2502 gzip:\\u00a0 25.93 kB\\n ../../../../build/assets/web/assets/_plugin-vue_export-helper-fe085d29.js \\u00a0 327.84 kB \\u2502 gzip: 111.98 kB\\n \\u2713 built in 964ms\\n [ 98%] Built target web-ui\\n make: *** [all] Error 2\\n\\nI'm not familiar enough with this kind of tool, but the fact that they're both stopping at similar points seems to indicate it's the way this Mac is set up. Not too familiar with MacOS either, so would appreciate any suggestions!\\n\\n\", \"author_fullname\": \"t2_a9gj7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"MacOS installation\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1g8lwev\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1729504349.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone:\\u003Cbr/\\u003E\\nI\\u0026#39;m getting some issues with a brand new macOS laptop and sunshine. (It works great on windows!). I just upgraded to Sequoia 15.0.1, and have updated Xcode. When trying to install sunshine through macports, I get the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EError: Failed to checksum brotli: brotli-1.1.0.tar.gz does not exist in /opt/local/var/macports/distfiles/brotli\\nError: See /opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_macports_release_tarballs_ports_archivers_brotli/brotli/main.log for details.\\nError: Follow if you believe there is a bug.https://guide.macports.org/#project.tickets\\nError: Processing of port Sunshine failed\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve tried to install brotli through other ways, but haven\\u0026#39;t gotten anywhere.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThrough homebrew, it\\u0026#39;s:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E==\\u0026gt; Installing lizardbyte/homebrew/sunshine\\n==\\u0026gt; cmake -S . -B build -DBUILD_WERROR=ON -DOPENSSL_ROOT_DIR=/opt/homebrew/opt/openssl@3 -DSUNSHINE_ASSETS_DIR=su\\n==\\u0026gt; make -j\\nLast 15 lines from /Users/xrq24scu_l/Library/Logs/Homebrew/sunshine/02.make:\\n../../../../build/assets/web/assets/Navbar-48ec9d0d.css \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.07 kB \\u2502 gzip: \\u00a0 0.09 kB\\n../../../../build/assets/web/assets/_plugin-vue_export-helper-cff45802.css\\u00a0 327.59 kB \\u2502 gzip:\\u00a0 54.06 kB\\n../../../../build/assets/web/assets/password-41ebda5b.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.63 kB \\u2502 gzip: \\u00a0 0.41 kB\\n../../../../build/assets/web/assets/welcome-6454da3a.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.66 kB \\u2502 gzip: \\u00a0 0.42 kB\\n../../../../build/assets/web/assets/pin-677ef343.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 0.81 kB \\u2502 gzip: \\u00a0 0.43 kB\\n../../../../build/assets/web/assets/troubleshooting-76080e6f.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 1.36 kB \\u2502 gzip: \\u00a0 0.59 kB\\n../../../../build/assets/web/assets/ResourceCard-ea4a7cba.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 1.67 kB \\u2502 gzip: \\u00a0 0.64 kB\\n../../../../build/assets/web/assets/index-1d511c0f.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 2.06 kB \\u2502 gzip: \\u00a0 0.90 kB\\n../../../../build/assets/web/assets/Navbar-dbaf0800.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 2.16 kB \\u2502 gzip: \\u00a0 0.94 kB\\n../../../../build/assets/web/assets/config-f4fb6dcb.js\\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 4.97 kB \\u2502 gzip: \\u00a0 2.10 kB\\n../../../../build/assets/web/assets/apps-966a1e70.js \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 \\u00a0 85.57 kB \\u2502 gzip:\\u00a0 25.93 kB\\n../../../../build/assets/web/assets/_plugin-vue_export-helper-fe085d29.js \\u00a0 327.84 kB \\u2502 gzip: 111.98 kB\\n\\u2713 built in 964ms\\n[ 98%] Built target web-ui\\nmake: *** [all] Error 2\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not familiar enough with this kind of tool, but the fact that they\\u0026#39;re both stopping at similar points seems to indicate it\\u0026#39;s the way this Mac is set up. Not too familiar with MacOS either, so would appreciate any suggestions!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1g8lwev\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Flittingdragonfly\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1g8lwev/macos_installation/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1g8lwev/macos_installation/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1729504349.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"There is nothing in README, everything is archived.\", \"author_fullname\": \"t2_1d0kos6r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Why all repos of Themerr are archived?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1g3ke6p\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1728924329.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere is nothing in README, everything is archived.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1g3ke6p\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"felipemarinho\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1g3ke6p/why_all_repos_of_themerr_are_archived/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1728924329.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi LizardByte community,\\n\\nI'm encountering an error with the Themerr-plex plugin when using it as a Docker mod with [linuxserver.io](http://linuxserver.io) Docker images. Additionally, I've had to reconfigure SABnzbd in Radarr and Sonarr after migrating my server. I'd greatly appreciate any assistance in resolving these issues.\\n\\n# Setup Details\\n\\n* Using Themerr-plex as a Docker mod\\n* Base image: [linuxserver.io](http://linuxserver.io) Plex image\\n* Recently migrated server to a new machine\\n\\n# Themerr-plex Error Log\\n\\n\\\\`\\\\`\\\\`\\n\\n\\\\[mod-init\\\\] Adding lizardbyte/themerr-plex:latest to container\\n\\n\\\\[mod-init\\\\] lizardbyte/themerr-plex:latest at sha256:7bf420e9444c860c52b1c5e842f2f9c5e14c58fad8bc61155c745ddd5b6a6a10 has been previously applied skipping\\n\\nConnection to localhost (127.0.0.1) 32400 port \\\\[tcp/\\\\*\\\\] succeeded!\\n\\n\\\\* Serving Flask app \\\"webapp\\\" (lazy loading)\\n\\n\\\\* Environment: production\\n\\nWARNING: This is a development server. Do not use it in a production deployment.\\n\\nUse a production WSGI server instead.\\n\\n\\\\* Debug mode: off\\n\\nException in thread Thread-1:\\n\\nTraceback (most recent call last):\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/threading.py\\\", line 801, in \\\\_\\\\_bootstrap\\\\_inner\\n\\nself.run()\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/threading.py\\\", line 754, in run\\n\\nself.\\\\_\\\\_target(\\\\*self.\\\\_\\\\_args, \\\\*\\\\*self.\\\\_\\\\_kwargs)\\n\\nFile \\\"/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/flask/app.py\\\", line 990, in run\\n\\nrun\\\\_simple(host, port, self, \\\\*\\\\*options)\\n\\nFile \\\"/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\\", line 1052, in run\\\\_simple\\n\\ninner()\\n\\nFile \\\"/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\\", line 1005, in inner\\n\\nfd=fd,\\n\\nFile \\\"/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\\", line 848, in make\\\\_server\\n\\nhost, port, app, request\\\\_handler, passthrough\\\\_errors, ssl\\\\_context, fd=fd\\n\\nFile \\\"/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\\", line 740, in \\\\_\\\\_init\\\\_\\\\_\\n\\nHTTPServer.\\\\_\\\\_init\\\\_\\\\_(self, server\\\\_address, handler)\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/SocketServer.py\\\", line 420, in \\\\_\\\\_init\\\\_\\\\_\\n\\nself.server\\\\_bind()\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/BaseHTTPServer.py\\\", line 108, in server\\\\_bind\\n\\nSocketServer.TCPServer.server\\\\_bind(self)\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/SocketServer.py\\\", line 434, in server\\\\_bind\\n\\nself.socket.bind(self.server\\\\_address)\\n\\nFile \\\"/usr/lib/plexmediaserver/Resources/Python/python27.zip/socket.py\\\", line 228, in meth\\n\\nreturn getattr(self.\\\\_sock,name)(\\\\*args)\\n\\nerror: \\\\[Errno 99\\\\] Address not available\\n\\n\\\\`\\\\`\\\\`\\n\\n# SABnzbd Configuration Update\\n\\nI recently migrated my server from one machine to another, I'm using UnRaid, after migrating my server, I found that I needed to change the host to \\\\`172.17.0.1\\\\` for the SABnzbd client in both Radarr and Sonarr. This seems to be related to how Docker networking is set up on the new machine.\\n\\n# Observations and Questions\\n\\n1. The Themerr-plex mod seems to be added successfully, but the Flask app encounters an exception when trying to bind to an address.\\n2. What could be causing the \\\"Address not available\\\" error when the Flask app tries to bind?\\n3. Are there any specific Docker settings or environment variables I should check for Themerr-plex?\\n4. Is changing the SABnzbd host to \\\\`172.17.0.1\\\\` in Radarr and Sonarr the correct approach after migration? Are there any potential issues or better practices I should be aware of?\\n\\nAny insights or troubleshooting steps for both the Themerr-plex issue and the SABnzbd configuration would be immensely helpful. Thank you in advance for your assistance!\", \"author_fullname\": \"t2_5ki0q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \" Help Needed: Themerr-plex Plugin Error and SABnzbd Configuration After Server Migration\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1fsk3fk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1727659609.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi LizardByte community,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m encountering an error with the Themerr-plex plugin when using it as a Docker mod with \\u003Ca href=\\\"http://linuxserver.io\\\"\\u003Elinuxserver.io\\u003C/a\\u003E Docker images. Additionally, I\\u0026#39;ve had to reconfigure SABnzbd in Radarr and Sonarr after migrating my server. I\\u0026#39;d greatly appreciate any assistance in resolving these issues.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ESetup Details\\u003C/h1\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EUsing Themerr-plex as a Docker mod\\u003C/li\\u003E\\n\\u003Cli\\u003EBase image: \\u003Ca href=\\\"http://linuxserver.io\\\"\\u003Elinuxserver.io\\u003C/a\\u003E Plex image\\u003C/li\\u003E\\n\\u003Cli\\u003ERecently migrated server to a new machine\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Ch1\\u003EThemerr-plex Error Log\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[mod-init] Adding lizardbyte/themerr-plex:latest to container\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[mod-init] lizardbyte/themerr-plex:latest at sha256:7bf420e9444c860c52b1c5e842f2f9c5e14c58fad8bc61155c745ddd5b6a6a10 has been previously applied skipping\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EConnection to localhost (127.0.0.1) 32400 port [tcp/*] succeeded!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Serving Flask app \\u0026quot;webapp\\u0026quot; (lazy loading)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Environment: production\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWARNING: This is a development server. Do not use it in a production deployment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUse a production WSGI server instead.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E* Debug mode: off\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EException in thread Thread-1:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETraceback (most recent call last):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/threading.py\\u0026quot;, line 801, in __bootstrap_inner\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.run()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/threading.py\\u0026quot;, line 754, in run\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.__target(*self.__args, **self.__kwargs)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/flask/app.py\\u0026quot;, line 990, in run\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Erun_simple(host, port, self, **options)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\u0026quot;, line 1052, in run_simple\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Einner()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\u0026quot;, line 1005, in inner\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Efd=fd,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\u0026quot;, line 848, in make_server\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ehost, port, app, request_handler, passthrough_errors, ssl_context, fd=fd\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/config/Library/Application Support/Plex Media Server/Plug-ins/Themerr-plex.bundle/Contents/Libraries/Shared/werkzeug/serving.py\\u0026quot;, line 740, in __init__\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHTTPServer.__init__(self, server_address, handler)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/SocketServer.py\\u0026quot;, line 420, in __init__\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.server_bind()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/BaseHTTPServer.py\\u0026quot;, line 108, in server_bind\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESocketServer.TCPServer.server_bind(self)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/SocketServer.py\\u0026quot;, line 434, in server_bind\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.socket.bind(self.server_address)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/usr/lib/plexmediaserver/Resources/Python/python27.zip/socket.py\\u0026quot;, line 228, in meth\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn getattr(self._sock,name)(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eerror: [Errno 99] Address not available\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E```\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003ESABnzbd Configuration Update\\u003C/h1\\u003E\\n\\n\\u003Cp\\u003EI recently migrated my server from one machine to another, I\\u0026#39;m using UnRaid, after migrating my server, I found that I needed to change the host to `172.17.0.1` for the SABnzbd client in both Radarr and Sonarr. This seems to be related to how Docker networking is set up on the new machine.\\u003C/p\\u003E\\n\\n\\u003Ch1\\u003EObservations and Questions\\u003C/h1\\u003E\\n\\n\\u003Col\\u003E\\n\\u003Cli\\u003EThe Themerr-plex mod seems to be added successfully, but the Flask app encounters an exception when trying to bind to an address.\\u003C/li\\u003E\\n\\u003Cli\\u003EWhat could be causing the \\u0026quot;Address not available\\u0026quot; error when the Flask app tries to bind?\\u003C/li\\u003E\\n\\u003Cli\\u003EAre there any specific Docker settings or environment variables I should check for Themerr-plex?\\u003C/li\\u003E\\n\\u003Cli\\u003EIs changing the SABnzbd host to `172.17.0.1` in Radarr and Sonarr the correct approach after migration? Are there any potential issues or better practices I should be aware of?\\u003C/li\\u003E\\n\\u003C/ol\\u003E\\n\\n\\u003Cp\\u003EAny insights or troubleshooting steps for both the Themerr-plex issue and the SABnzbd configuration would be immensely helpful. Thank you in advance for your assistance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1fsk3fk\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"sharvinzlife\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1fsk3fk/help_needed_themerrplex_plugin_error_and_sabnzbd/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1fsk3fk/help_needed_themerrplex_plugin_error_and_sabnzbd/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1727659609.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, is there a way i can use sunshine in a way the apps run in another tty (ex, tty3) and run the xsession with xinit for steam big picture, for example? so just steam runs in the xsession on that tty and sunshine streams it\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"run apps on another x session\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1fophnk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_flair_background_color\": \"\", \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1727217572.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, is there a way i can use sunshine in a way the apps run in another tty (ex, tty3) and run the xsession with xinit for steam big picture, for example? so just steam runs in the xsession on that tty and sunshine streams it\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1fophnk\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"[deleted]\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1fophnk/run_apps_on_another_x_session/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1fophnk/run_apps_on_another_x_session/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1727217572.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have tried from sunshine from the pop store, flatback, App image and the git debian lackage. I aways get errored out\\n\\n Fatal: Unable to find display or encoder during startup.\\n Fatal: Please check that a display is connected and powered on.\\n\\nI tried adding \\n\\nNOTE: Allow Sunshine Virtual Input (Required)\\n\\n sudo chown $USER /dev/uinput \\u0026\\u0026 echo 'KERNEL==\\\"uinput\\\", SUBSYSTEM==\\\"misc\\\", OPTIONS+=\\\"static_node=uinput\\\", TAG+=\\\"uaccess\\\"' | sudo tee /etc/udev/rules.d/60-sunshine-input.rules\\n\\nBut this made no difference even after a reboot.\\n\\nI tried manual adding the monitor, no dif. I'm a bit new to linux and trying to move off of windows. Not sure what how to trouble shoot these errors. i9 13k, 64G, SSD drives. Pop\\\\_OS and steam games etc all working. Thanks\", \"author_fullname\": \"t2_77v7bny1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Pop_OS (linux) Fatal: Unable to find display or encoder during startup.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1flt2vw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1726886132.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tried from sunshine from the pop store, flatback, App image and the git debian lackage. I aways get errored out\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003EFatal: Unable to find display or encoder during startup.\\nFatal: Please check that a display is connected and powered on.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EI tried adding \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTE: Allow Sunshine Virtual Input (Required)\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Esudo chown $USER /dev/uinput \\u0026amp;\\u0026amp; echo \\u0026#39;KERNEL==\\u0026quot;uinput\\u0026quot;, SUBSYSTEM==\\u0026quot;misc\\u0026quot;, OPTIONS+=\\u0026quot;static_node=uinput\\u0026quot;, TAG+=\\u0026quot;uaccess\\u0026quot;\\u0026#39; | sudo tee /etc/udev/rules.d/60-sunshine-input.rules\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EBut this made no difference even after a reboot.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried manual adding the monitor, no dif. I\\u0026#39;m a bit new to linux and trying to move off of windows. Not sure what how to trouble shoot these errors. i9 13k, 64G, SSD drives. Pop_OS and steam games etc all working. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1flt2vw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"InitialSympathy3476\", \"discussion_type\": null, \"num_comments\": 24, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1flt2vw/pop_os_linux_fatal_unable_to_find_display_or/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1flt2vw/pop_os_linux_fatal_unable_to_find_display_or/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1726886132.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, recently I installed sunshine 0.23.1 on my system (CachyOS). Since then, my pc can't be put in sleep state properly. My pc is still on (my pc fan, keyboard, and mouse still on), but screen is blank. pressing power button can't wake up my pc. the only way to turn on my pc is to force shutdown by pressing long power button and turn it on again. \\n\\nKnowing this, I stop sunshine from working on background, and my pc can put in sleep mode normally. \\n\\nHope sunshine dev can fix this. \\n\\nmy system :\\n\\nhttps://preview.redd.it/wmffg0sv5eld1.png?width=497\\u0026format=png\\u0026auto=webp\\u0026s=cfdc7602fe31a52351906636548e8ee73c397fd3\\n\\n\", \"author_fullname\": \"t2_b8ly6sy2\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"sunshine bug : sunshine causing my pc can't recover from sleep\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 96, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"wmffg0sv5eld1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 74, \"x\": 108, \"u\": \"https://preview.redd.it/wmffg0sv5eld1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9dd1e33d6393f3820cb6f42c7d1fe12633b57bee\"}, {\"y\": 148, \"x\": 216, \"u\": \"https://preview.redd.it/wmffg0sv5eld1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=1bf9eefb4bf4fad1426f0591e735a06e101d56bf\"}, {\"y\": 220, \"x\": 320, \"u\": \"https://preview.redd.it/wmffg0sv5eld1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=8773c2f07f75f9abf78556427645ff5ff0046bba\"}], \"s\": {\"y\": 342, \"x\": 497, \"u\": \"https://preview.redd.it/wmffg0sv5eld1.png?width=497\\u0026format=png\\u0026auto=webp\\u0026s=cfdc7602fe31a52351906636548e8ee73c397fd3\"}, \"id\": \"wmffg0sv5eld1\"}}, \"name\": \"t3_1f37zcx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/xqncPizUFWMZ8O8heW9zD6nGyE1dQO04OI_oQgIvLYI.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1724845250.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, recently I installed sunshine 0.23.1 on my system (CachyOS). Since then, my pc can\\u0026#39;t be put in sleep state properly. My pc is still on (my pc fan, keyboard, and mouse still on), but screen is blank. pressing power button can\\u0026#39;t wake up my pc. the only way to turn on my pc is to force shutdown by pressing long power button and turn it on again. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKnowing this, I stop sunshine from working on background, and my pc can put in sleep mode normally. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHope sunshine dev can fix this. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emy system :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/wmffg0sv5eld1.png?width=497\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=cfdc7602fe31a52351906636548e8ee73c397fd3\\\"\\u003Ehttps://preview.redd.it/wmffg0sv5eld1.png?width=497\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=cfdc7602fe31a52351906636548e8ee73c397fd3\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1f37zcx\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"jokysatria\", \"discussion_type\": null, \"num_comments\": 7, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1f37zcx/sunshine_bug_sunshine_causing_my_pc_cant_recover/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1f37zcx/sunshine_bug_sunshine_causing_my_pc_cant_recover/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1724845250.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone, I have been trying to setup sunshine on a headless server with Nvidia GPU for a few days now, even switching to GamesOnWhales in desperation. I have somehow managed to get to see the login screen from my moonlight client but face an error I am completely alien to. Here are the 2 errors that pop up whenever I try to login AFTER STARTING A STREAM ON MY MOONLIGHT CLIENT:\\n```\\n1. [Error: Failed to start capture session: Cannot create capture session: the display server is in modeset\\n2. Error: Couldn't release NvFBC context from current thread: Cannot create capture session: the display server is in modeset.\\n```\\nDetailed logs are available here: https://gist.github.com/ConsularParadi/4f425caaccf5c6d56542d6deb9d1fb98\\n\\nI have taken inspiration from posts across the web as the default Sunshine headless setup required a connected monitor:\\n1. I first created a `xorg.conf` using `nvidia-xconfig -virtual 1920x1080`.\\n2. Then I exported `DISPLAY=:0`\\n3. I copied .Xauthority file to my home directory from gdm and set correct permissions for my user to own the file.\\n4. Set `virtual_sink` as default using pactl and also modified it in sunshine configuration using UI\\n5. Use `gnome-session \\u0026 sunshine` and connect through moonlight on my local machine. A gdm login screen appears, when I login using the same user, it crashes with the above errors.\\n\\nNOTE: I have tried setting `nomodeset` in grub cfg, updating grub and rebooting but this doesn't work as well.\\n\\nPlease share any suggestions or solutions you guys might have to setup this configuration.\\n\\nPS: A huge thanks to the sunshine team for providing such an amazing tool.\", \"author_fullname\": \"t2_cech1gfu\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Reposted from Discord - Nvidia Headless \", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1f36hph\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1724840011.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone, I have been trying to setup sunshine on a headless server with Nvidia GPU for a few days now, even switching to GamesOnWhales in desperation. I have somehow managed to get to see the login screen from my moonlight client but face an error I am completely alien to. Here are the 2 errors that pop up whenever I try to login AFTER STARTING A STREAM ON MY MOONLIGHT CLIENT:\\n\\u003Ccode\\u003E\\n1. [Error: Failed to start capture session: Cannot create capture session: the display server is in modeset\\n2. Error: Couldn\\u0026#39;t release NvFBC context from current thread: Cannot create capture session: the display server is in modeset.\\n\\u003C/code\\u003E\\nDetailed logs are available here: \\u003Ca href=\\\"https://gist.github.com/ConsularParadi/4f425caaccf5c6d56542d6deb9d1fb98\\\"\\u003Ehttps://gist.github.com/ConsularParadi/4f425caaccf5c6d56542d6deb9d1fb98\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have taken inspiration from posts across the web as the default Sunshine headless setup required a connected monitor:\\n1. I first created a \\u003Ccode\\u003Exorg.conf\\u003C/code\\u003E using \\u003Ccode\\u003Envidia-xconfig -virtual 1920x1080\\u003C/code\\u003E.\\n2. Then I exported \\u003Ccode\\u003EDISPLAY=:0\\u003C/code\\u003E\\n3. I copied .Xauthority file to my home directory from gdm and set correct permissions for my user to own the file.\\n4. Set \\u003Ccode\\u003Evirtual_sink\\u003C/code\\u003E as default using pactl and also modified it in sunshine configuration using UI\\n5. Use \\u003Ccode\\u003Egnome-session \\u0026amp; sunshine\\u003C/code\\u003E and connect through moonlight on my local machine. A gdm login screen appears, when I login using the same user, it crashes with the above errors.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENOTE: I have tried setting \\u003Ccode\\u003Enomodeset\\u003C/code\\u003E in grub cfg, updating grub and rebooting but this doesn\\u0026#39;t work as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease share any suggestions or solutions you guys might have to setup this configuration.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPS: A huge thanks to the sunshine team for providing such an amazing tool.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?auto=webp\\u0026s=9ae035fbdcd6bb503ab0b4a605b8db6de46647ee\", \"width\": 1280, \"height\": 640}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9bcab7b79864ff27bf48116cb335a6f825bfb124\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=e4e925345605c644eebe8abd69916915fc4fbcf7\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=614b06d5b40c890a59e355191a6e2d75cdf50789\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=62ca4cb88917f17e7200a6f1c665b5d959713745\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=c5f4a30974a8e6bad0d617a79935bc70c954e3e8\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/DaucjXMGsNHM-CtmdilC9-Be6MC8V2z4ykjVCgOkTFc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=476793be11eaac4604b6b0c938b45c7c3b52d450\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"OAXSl8SY6T3JK9MGQyKxkoYbqZ71HQRYXLeB8CV0NXg\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1f36hph\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Low-Musician-163\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1f36hph/reposted_from_discord_nvidia_headless/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1f36hph/reposted_from_discord_nvidia_headless/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1724840011.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi there, I use Qres software to change to different resolution when I connect from VNC or Moonlight from my smartphone, laptop, TV, etc. \\nSo I want to put and Icon to the different Windows Qres shortcut, with related theme. \\nCould you help me to find those icons in ICO format?\", \"author_fullname\": \"t2_13r0ql\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"FullHD, QHD and 4K Windows ICO for Qres. Where?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ez7qeg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.33, \"ignore_reports\": false, \"ups\": 0, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 0, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1724402555.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there, I use Qres software to change to different resolution when I connect from VNC or Moonlight from my smartphone, laptop, TV, etc.\\u003Cbr/\\u003E\\nSo I want to put and Icon to the different Windows Qres shortcut, with related theme.\\u003Cbr/\\u003E\\nCould you help me to find those icons in ICO format?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ez7qeg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"hewellp\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ez7qeg/fullhd_qhd_and_4k_windows_ico_for_qres_where/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ez7qeg/fullhd_qhd_and_4k_windows_ico_for_qres_where/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1724402555.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Once upon a time, I could count on my computer to wake from sleep mode on command via moonlight. (Oh, I REALLY LOVE SUNSHINE BTW! Thanks a lot!)\\n\\nLately however, when I ask it to wake, I get nothing. I haven't been back home to test it myself, but I asked one of my kids to look in on it and they said it was on and waiting for login.\\n\\nSince I still couldn't even see that my pc was available to connect to, I asked my son to try logging in. He did so and suddenly my pc was visible in moonlight. Hooray! Or so I thought. At this point, I was being given an error, citing that the firewall ports were not configured right.\\n\\nThe kid rebooted my computer, and all was well. I was even able to put my computer to sleep and wake it again a few minutes later.\\n\\nAfter a few hours I tried again, still working. A few hours later, no problem. Then a day goes by where I don't touch it. The next day, same issue again.\", \"author_fullname\": \"t2_6ixw8oqy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Host pc not waking anymore\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1eyaasy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1724300465.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1724300242.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOnce upon a time, I could count on my computer to wake from sleep mode on command via moonlight. (Oh, I REALLY LOVE SUNSHINE BTW! Thanks a lot!)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ELately however, when I ask it to wake, I get nothing. I haven\\u0026#39;t been back home to test it myself, but I asked one of my kids to look in on it and they said it was on and waiting for login.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESince I still couldn\\u0026#39;t even see that my pc was available to connect to, I asked my son to try logging in. He did so and suddenly my pc was visible in moonlight. Hooray! Or so I thought. At this point, I was being given an error, citing that the firewall ports were not configured right.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe kid rebooted my computer, and all was well. I was even able to put my computer to sleep and wake it again a few minutes later.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAfter a few hours I tried again, still working. A few hours later, no problem. Then a day goes by where I don\\u0026#39;t touch it. The next day, same issue again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1eyaasy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Right-Wolverine-983\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1eyaasy/host_pc_not_waking_anymore/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1eyaasy/host_pc_not_waking_anymore/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1724300242.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"My host pc crashes when I use a controller (gamesir g8) with moonlight on android. I have the controller connected and can use touch input from the phone but if I press any input on the controller, the host pc crashes and blue/green screen. I believe it's the vigembus drivers but I can't find another way to test it. I've removed the drivers but then the inputs aren't working (of course) and no crashes.\", \"author_fullname\": \"t2_1pm1snx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"BSOD when client controller is connected.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1esaccw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1723663331.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMy host pc crashes when I use a controller (gamesir g8) with moonlight on android. I have the controller connected and can use touch input from the phone but if I press any input on the controller, the host pc crashes and blue/green screen. I believe it\\u0026#39;s the vigembus drivers but I can\\u0026#39;t find another way to test it. I\\u0026#39;ve removed the drivers but then the inputs aren\\u0026#39;t working (of course) and no crashes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1esaccw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ComHarry\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1esaccw/bsod_when_client_controller_is_connected/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1esaccw/bsod_when_client_controller_is_connected/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1723663331.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex v2024.813.13709 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1erf9ut\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/hXy177w2nwpsWIaN45aVRKsjFFxQTiUlk6ppvSSOWWU.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1723573537.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v2024.813.13709\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?auto=webp\\u0026s=a707ff0d47d796a8bccb71178dd2803cf6d7fbec\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ba03c237eb78befbc5c26eadd323c8828273613\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=cc70d007d56c952e8bc282d6254c434fca1aa00a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=1c5037a43cc8db73223efd292b955e0911e312f6\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f5448065bb5de07d81bf3c9fa0a65199e3de8e3c\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=e4b3b1f4b6136ba562001f90c04327eca033c917\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/4iWdptEQP53IJnDpF9PjM-2H3qW_JpSlxuJDY-tvJrs.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=bf9fce4792dcd433dac8777793c1d9cfe81b53eb\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"7-Cd7z8s_vKxkqr_YHRGJQZZIF80U78I9WKVw7j84hQ\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1erf9ut\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1erf9ut/themerrplex_v202481313709_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v2024.813.13709\", \"subreddit_subscribers\": 1087, \"created_utc\": 1723573537.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"plexhints v2024.809.14117 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1eno2rh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/JZd-9CEA9nAS_cxSCzjKDg4zyMvQQdZuH6A575cJ4PA.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1723169432.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.809.14117\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?auto=webp\\u0026s=f1600ba8ee0ad1c42a89ed307acc4e4ade612b49\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=9c746238e314dd4c82778f6d5dfb0a64a8dd8c5b\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=871ad34e55811e019e0464689d21a3c8cd9c770f\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=621b7c91479be940d16b255e96ce683a7dad4e5a\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=3c009f896d0549a9b7a112a61fdd181269dc417f\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=decffec83cad740fe9e6bdd9b8431cc14867447f\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/GB7HflzntuVFbGmUFTXq45tqYAMrn0_rlZZkCG2i2VA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=ab9ea6ee095f25491f1a2ab5d85ff0e6e065120c\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"EUuykH4wdJBwRNXbBGDJNTTzSZwWZXg6dzfdoVN4kzA\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1eno2rh\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1eno2rh/plexhints_v202480914117_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.809.14117\", \"subreddit_subscribers\": 1087, \"created_utc\": 1723169432.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi there! \\nEasy-GPU-PV is a well known project to create virtual machines with GPU acceleration. \\nBut the original project only allowed the user to set up Parsec and no alternative like Sunshine/Moonlight. Furthermore it only added a virtual display to the VM when the user connected to it by relying on the fallback display of the Parsec App and its Privacy Mode.\\n\\nI wanted to improve on that. \\nWith my new updated version the user can choose if he wants to install Sunshine or Parsec. It also adds a permanently connected virtual display to the VM.\\n\\nThe user can also decide between two different Virtual Display solutions. One\\u00a0[solution](https://github.com/timminator/ParsecVDA-Always-Connected)\\u00a0is based on the Parsec Virtual Display Driver. The other\\u00a0[solution](https://github.com/timminator/Virtual-Display-Driver)\\u00a0utilizes the Virtual Display Driver by\\u00a0[u/MikeTheTech](https://www.reddit.com/user/MikeTheTech)\\u00a0that i modified so that it can be installed remotely in this project.\\n\\nThis allows for Sunshine/Moonlight support out of the box!\\n\\nI hope it's fine if I post a link to my Github Project here:\\n\\n[https://github.com/timminator/Enhanced-GPU-PV](https://github.com/timminator/Enhanced-GPU-PV)\\n\\nI hope you enjoy this project and if you do i would appreciate a star rating :-)\\n\\nOne more info: Connecting to the VM via Moonlight can lead to timeouts due to long connection times. I solved this problem by increasing the timeout value in Moonlight. For that i created a modified Moonlight version with this fix in place. You can find it\\u00a0[here](https://github.com/timminator/Moonlight-Tailored-for-GPU-PV).\", \"author_fullname\": \"t2_5l3panx9\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Enhanced-GPU-PV with Sunshine/Moonlight and Virtual Display Driver support!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ec8n65\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.84, \"ignore_reports\": false, \"ups\": 4, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 4, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1722180924.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1721948325.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi there!\\u003Cbr/\\u003E\\nEasy-GPU-PV is a well known project to create virtual machines with GPU acceleration.\\u003Cbr/\\u003E\\nBut the original project only allowed the user to set up Parsec and no alternative like Sunshine/Moonlight. Furthermore it only added a virtual display to the VM when the user connected to it by relying on the fallback display of the Parsec App and its Privacy Mode.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wanted to improve on that.\\u003Cbr/\\u003E\\nWith my new updated version the user can choose if he wants to install Sunshine or Parsec. It also adds a permanently connected virtual display to the VM.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe user can also decide between two different Virtual Display solutions. One\\u00a0\\u003Ca href=\\\"https://github.com/timminator/ParsecVDA-Always-Connected\\\"\\u003Esolution\\u003C/a\\u003E\\u00a0is based on the Parsec Virtual Display Driver. The other\\u00a0\\u003Ca href=\\\"https://github.com/timminator/Virtual-Display-Driver\\\"\\u003Esolution\\u003C/a\\u003E\\u00a0utilizes the Virtual Display Driver by\\u00a0\\u003Ca href=\\\"https://www.reddit.com/user/MikeTheTech\\\"\\u003Eu/MikeTheTech\\u003C/a\\u003E\\u00a0that i modified so that it can be installed remotely in this project.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis allows for Sunshine/Moonlight support out of the box!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope it\\u0026#39;s fine if I post a link to my Github Project here:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://github.com/timminator/Enhanced-GPU-PV\\\"\\u003Ehttps://github.com/timminator/Enhanced-GPU-PV\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI hope you enjoy this project and if you do i would appreciate a star rating :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOne more info: Connecting to the VM via Moonlight can lead to timeouts due to long connection times. I solved this problem by increasing the timeout value in Moonlight. For that i created a modified Moonlight version with this fix in place. You can find it\\u00a0\\u003Ca href=\\\"https://github.com/timminator/Moonlight-Tailored-for-GPU-PV\\\"\\u003Ehere\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?auto=webp\\u0026s=cb3f14a21da66119f324d5cc78e2610ccb9caae3\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=f7a7e8addfd0fea8c2bbb06889c2941fa3b6575f\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=d39948e8a5e5a218f5f7b6ccfa6776f23455192d\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=3c3716bee94cf9f9cf3cbeec511ff0676a0258a6\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=227beb4722d093bcbdce1f5789d5bbdcbbde4ab5\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=2899ba2fe1d9efc3f0580ca9d35dc9d61c2cab92\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/O4YGyZMrjfW1NI3KqPb3Ob2XkSDkyhmEEizQW5fQLlE.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e7b6eec80ff402cc2f25f0b9b359d3b67bccebe7\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"cjm1J0pOdvR2CurD713U1JLGlZouMW6DY4stHSVwdUc\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1ec8n65\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"timminator3\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ec8n65/enhancedgpupv_with_sunshinemoonlight_and_virtual/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ec8n65/enhancedgpupv_with_sunshinemoonlight_and_virtual/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1721948325.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"plexhints v2024.725.1918 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ebhfwq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/QSr8B1e_JuEPHBkMHrgRXNq0wLkEI0P6SZO71D5v-6M.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1721867749.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.725.1918\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?auto=webp\\u0026s=7ab48630445671439e366cca212a1b47ee5e5c21\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=4ac8e676d3b8690f013a641486bb72b97221429b\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=6a67e49fcb2e2ba0181a8b4ed9a9b43e9f900d2d\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=cb3c82f4d148644deaa7c01fd28738b19cfa2acd\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=f57a510872489817fef2553f1639c69640cfb82e\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=96279b1eda9233eebca3598bd9acab86dae9cd9f\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/cjdspUdM6ud5wS4TJLdl48iqhQLLFEny4RkS23dEZY4.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=189e08210c939e5fc2ab7aba4d18b3504c4747a7\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"-0CNv6TujNGsc8Jx6ZAqPm8TYd1JftAO5wzhyQZpdJw\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1ebhfwq\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1ebhfwq/plexhints_v20247251918_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.725.1918\", \"subreddit_subscribers\": 1087, \"created_utc\": 1721867749.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex v2024.717.231002 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1e5wf1t\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.86, \"ignore_reports\": false, \"ups\": 5, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 5, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/Dz-1Ap1adPoQjO8lFOdMRohyRofDIUxI7ikU3k0_jxQ.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1721258024.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v2024.717.231002\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?auto=webp\\u0026s=905661da474d15a4cbd39f1301aceb9cfa5e270b\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ba540e65616f73f6d9940fd043ab20e090d52a96\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=75d8224bc5b5496f45db9ef217dcdca4da72cea6\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=75c5237cf747e7ba217db5bcf21e4cbfdf550f53\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=36c2026d9d91b85f30bcc150e9a369ee49a31910\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=3b9e354f23e0e61405f16f9b0b6b80b6a2755b1f\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/kEydEz7NWkol4v-_9ZNtUJYssHud3X3PArtbGqgjokA.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=915e759d11330ebd059a9778bf9f4435b70b4b79\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"StHAB2jwb_AhPVaIXhaFlrKFAwplVcXCIcUTBP6pP08\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1e5wf1t\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1e5wf1t/themerrplex_v2024717231002_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/Themerr-plex/releases/tag/v2024.717.231002\", \"subreddit_subscribers\": 1087, \"created_utc\": 1721258024.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"plexhints v2024.715.173608 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1e410qi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://a.thumbs.redditmedia.com/9ucFAmPItw_zH9D3fXINfb422jyrFpRoovcok8sAUn4.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1721065297.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.715.173608\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?auto=webp\\u0026s=e95bc40737f8a9c853ff021a83b5224edb59b0d0\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=18fcfc6586a376ba821bc8f3e5b1bfc9f31f0e5b\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=cf5f216116d059b9197752923fc588329cad10d5\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=18092c4bea2e1fa020b6ea3c54e4ddc9142307bc\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5633fdf86b353d96e39e2b6a74b7fe2835833104\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=a3171e2bd208ad035829c03c6fe78a1238428c5f\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/FL5lM_uCF-5SLnHiKNnz4VBkicVn2eDnst4Ya6-Ekww.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=c2d50375a353c8ceb8068646c08daff8281b1038\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"U9TlA80UsP6JZVOMMInsvnZADvsC3oQg8KBJb0mF2EY\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"1e410qi\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/1e410qi/plexhints_v2024715173608_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/plexhints/releases/tag/v2024.715.173608\", \"subreddit_subscribers\": 1087, \"created_utc\": 1721065297.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Guy's I want to use sunshine, but I can't connect to it and give me this error but GeForce experience is working fine btw I'm using VM machine \\nhere is log :\\n\\n**\\\\[2024:06:16:21:56:36\\\\]: Warning: Failed to set GPU preference. Capture may not work!** \\n**\\\\[2024:06:16:21:56:37\\\\]: Error: DuplicateOutput() test failed \\\\[0x887A0004\\\\]** \\n**\\\\[2024:06:16:21:56:38\\\\]: Error: DuplicateOutput() test failed \\\\[0x887A0004\\\\]** \\n**\\\\[2024:06:16:21:56:38\\\\]: Error: Failed to locate an output device** \\n**\\\\[2024:06:16:21:56:38\\\\]: Info: Encoder \\\\[software\\\\] failed** \\n**\\\\[2024:06:16:21:56:38\\\\]: Fatal: Unable to find display or encoder during startup.** \\n**\\\\[2024:06:16:21:56:38\\\\]: Fatal: Please ensure your manually chosen GPU and monitor are connected and powered on.**\", \"author_fullname\": \"t2_5vgrnb4j\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Unable to find display or encoder during startup In VM machine\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1dixvnx\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1718735583.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGuy\\u0026#39;s I want to use sunshine, but I can\\u0026#39;t connect to it and give me this error but GeForce experience is working fine btw I\\u0026#39;m using VM machine\\u003Cbr/\\u003E\\nhere is log :\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E[2024:06:16:21:56:36]: Warning: Failed to set GPU preference. Capture may not work!\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:37]: Error: DuplicateOutput() test failed [0x887A0004]\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:38]: Error: DuplicateOutput() test failed [0x887A0004]\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:38]: Error: Failed to locate an output device\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:38]: Info: Encoder [software] failed\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:38]: Fatal: Unable to find display or encoder during startup.\\u003C/strong\\u003E\\u003Cbr/\\u003E\\n\\u003Cstrong\\u003E[2024:06:16:21:56:38]: Fatal: Please ensure your manually chosen GPU and monitor are connected and powered on.\\u003C/strong\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1dixvnx\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"arashepto\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1dixvnx/unable_to_find_display_or_encoder_during_startup/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1dixvnx/unable_to_find_display_or_encoder_during_startup/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1718735583.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have a server running gnome wayland which i have access to over ssh. I would like to start sunshine over ssh, however i does not find a display. If i set \\\\`export WAYLAND\\\\_DISPLAY=wayland-0\\\\` sunshine detects the display but is not able to start?\\n\\nHow can i start sunshine from remote?\", \"author_fullname\": \"t2_q7abr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to start sunshine from remote?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1dixdhw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1718734324.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a server running gnome wayland which i have access to over ssh. I would like to start sunshine over ssh, however i does not find a display. If i set `export WAYLAND_DISPLAY=wayland-0` sunshine detects the display but is not able to start?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow can i start sunshine from remote?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1dixdhw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"maxawake\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1dixdhw/how_to_start_sunshine_from_remote/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1dixdhw/how_to_start_sunshine_from_remote/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1718734324.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hardware: CPU: 7950X3D using onboard graphics GPU: NVIDIA GTX770\\n\\nI can\\u2019t for the life of me get this combination working on my system!\\n\\nI\\u2019m running latest ChimeraOS and have tried downloading sunshine from software store and flatpak store and keep getting following error:\\n\\nAttention! Sunshine detected these errors during startup. We STRONGLY RECOMMEND fixing them before streaming.\\n\\n* Fatal: You must run \\\\[sudo setcap cap\\\\_sys\\\\_admin+p $(readlink -f $(which sunshine))\\\\] for KMS display capture to work!\\n* Fatal: Unable to find display or encoder during startup.\\n* Fatal: Please check that a display is connected and powered on.\\n\\nHere\\u2019re my logs:\\n\\n`[2024:05:25:11:19:24]: Info: Sunshine version: 0.23.1.8b21db6.dirty`\\n\\n`[2024:05:25:11:19:24]: Error: Couldn't load cuda: -1`\\n\\n`[2024:05:25:11:19:24]: Info: Found display [wayland-0]`\\n\\n`[2024:05:25:11:19:24]: Info: Found interface: wl_output(4) version 4`\\n\\n`[2024:05:25:11:19:24]: Info: Found interface: zxdg_output_manager_v1(5) version 3`\\n\\n`[2024:05:25:11:19:24]: Warning: Missing Wayland wire for wlr-export-dmabuf`\\n\\n`[2024:05:25:11:19:24]: Error: Failed to gain CAP_SYS_ADMIN`\\n\\n`[2024:05:25:11:19:24]: Info: /dev/dri/card1 -\\u003E amdgpu`\\n\\n`[2024:05:25:11:19:24]: Error: Failed to gain CAP_SYS_ADMIN`\\n\\n`[2024:05:25:11:19:24]: Error: Couldn't get handle for DRM Framebuffer [131]: Probably not permitted`\\n\\n`[2024:05:25:11:19:24]: Fatal: You must run [sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine))] for KMS display capture to work!`\\n\\n`[2024:05:25:11:19:24]: Info: Found display [wayland-0]`\\n\\n`[2024:05:25:11:19:24]: Info: Found display [wayland-0]`\\n\\n`[2024:05:25:11:19:24]: Info: Found interface: wl_output(4) version 4`\\n\\n`[2024:05:25:11:19:24]: Info: Found interface: zxdg_output_manager_v1(5) version 3`\\n\\n`[2024:05:25:11:19:24]: Info: Resolution: 1920x1080`\\n\\n`[2024:05:25:11:19:24]: Info: Offset: 0x0`\\n\\n`[2024:05:25:11:19:24]: Info: Logical size: 1920x1080`\\n\\n`[2024:05:25:11:19:24]: Info: Name: HDMI-1`\\n\\n`[2024:05:25:11:19:24]: Info: Found monitor: Samsung Electric Company 46\\\"`\\n\\n`[2024:05:25:11:19:24]: Info: -------- Start of KMS monitor list --------`\\n\\n`[2024:05:25:11:19:24]: Warning: Mismatch on expected Resolution compared to actual resolution: 0x0 vs 1920x1080`\\n\\n`[2024:05:25:11:19:24]: Info: Monitor 0 is HDMI-1: Samsung Electric Company 46\\\"`\\n\\n`[2024:05:25:11:19:24]: Info: --------- End of KMS monitor list ---------`\\n\\n`[2024:05:25:11:19:24]: Error: Unable to initialize capture method`\\n\\n`[2024:05:25:11:19:24]: Error: Platform failed to initialize`\\n\\n`[2024:05:25:11:19:24]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //`\\n\\n`[2024:05:25:11:19:24]: Info: Trying encoder [nvenc]`\\n\\n`[2024:05:25:11:19:24]: Info: System tray created`\\n\\n`[2024:05:25:11:19:25]: Info: Encoder [nvenc] failed`\\n\\n`[2024:05:25:11:19:25]: Info: Trying encoder [vaapi]`\\n\\n`[2024:05:25:11:19:25]: Info: Encoder [vaapi] failed`\\n\\n`[2024:05:25:11:19:25]: Info: Trying encoder [software]`\\n\\n`[2024:05:25:11:19:25]: Info: Encoder [software] failed`\\n\\n`[2024:05:25:11:19:25]: Fatal: Unable to find display or encoder during startup.`\\n\\n`[2024:05:25:11:19:25]: Fatal: Please check that a display is connected and powered on.`\\n\\n`[2024:05:25:11:19:25]: Error: Video failed to find working encoder`\\n\\n`[2024:05:25:11:19:25]: Info: Configuration UI available at [https://localhost:47990]`\\n\\n`[2024:05:25:11:19:25]: Info: Adding avahi service Sunshine`\\n\\n`[2024:05:25:11:19:26]: Info: Avahi service Sunshine successfully established.`\\n\\n`[2024:05:25:11:19:27]: Info: Web UI: [127.0.0.1] -- not authorized`\\n\\n`[2024:05:25:11:19:31]: Info: Web UI: [127.0.0.1] -- not authorized`\\n\\n`[2024:05:25:11:19:31]: Info: Web UI: [127.0.0.1] -- not authorized`\\n\\n\\n\\nI\\u2019ve tried running the cmd and it keeps erroring and uninstalling and reinstalling does nothing!\\n\\nPlease help!\", \"author_fullname\": \"t2_ogltw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"ChimeraOS Sunshine help\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1d02qss\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1716607337.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1716607115.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHardware: CPU: 7950X3D using onboard graphics GPU: NVIDIA GTX770\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI can\\u2019t for the life of me get this combination working on my system!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019m running latest ChimeraOS and have tried downloading sunshine from software store and flatpak store and keep getting following error:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAttention! Sunshine detected these errors during startup. We STRONGLY RECOMMEND fixing them before streaming.\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFatal: You must run [sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine))] for KMS display capture to work!\\u003C/li\\u003E\\n\\u003Cli\\u003EFatal: Unable to find display or encoder during startup.\\u003C/li\\u003E\\n\\u003Cli\\u003EFatal: Please check that a display is connected and powered on.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EHere\\u2019re my logs:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Sunshine version: 0.23.1.8b21db6.dirty\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Couldn\\u0026#39;t load cuda: -1\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found display [wayland-0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found interface: wl_output(4) version 4\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found interface: zxdg_output_manager_v1(5) version 3\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Warning: Missing Wayland wire for wlr-export-dmabuf\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Failed to gain CAP_SYS_ADMIN\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: /dev/dri/card1 -\\u0026gt; amdgpu\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Failed to gain CAP_SYS_ADMIN\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Couldn\\u0026#39;t get handle for DRM Framebuffer [131]: Probably not permitted\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Fatal: You must run [sudo setcap cap_sys_admin+p $(readlink -f $(which sunshine))] for KMS display capture to work!\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found display [wayland-0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found display [wayland-0]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found interface: wl_output(4) version 4\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found interface: zxdg_output_manager_v1(5) version 3\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Resolution: 1920x1080\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Offset: 0x0\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Logical size: 1920x1080\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Name: HDMI-1\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Found monitor: Samsung Electric Company 46\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: -------- Start of KMS monitor list --------\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Warning: Mismatch on expected Resolution compared to actual resolution: 0x0 vs 1920x1080\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Monitor 0 is HDMI-1: Samsung Electric Company 46\\u0026quot;\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: --------- End of KMS monitor list ---------\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Unable to initialize capture method\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Error: Platform failed to initialize\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: Trying encoder [nvenc]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:24]: Info: System tray created\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Encoder [nvenc] failed\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Trying encoder [vaapi]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Encoder [vaapi] failed\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Trying encoder [software]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Encoder [software] failed\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Fatal: Unable to find display or encoder during startup.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Fatal: Please check that a display is connected and powered on.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Error: Video failed to find working encoder\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Configuration UI available at [https://localhost:47990]\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:25]: Info: Adding avahi service Sunshine\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:26]: Info: Avahi service Sunshine successfully established.\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:27]: Info: Web UI: [127.0.0.1] -- not authorized\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:31]: Info: Web UI: [127.0.0.1] -- not authorized\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003E[2024:05:25:11:19:31]: Info: Web UI: [127.0.0.1] -- not authorized\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u2019ve tried running the cmd and it keeps erroring and uninstalling and reinstalling does nothing!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EPlease help!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1d02qss\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"OmniiOMEGA\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1d02qss/chimeraos_sunshine_help/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1716607115.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1714004322, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm having this same issue on my machine I have the latest drivers installed. Every time I disable this setting \\\"Allow the computer to turn off this device to save power\\\" disables \\\"Allow this device to wake the computer\\\" for my ethernet network card.\\n\\nThe only way for wake on lan to work is if this setting is enabled but when an extended amount of time has gone by the network card is powered off and the magic packets can not be received.\\n\\nAnyone fix this issue?\\n\\nIntel\\u00ae Ethernet Controller I225-V \\nDriver Version:\\u00a0[1.1.3.28](http://1.1.3.28) \\nDriver Date: 3/5/22 Not really sure where and how to update this using Intel Driver Assist for updates \\nMSI z690i Unify latest bios\", \"author_fullname\": \"t2_wx50x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Wake on LAN working if PC is sleeping for extended period of time\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"user_reports_dismissed\": [[\"This is spam\", 1, false, false]], \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1cac7q5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1713796065.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m having this same issue on my machine I have the latest drivers installed. Every time I disable this setting \\u0026quot;Allow the computer to turn off this device to save power\\u0026quot; disables \\u0026quot;Allow this device to wake the computer\\u0026quot; for my ethernet network card.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only way for wake on lan to work is if this setting is enabled but when an extended amount of time has gone by the network card is powered off and the magic packets can not be received.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnyone fix this issue?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIntel\\u00ae Ethernet Controller I225-V\\u003Cbr/\\u003E\\nDriver Version:\\u00a0\\u003Ca href=\\\"http://1.1.3.28\\\"\\u003E1.1.3.28\\u003C/a\\u003E\\u003Cbr/\\u003E\\nDriver Date: 3/5/22 Not really sure where and how to update this using Intel Driver Assist for updates\\u003Cbr/\\u003E\\nMSI z690i Unify latest bios\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": -1, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1cac7q5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"eastcoastninja\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1cac7q5/wake_on_lan_working_if_pc_is_sleeping_for/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1cac7q5/wake_on_lan_working_if_pc_is_sleeping_for/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1713796065.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello everyone! \\n\\nI'm reaching out to you because I'm desperate regarding my issue with Sunshine and Moonlight. \\n\\nMy problem is as follows: When I connect another device to my computer, which has the latest version of Sunshine (23) on Ubuntu 23.10, the image only appears for a few seconds before freezing, and then after about 15 seconds, I get the error -1 on Moonlight. Since I had some errors in the logs related to HEVC, I tried to set the decoding to software only, but without success. I tried with both Wayland and Xorg, but no improvement. My graphics card is a Radeon 780m with a Ryzen 7 7840u, all up to date. Here are the logs I get, \\n\\nmany thanks: \\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't load cuda: -1\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Environment variable WAYLAND\\\\_DISPLAY has not been defined\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x58c6b9318c00\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x58c6b93af340\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x58c6b9318c00\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x58c6b93b6cc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x58c6b93b6880\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x58c6b93c8f40\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x58c6b9485800\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x58c6b9287100\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x58c6b9283b40\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x58c6b93e9440\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:31:57\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x797be428aac0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bec05da40\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797bd405f700\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be43807c0\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be4010ec0\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be43addc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be4387a40\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be431e700\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:05\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:06\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bbc1e3f40\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:06\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bbca10b40\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: Couldn't find monitor \\\\[0\\\\]\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[h264\\\\_vaapi @ 0x797be407be80\\\\] No usable encoding entrypoint found for profile VAProfileH264High (7).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[h264\\\\_vaapi @ 0x797be4300700\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be42c5700\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be42cb440\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be43d6340\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be429e100\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797be4086200\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797be4013dc0\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Error: \\\\[av1\\\\_vaapi @ 0x797be43343c0\\\\] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: \\\\[av1\\\\_vaapi @ 0x797be4166340\\\\] Multiple slices were requested but this codec does not support controlling slices.\\n\\n\\\\[2024:04:10:19:32:24\\\\]: Warning: vaapi: hevc missing sps-\\u003Evui parameters\\n\\n\\\\[2024:04:10:19:32:25\\\\]: Error: \\\\[hevc\\\\_vaapi @ 0x797bb41e4cc0\\\\] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\n\\n\\\\[2024:04:10:19:32:25\\\\]: Warning: \\\\[hevc\\\\_vaapi @ 0x797bb4a11000\\\\] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\\n\\n\\\\[2024:04:10:19:32:35\\\\]: Warning: sendmsg() failed: 9\", \"author_fullname\": \"t2_ru2zuz0f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"The connection only works for a few seconds.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1c0rdv5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1712770474.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello everyone! \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m reaching out to you because I\\u0026#39;m desperate regarding my issue with Sunshine and Moonlight. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy problem is as follows: When I connect another device to my computer, which has the latest version of Sunshine (23) on Ubuntu 23.10, the image only appears for a few seconds before freezing, and then after about 15 seconds, I get the error -1 on Moonlight. Since I had some errors in the logs related to HEVC, I tried to set the decoding to software only, but without success. I tried with both Wayland and Xorg, but no improvement. My graphics card is a Radeon 780m with a Ryzen 7 7840u, all up to date. Here are the logs I get, \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Emany thanks: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t load cuda: -1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Environment variable WAYLAND_DISPLAY has not been defined\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [h264_vaapi @ 0x58c6b9318c00] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [h264_vaapi @ 0x58c6b93af340] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [hevc_vaapi @ 0x58c6b9318c00] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [hevc_vaapi @ 0x58c6b93b6cc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [av1_vaapi @ 0x58c6b93b6880] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [av1_vaapi @ 0x58c6b93c8f40] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [hevc_vaapi @ 0x58c6b9485800] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [hevc_vaapi @ 0x58c6b9287100] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Error: [av1_vaapi @ 0x58c6b9283b40] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: [av1_vaapi @ 0x58c6b93e9440] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:31:57]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [h264_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [h264_vaapi @ 0x797be428aac0] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [hevc_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [hevc_vaapi @ 0x797bec05da40] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [av1_vaapi @ 0x797bd405f700] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [av1_vaapi @ 0x797be43807c0] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [hevc_vaapi @ 0x797be4010ec0] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [hevc_vaapi @ 0x797be43addc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Error: [av1_vaapi @ 0x797be4387a40] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: [av1_vaapi @ 0x797be431e700] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:05]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:06]: Error: [hevc_vaapi @ 0x797bbc1e3f40] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:06]: Warning: [hevc_vaapi @ 0x797bbca10b40] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: Couldn\\u0026#39;t find monitor [0]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [h264_vaapi @ 0x797be407be80] No usable encoding entrypoint found for profile VAProfileH264High (7).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [h264_vaapi @ 0x797be4300700] Driver does not support some wanted packed headers (wanted 0xd, found 0).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [hevc_vaapi @ 0x797be42c5700] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [hevc_vaapi @ 0x797be42cb440] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [av1_vaapi @ 0x797be43d6340] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [av1_vaapi @ 0x797be429e100] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [hevc_vaapi @ 0x797be4086200] No usable encoding entrypoint found for profile VAProfileHEVCMain10 (18).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [hevc_vaapi @ 0x797be4013dc0] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Error: [av1_vaapi @ 0x797be43343c0] No usable encoding entrypoint found for profile VAProfileAV1Profile0 (32).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: [av1_vaapi @ 0x797be4166340] Multiple slices were requested but this codec does not support controlling slices.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:24]: Warning: vaapi: hevc missing sps-\\u0026gt;vui parameters\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:25]: Error: [hevc_vaapi @ 0x797bb41e4cc0] No usable encoding entrypoint found for profile VAProfileHEVCMain (17).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:25]: Warning: [hevc_vaapi @ 0x797bb4a11000] Driver does not support some wanted packed headers (wanted 0xd, found 0x1).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2024:04:10:19:32:35]: Warning: sendmsg() failed: 9\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1c0rdv5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Anthony_1980\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1c0rdv5/the_connection_only_works_for_a_few_seconds/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1c0rdv5/the_connection_only_works_for_a_few_seconds/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1712770474.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"How to customize application order?\", \"author_fullname\": \"t2_tozze00q\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to customize application order?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bj8equ\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1710922351.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow to customize application order?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1bj8equ\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Only_Hard\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1bj8equ/how_to_customize_application_order/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1710922351.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi,\\n\\nI put Sunshine zip in VirusTotal and it says it has W64.AIDetectMalware which is aTrojan.\\n\\nIs this real? \\nDid anyone get a virus?\", \"author_fullname\": \"t2_ivnrno1fw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"VirusTotal W64.AIDetectMalware Trojan\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bfwgdt\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1710558820.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI put Sunshine zip in VirusTotal and it says it has W64.AIDetectMalware which is aTrojan.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this real? \\nDid anyone get a virus?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1bfwgdt\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SandyCheeks888\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1bfwgdt/virustotal_w64aidetectmalware_trojan/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1710558820.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_z7vt67c\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Anyone know how to stop this from happening?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 140, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1bcwlr3\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"i.redd.it\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/xFftchskjjG2VCHNp67OJqOoRmoKaIWz2rzU9ifhLGc.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1710248214.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/m9086stqhwnc1.png\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?auto=webp\\u0026s=c34f98fd48c1fb6eda9afdc1b20391170db51f95\", \"width\": 301, \"height\": 2067}, \"resolutions\": [{\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=04623b00618b47dfb080bc4dd25cacb234a7f18d\", \"width\": 108, \"height\": 216}, {\"url\": \"https://preview.redd.it/m9086stqhwnc1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=a9421f92381d3a644fc27a8908c6a4174c4e34c8\", \"width\": 216, \"height\": 432}], \"variants\": {}, \"id\": \"J8IV7LdJ3dTVXoGP7jdqMLNwRgo7XlrHpU8kGRcG0dY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1bcwlr3\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"glass_needles\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1bcwlr3/anyone_know_how_to_stop_this_from_happening/\", \"stickied\": false, \"url\": \"https://i.redd.it/m9086stqhwnc1.png\", \"subreddit_subscribers\": 1087, \"created_utc\": 1710248214.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello there.\\n\\nI'm going to install Sunshine on my home server, running a GTX 1080 in a few months.\\n\\nThe last time I tried it out, I ended up installing the Ubuntu GUI for it to work, as I was only experimenting.\\n\\nHowever, I'm more inclined, in case it's possible, to keep my server GUI-less.\\n\\nIs this possible? Or even an headless server would need to have the GUI for it to work.\\n\\nMy idea would be to set up a virtual display but I recently realized that it's likely going to need the GUI anyway. Therefore, I ask the question: is it possible to run sunshine on a server without any GUI?\\n\\n\\nThanks in advance!\", \"author_fullname\": \"t2_b63yn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine on a no-GUI Server\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1b31w2a\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1709217665.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m going to install Sunshine on my home server, running a GTX 1080 in a few months.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe last time I tried it out, I ended up installing the Ubuntu GUI for it to work, as I was only experimenting.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m more inclined, in case it\\u0026#39;s possible, to keep my server GUI-less.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this possible? Or even an headless server would need to have the GUI for it to work.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy idea would be to set up a virtual display but I recently realized that it\\u0026#39;s likely going to need the GUI anyway. Therefore, I ask the question: is it possible to run sunshine on a server without any GUI?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1b31w2a\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"PeterShowFull\", \"discussion_type\": null, \"num_comments\": 16, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1b31w2a/sunshine_on_a_nogui_server/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1709217665.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm looking at a snappy remote desktop alternative but can't find in the docs anything about a headless setup where many users could start a remote desktop session. Is this supported in Sunshine?\", \"author_fullname\": \"t2_452qc27\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine as remote desktop for many users\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1b0hp04\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1708954644.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m looking at a snappy remote desktop alternative but can\\u0026#39;t find in the docs anything about a headless setup where many users could start a remote desktop session. Is this supported in Sunshine?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"1b0hp04\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"jmakov\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1b0hp04/sunshine_as_remote_desktop_for_many_users/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1708954644.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have to preface it by saying I'm on VMs on a Proxmox cluster, but successfully running things on a Ubuntu VM, and moving to Win11 VM because RetroArch (only use case for me) seems much better for Windows. Using exactly identical setting (and obviously hardware), on the Win11 setup I get errors in the config about no working encoder, \\\"Fatal: Couldn't find any working encoder\\\". Again, though, the same encoder is setup and working on the other VM but not working here.\\n\\nThe only thing I could think of is that the default drivers in Ubuntu are better than Windows and that's something impacting this, but that seems like a small stretch. Has anyone experienced this?\", \"author_fullname\": \"t2_e2zzs\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moving from Ubuntu to Windows (same settings) Encoder Not Detected?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1allhd8\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1707360940.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have to preface it by saying I\\u0026#39;m on VMs on a Proxmox cluster, but successfully running things on a Ubuntu VM, and moving to Win11 VM because RetroArch (only use case for me) seems much better for Windows. Using exactly identical setting (and obviously hardware), on the Win11 setup I get errors in the config about no working encoder, \\u0026quot;Fatal: Couldn\\u0026#39;t find any working encoder\\u0026quot;. Again, though, the same encoder is setup and working on the other VM but not working here.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe only thing I could think of is that the default drivers in Ubuntu are better than Windows and that\\u0026#39;s something impacting this, but that seems like a small stretch. Has anyone experienced this?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1allhd8\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"slavename\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1allhd8/moving_from_ubuntu_to_windows_same_settings/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1allhd8/moving_from_ubuntu_to_windows_same_settings/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1707360940.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi folks,\\n\\nIs there a known issue with Intel Quicksync support on Alder Lark N Processors? I've tried multiple distros now. both in Wayland and Xorg and there is no option to use Intel Quicksync, only VA-API which doesn't appear to working. Stream us unusable in all cases, with a constant low network connection mesage. though I'm hard wired on a gigabit LAN.\\n\\nI should note that this works perfectly on the same machine with Windows 10/11 and Intel Quicksync is present.\\n\\nIs there a setting I need to change to get this to work? I am currently using Linux mint 21.3. I have tried both Wayland and Xorg. Many thanks!\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_apa87avj\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine Intel N100 - No Quicksync Available\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1ak59mh\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1707208900.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi folks,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a known issue with Intel Quicksync support on Alder Lark N Processors? I\\u0026#39;ve tried multiple distros now. both in Wayland and Xorg and there is no option to use Intel Quicksync, only VA-API which doesn\\u0026#39;t appear to working. Stream us unusable in all cases, with a constant low network connection mesage. though I\\u0026#39;m hard wired on a gigabit LAN.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI should note that this works perfectly on the same machine with Windows 10/11 and Intel Quicksync is present.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a setting I need to change to get this to work? I am currently using Linux mint 21.3. I have tried both Wayland and Xorg. Many thanks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1ak59mh\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Cheapskate2020\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1ak59mh/sunshine_intel_n100_no_quicksync_available/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1707208900.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Thanks for writing this software. It is a blessing to have high quality software like this, a responsive developer who actively takes PRs and addresses bugs, and proactively develops for the user in mind.\\n\\nI had no issues getting set up, the software works perfectly.\\n\\nJust wanted to say, it's really impressive and I appreciate it.\\n\\n\\\\-- a user\", \"author_fullname\": \"t2_tv4zpyx\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Thank you\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1agtlvi\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.96, \"ignore_reports\": false, \"ups\": 25, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Other\", \"can_mod_post\": true, \"score\": 25, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1706843046.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks for writing this software. It is a blessing to have high quality software like this, a responsive developer who actively takes PRs and addresses bugs, and proactively develops for the user in mind.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI had no issues getting set up, the software works perfectly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EJust wanted to say, it\\u0026#39;s really impressive and I appreciate it.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E-- a user\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"2ec18294-ff88-11ec-86dc-a6af9aee7df9\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#edeff1\", \"id\": \"1agtlvi\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"billgytes\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1agtlvi/thank_you/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1agtlvi/thank_you/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1706843046.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"hey! i'm trying to use sunshins, but it keeps saying i have gamestream enabled?\", \"author_fullname\": \"t2_it1fwgkn\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"gamestream enabled?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19f3nqb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1706166811.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehey! i\\u0026#39;m trying to use sunshins, but it keeps saying i have gamestream enabled?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19f3nqb\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"myraisbeautiful\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19f3nqb/gamestream_enabled/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1706166811.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi all, I played games remotely with a friend by sunshine several days ago. Now he can take direct control of my computer without my permission, which is very unsafe for me. Can I delete a paired device? I can't find where to do it.\", \"author_fullname\": \"t2_9jg2qneq3\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to remove a paired device\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19b4bsw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705728355.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi all, I played games remotely with a friend by sunshine several days ago. Now he can take direct control of my computer without my permission, which is very unsafe for me. Can I delete a paired device? I can\\u0026#39;t find where to do it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19b4bsw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Commercial-Click-652\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19b4bsw/how_to_remove_a_paired_device/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1705728355.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have recently upgraded my phone from Asus ROG Phone 3 to Asus ROG Phones 6. The Sunshine + Moonlight used to work flawlessly on ROG 3. With the exact same setup and settings stream works terrible on ROG 6. Video is delayed couple of seconds than it suddenly speeds up and slows down again. Controls are unresponsive. Steam link doesn't seem to have any problems but I prefer Moonlight because of gyro support. Any tips?\", \"author_fullname\": \"t2_7wr39euq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine + Moonlight unplayable after phone upgrade.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_19ah3zp\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705664118.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have recently upgraded my phone from Asus ROG Phone 3 to Asus ROG Phones 6. The Sunshine + Moonlight used to work flawlessly on ROG 3. With the exact same setup and settings stream works terrible on ROG 6. Video is delayed couple of seconds than it suddenly speeds up and slows down again. Controls are unresponsive. Steam link doesn\\u0026#39;t seem to have any problems but I prefer Moonlight because of gyro support. Any tips?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"19ah3zp\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"1986_Summer_Fire\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/19ah3zp/sunshine_moonlight_unplayable_after_phone_upgrade/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/19ah3zp/sunshine_moonlight_unplayable_after_phone_upgrade/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1705664118.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"i meant from my amd pc to my laptop\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_a0crgczl\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"can i use sunshine to stresm games from my laptop to my amd pc\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_198c1zw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1705434656.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei meant from my amd pc to my laptop\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"198c1zw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"RightGuide1611\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/198c1zw/can_i_use_sunshine_to_stresm_games_from_my_laptop/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1705434656.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, I'm encountering a low fps issue (10-20 fps) and I have a message telling me that the host \\\"can't decode hevc\\\" in my Moonlight client, which is obviously not the case. I tried an idea from Reddit, but it does not work (switching from ultra low latency to low latency). Did someone know how to proceed ?\\n\\nThanks in advance\", \"author_fullname\": \"t2_egw3bzoi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Low FPS AMD GPU\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_191h8vd\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704705724.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I\\u0026#39;m encountering a low fps issue (10-20 fps) and I have a message telling me that the host \\u0026quot;can\\u0026#39;t decode hevc\\u0026quot; in my Moonlight client, which is obviously not the case. I tried an idea from Reddit, but it does not work (switching from ultra low latency to low latency). Did someone know how to proceed ?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"191h8vd\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"RAPHCVR\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/191h8vd/low_fps_amd_gpu/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/191h8vd/low_fps_amd_gpu/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1704705724.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Just installed shinshine via macports followed [this](https://downthecrop.xyz/blog/how-to-install-sunshine-on-macos/) guide\\n\\nWhen I start Sunshine:\\n\\n tomi@Tomis-MacBook-Pro ~ % Sunshine\\n [2024:01:06:15:06:28]: Info: Sunshine version: 0.21.0\\n [2024:01:06:15:06:28]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n [2024:01:06:15:06:28]: Info: Trying encoder [videotoolbox]\\n [2024:01:06:15:06:28]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:28]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:28]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:28]: Warning: [h264_videotoolbox @ 0x7f9112c29580] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmax option. Value ignored.\\n 2024-01-06 15:06:29.246 Sunshine[6335:55060] max_dpb_size: 4 number_long_term_ref: 2 number_short_term_ref: 1\\n 2024-01-06 15:06:29.248 Sunshine[6335:55060] frame 0: key frame requested\\n 2024-01-06 15:06:29.268 Sunshine[6335:55060] frame 1: key frame requested\\n 2024-01-06 15:06:29.282 Sunshine[6335:55060] frame 2: key frame requested\\n 2024-01-06 15:06:29.295 Sunshine[6335:55060] frame 3: key frame requested\\n 2024-01-06 15:06:29.303 Sunshine[6335:55060] frame 4: key frame requested\\n [2024:01:06:15:06:29]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:29]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:29]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:30]: Warning: [hevc_videotoolbox @ 0x7f9112e55e80] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmax option. Value ignored.\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Error: Couldn't open [av1_videotoolbox]\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n [2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Error: Couldn't open [av1_videotoolbox]\\n [2024:01:06:15:06:31]: Info: SDR color coding [Rec. 709]\\n [2024:01:06:15:06:31]: Info: Color depth: 10-bit\\n [2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n [2024:01:06:15:06:31]: Warning: [hevc_videotoolbox @ 0x7f9113a38500] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the AllowOpenGop option. Value ignored.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmin option. Value ignored.\\n [2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmax option. Value ignored.\\n\\nand it halts for while until I manually close the tab, my browser cannot open the local host as well.\\n\\nI have a intel i5-8279u 13 inch four thunderbolt mbp from 2019, I bet it is supported.\\n\\nAny help will be appiciated! \", \"author_fullname\": \"t2_77yd9w74\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine on MacOS: localhost refused to connect\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1900v2o\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704550485.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed shinshine via macports followed \\u003Ca href=\\\"https://downthecrop.xyz/blog/how-to-install-sunshine-on-macos/\\\"\\u003Ethis\\u003C/a\\u003E guide\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I start Sunshine:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Etomi@Tomis-MacBook-Pro ~ % Sunshine\\n[2024:01:06:15:06:28]: Info: Sunshine version: 0.21.0\\n[2024:01:06:15:06:28]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n[2024:01:06:15:06:28]: Info: Trying encoder [videotoolbox]\\n[2024:01:06:15:06:28]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:28]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:28]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:28]: Warning: [h264_videotoolbox @ 0x7f9112c29580] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:28]: Info: [h264_videotoolbox @ 0x7f9112c29580] This device does not support the qmax option. Value ignored.\\n2024-01-06 15:06:29.246 Sunshine[6335:55060] max_dpb_size: 4 number_long_term_ref: 2 number_short_term_ref: 1\\n2024-01-06 15:06:29.248 Sunshine[6335:55060] frame 0: key frame requested\\n2024-01-06 15:06:29.268 Sunshine[6335:55060] frame 1: key frame requested\\n2024-01-06 15:06:29.282 Sunshine[6335:55060] frame 2: key frame requested\\n2024-01-06 15:06:29.295 Sunshine[6335:55060] frame 3: key frame requested\\n2024-01-06 15:06:29.303 Sunshine[6335:55060] frame 4: key frame requested\\n[2024:01:06:15:06:29]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:29]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:29]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:30]: Warning: [hevc_videotoolbox @ 0x7f9112e55e80] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:30]: Info: [hevc_videotoolbox @ 0x7f9112e55e80] This device does not support the qmax option. Value ignored.\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Error: Couldn\\u0026#39;t open [av1_videotoolbox]\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 601]\\n[2024:01:06:15:06:31]: Info: Color depth: 8-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Error: Couldn\\u0026#39;t open [av1_videotoolbox]\\n[2024:01:06:15:06:31]: Info: SDR color coding [Rec. 709]\\n[2024:01:06:15:06:31]: Info: Color depth: 10-bit\\n[2024:01:06:15:06:31]: Info: Color range: [JPEG]\\n[2024:01:06:15:06:31]: Warning: [hevc_videotoolbox @ 0x7f9113a38500] PrioritizeEncodingSpeedOverQuality property is not supported on this device. Ignoring.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the AllowOpenGop option. Value ignored.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmin option. Value ignored.\\n[2024:01:06:15:06:31]: Info: [hevc_videotoolbox @ 0x7f9113a38500] This device does not support the qmax option. Value ignored.\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003Eand it halts for while until I manually close the tab, my browser cannot open the local host as well.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have a intel i5-8279u 13 inch four thunderbolt mbp from 2019, I bet it is supported.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help will be appiciated! \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1900v2o\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Ok-Internal9317\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1900v2o/sunshine_on_macos_localhost_refused_to_connect/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1704550485.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"As the title says, sunshine(AppImage version) is simply refusing to work on my Void+ SwayWM setup. The machine is intel+Nvidia Hybrid GPU.\\nI set up udev rules and setcap before running sunshine. \\nIt works well on my other linux distros set up on the same machine, such as Linux Mint, Void Linux XFCE etc.\\n\\n\\nThe problem is \\\"Fatal: No working encoder found\\\" error message is blocking me from using sunshine. But OBS and handbrake is working fine. I have no clue what is missing there.\\n\\nIs this because of wayland sway compositor or am I missing some environment variables or something? \\n\\n(I can provide other info as needed) \\n\\nProcedure of non working Void+Sway setup. \\n1) installed the distro and updated the software. \\n2) Installed nvidia, elogind, dbus, Network Manager, polkitd (+mate-polkit), seatd, intel-media-driver, sway. etc. \\n\\n3) setup the sway as needed and. \\n\\n4) boom sunshine on sway just not working. \", \"author_fullname\": \"t2_u49xfx1r\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Help! Sun Shine on Sway (Not working)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18yb5hj\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1704368713.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1704368384.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs the title says, sunshine(AppImage version) is simply refusing to work on my Void+ SwayWM setup. The machine is intel+Nvidia Hybrid GPU.\\nI set up udev rules and setcap before running sunshine.\\u003Cbr/\\u003E\\nIt works well on my other linux distros set up on the same machine, such as Linux Mint, Void Linux XFCE etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe problem is \\u0026quot;Fatal: No working encoder found\\u0026quot; error message is blocking me from using sunshine. But OBS and handbrake is working fine. I have no clue what is missing there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this because of wayland sway compositor or am I missing some environment variables or something? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(I can provide other info as needed) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EProcedure of non working Void+Sway setup.\\u003Cbr/\\u003E\\n1) installed the distro and updated the software.\\u003Cbr/\\u003E\\n2) Installed nvidia, elogind, dbus, Network Manager, polkitd (+mate-polkit), seatd, intel-media-driver, sway. etc. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3) setup the sway as needed and. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E4) boom sunshine on sway just not working. \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18yb5hj\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"myothk\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18yb5hj/help_sun_shine_on_sway_not_working/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1704368384.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi team,\\n\\nI believe I followed the install for the MacOS Portfile correctly and Moonlight got me access to my MacOSSunshine service, Everything seems normal except when I try and click anything or right-click anything, the click actions aren't going through. As I type this I wanted to also try if the keyboard input is working but also no luck. \\n\\n\\u0026#x200B;\\n\\nI'm using Moonlight on my iPad Air 5th Gen and using the Magic keyboard for mouse and keyboard input. I set up my PC in the same way and works perfectly. Inputs all work. Is this a known issue? \", \"author_fullname\": \"t2_7xuyyjoi\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moonlight on MacOS - Can't submit mouse input ( click or right click )\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18tumrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703876670.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi team,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI believe I followed the install for the MacOS Portfile correctly and Moonlight got me access to my MacOSSunshine service, Everything seems normal except when I try and click anything or right-click anything, the click actions aren\\u0026#39;t going through. As I type this I wanted to also try if the keyboard input is working but also no luck. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m using Moonlight on my iPad Air 5th Gen and using the Magic keyboard for mouse and keyboard input. I set up my PC in the same way and works perfectly. Inputs all work. Is this a known issue? \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18tumrw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"AlphabeticalMistery\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18tumrw/moonlight_on_macos_cant_submit_mouse_input_click/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1703876670.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I've noticed that my graphics card (RTX 3080) consumes too much power when streaming. I stream in 1080p/60fps with the default Sunshine settings. Of course, before someone mentions that only the VID-encoding chip is active and the graphics card is not otherwise stressed, that's not the case in this situation. I have a GPU power draw of almost 100W (with nothing else running in the background).\\n\\nThe graphics card has a core load of 32% and boosts consistently to 1800MHz in my case. It also gets appropriately warm and stops at 60 degrees when the fans kick in. I had the same issue some time ago and was able to fix it by interrupting and restarting the stream several times. After the restarts, the GPU core jumped back to idle (210MHz) and consumed less than 40 watts (GPU power draw). But unfortunately, that doesn't help anymore.\\n\\nCan anyone confirm this behavior? I'm using the latest Sunshine/Moonlight windows version and the latest Nvidia driver.\\n\\nThe issue seems to have already been reported in the Sunshine GitRepo: [https://github.com/LizardByte/Sunshine/issues/1908](https://github.com/LizardByte/Sunshine/issues/1908).\\n\\nQuote:\\n\\n*\\\"The GPU Sunshine is running on fails to downclock sufficiently while a client is connected to the stream. It becomes energy inefficient, and causes much more heat and power usage than necessary. This is even when GPU usage (including VID usage) by the stream is extremely low so low clocks would be able to perform just fine. You can't just relax and leave the stream on in the background because of the reasons I mentioned, plus the fan staying on at a high setting as a consequence.*\\n\\n*I am not 100% sure what causes it, but I hypothesize it's related to the feature implemented by* [*#1308*](https://github.com/LizardByte/Sunshine/pull/1308)*. The pull request noted that this feature intentionally keeps the clocks high. While it's understandable that some users prefer this feature because of the claimed latency improvements, others prefer for the GPU to be able to downclock as much as possible.*\\n\\n***I fail to see any option to toggle it on/off. It should be made an option. And given these issues, it probably shouldn't be the default.****\\\"* \\n\\n\\n... is there a way to deactivate the functions mentioned in #1308?\", \"author_fullname\": \"t2_77k54e2b\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GPU Power Draw to high when streaming (Moonlight+Sunshine)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18tocp4\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703860158.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;ve noticed that my graphics card (RTX 3080) consumes too much power when streaming. I stream in 1080p/60fps with the default Sunshine settings. Of course, before someone mentions that only the VID-encoding chip is active and the graphics card is not otherwise stressed, that\\u0026#39;s not the case in this situation. I have a GPU power draw of almost 100W (with nothing else running in the background).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe graphics card has a core load of 32% and boosts consistently to 1800MHz in my case. It also gets appropriately warm and stops at 60 degrees when the fans kick in. I had the same issue some time ago and was able to fix it by interrupting and restarting the stream several times. After the restarts, the GPU core jumped back to idle (210MHz) and consumed less than 40 watts (GPU power draw). But unfortunately, that doesn\\u0026#39;t help anymore.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECan anyone confirm this behavior? I\\u0026#39;m using the latest Sunshine/Moonlight windows version and the latest Nvidia driver.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe issue seems to have already been reported in the Sunshine GitRepo: \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/issues/1908\\\"\\u003Ehttps://github.com/LizardByte/Sunshine/issues/1908\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EQuote:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;The GPU Sunshine is running on fails to downclock sufficiently while a client is connected to the stream. It becomes energy inefficient, and causes much more heat and power usage than necessary. This is even when GPU usage (including VID usage) by the stream is extremely low so low clocks would be able to perform just fine. You can\\u0026#39;t just relax and leave the stream on in the background because of the reasons I mentioned, plus the fan staying on at a high setting as a consequence.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EI am not 100% sure what causes it, but I hypothesize it\\u0026#39;s related to the feature implemented by\\u003C/em\\u003E \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/pull/1308\\\"\\u003E\\u003Cem\\u003E#1308\\u003C/em\\u003E\\u003C/a\\u003E\\u003Cem\\u003E. The pull request noted that this feature intentionally keeps the clocks high. While it\\u0026#39;s understandable that some users prefer this feature because of the claimed latency improvements, others prefer for the GPU to be able to downclock as much as possible.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cstrong\\u003E\\u003Cem\\u003EI fail to see any option to toggle it on/off. It should be made an option. And given these issues, it probably shouldn\\u0026#39;t be the default.\\u003C/em\\u003E\\u003C/strong\\u003E\\u003Cem\\u003E\\u0026quot;\\u003C/em\\u003E \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E... is there a way to deactivate the functions mentioned in #1308?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?auto=webp\\u0026s=344ae4df64a5701e3ec4aea1d8b5e2a6de1d31d1\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=776625694570c0468bed09251a4a5ab28f5cf758\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f169b2355bad7116ad9082442bc952f60cfb829a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=eb7c9f4a587c9593c6c213432dc33cf28722ff8d\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=1275b906211ca188936efe2c1febd977a893f7e5\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=301c87da2ac055a0c4608541f5e3a44637f42213\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/fQtwJRQ59AVRs7s-Dr3WOaXudMge0DSFG-QiEsQJVes.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=e5d342185b050fcd59e4b1405cf4c8554a1d7791\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"5osUvKp0AHlk5N7TSoKJjLfNJ6qpJlq50vMa-DP5BLE\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18tocp4\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"One-Stress-6734\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18tocp4/gpu_power_draw_to_high_when_streaming/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1703860158.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Just discovered sunshine and been trying it out on Windows, Mac and Linux. Each one having major issues. Debian bookworm has been the most usable platform so far, even though it complains that it's not actually working saying fatel error and can't find nvenc. \\nAnyway, this post is about Windows . I've installed it on Windows 10, both a physical machine and a hyperv machine with a partitioned nvidia 1070. On both windows machines, the first time I set it up it allows me to connect to the desktop the first time, but after that it only connects briefly with a black screen and then says the ports on the firewall aren't open (moonlight client) , I've run the moonlight client on multiple platforms with the same result. It works the first time (on the first install of the server not after switching clients) , but then will not stream the desktop anymore. The client does actually succesfully connect as sunshine lets me know. I can however launch steam if it's installed and then exit to the desktop, but #1 I don't want steam on all my devices, and #2 too many extra steps. Any idea's ?\\n\\n \\n\", \"author_fullname\": \"t2_5ge0qxza\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Desktop cannot reconnect after fist connection.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18q8v56\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1703468823.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust discovered sunshine and been trying it out on Windows, Mac and Linux. Each one having major issues. Debian bookworm has been the most usable platform so far, even though it complains that it\\u0026#39;s not actually working saying fatel error and can\\u0026#39;t find nvenc.\\u003Cbr/\\u003E\\nAnyway, this post is about Windows . I\\u0026#39;ve installed it on Windows 10, both a physical machine and a hyperv machine with a partitioned nvidia 1070. On both windows machines, the first time I set it up it allows me to connect to the desktop the first time, but after that it only connects briefly with a black screen and then says the ports on the firewall aren\\u0026#39;t open (moonlight client) , I\\u0026#39;ve run the moonlight client on multiple platforms with the same result. It works the first time (on the first install of the server not after switching clients) , but then will not stream the desktop anymore. The client does actually succesfully connect as sunshine lets me know. I can however launch steam if it\\u0026#39;s installed and then exit to the desktop, but #1 I don\\u0026#39;t want steam on all my devices, and #2 too many extra steps. Any idea\\u0026#39;s ?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18q8v56\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"opUserZero\", \"discussion_type\": null, \"num_comments\": 4, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18q8v56/desktop_cannot_reconnect_after_fist_connection/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1703468823.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1702595067, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi, I need some help with sending a magic packet over the internet. I\\u2019m able to successfully send magic packet locally. I\\u2019m using noip linked to a static dhcp ip and can send magic packets locally with no issues but once on a cellular signal it stops working.\\n\\nSetup: \\nWolow iOS: [https://wolow.site/ios?modalRef=wolowTutorial#about](https://wolow.site/ios?modalRef=wolowTutorial#about) \\nNoip (hostname linked to dhcp ip/static ip): [https://www.noip.com](https://www.noip.com/) \\ndhcp static ip google nest pro wifi: [https://support.google.com/googlenest/answer/6274660?hl=en](https://support.google.com/googlenest/answer/6274660?hl=en) \\nport: 7,9, random unused port (all tested locally working) \\nMac address: target pc \\nZero tier vpn: not sure if any interference is being cause but this is working to connect to the network off local when the PC is running not facing issues.\\ud83d\\udcf7 \\n\", \"author_fullname\": \"t2_wx50x\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Need help WOL over the internet (WAN)\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18ihw99\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702585838.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi, I need some help with sending a magic packet over the internet. I\\u2019m able to successfully send magic packet locally. I\\u2019m using noip linked to a static dhcp ip and can send magic packets locally with no issues but once on a cellular signal it stops working.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESetup:\\u003Cbr/\\u003E\\nWolow iOS: \\u003Ca href=\\\"https://wolow.site/ios?modalRef=wolowTutorial#about\\\"\\u003Ehttps://wolow.site/ios?modalRef=wolowTutorial#about\\u003C/a\\u003E\\u003Cbr/\\u003E\\nNoip (hostname linked to dhcp ip/static ip): \\u003Ca href=\\\"https://www.noip.com/\\\"\\u003Ehttps://www.noip.com\\u003C/a\\u003E\\u003Cbr/\\u003E\\ndhcp static ip google nest pro wifi: \\u003Ca href=\\\"https://support.google.com/googlenest/answer/6274660?hl=en\\\"\\u003Ehttps://support.google.com/googlenest/answer/6274660?hl=en\\u003C/a\\u003E\\u003Cbr/\\u003E\\nport: 7,9, random unused port (all tested locally working)\\u003Cbr/\\u003E\\nMac address: target pc\\u003Cbr/\\u003E\\nZero tier vpn: not sure if any interference is being cause but this is working to connect to the network off local when the PC is running not facing issues.\\ud83d\\udcf7 \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?auto=webp\\u0026s=471d3d093e660681f99a7f89c684cecf6fc184e2\", \"width\": 1200, \"height\": 627}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=c02a256b5dfcbd0654ef11ae79e4e8489e20b904\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=53781340cc0bf1dfa4e1d80542a5307188315494\", \"width\": 216, \"height\": 112}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=2cb7f3b2793c5982717ada16b75c85c205619be4\", \"width\": 320, \"height\": 167}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=37ef925b2ab859d72382d49a32189876bd407dce\", \"width\": 640, \"height\": 334}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=49d429d5cdbdec8840f5c51097c09554c3338791\", \"width\": 960, \"height\": 501}, {\"url\": \"https://external-preview.redd.it/lYI3-IDrRH9JrI3QbBNGKQvmPQzkwroHLv2ll39klYc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=0370fa848d997983f297a19a6bb3b1f7e05c349c\", \"width\": 1080, \"height\": 564}], \"variants\": {}, \"id\": \"-xdFmez__sgk0ksKiWGT1EdpQPwDKpBy1_G7-ZM5tsQ\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18ihw99\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"eastcoastninja\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18ihw99/need_help_wol_over_the_internet_wan/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1702585838.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi everyone!\\n\\nI recently moved to a new place and tried setting up Sunshine to stream to my NVidia shield. Previously, I had no issues doing so, and have tried so many things today to try and get passed these errors, but am coming up empty. I'm able to connect to the web configuration. I've tried forwarding ports, checking firewalls, etc.\\n\\nAny help or advice on next steps would be greatly appreciated. Please see below for the errors in question.\\n\\nThanks in advance!\\n\\n\\u0026#x200B;\\n\\nEdit\\\\*\\\\* Post title should read \\\"Sunshine launching Errors\\\".\\n\\nhttps://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026format=png\\u0026auto=webp\\u0026s=4e916ae8bc5f5258167d0abd66d49b438f321f91\", \"author_fullname\": \"t2_efkzm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine install: Errors!\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 39, \"top_awarded_type\": null, \"hide_score\": false, \"media_metadata\": {\"vsh3s1j5hq5c1\": {\"status\": \"valid\", \"e\": \"Image\", \"m\": \"image/png\", \"p\": [{\"y\": 30, \"x\": 108, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=db2f9ddc245319cc2a802fe2ca44e79415283281\"}, {\"y\": 61, \"x\": 216, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=ef144719f99d4d269a7d9bbc878f325dc8791a13\"}, {\"y\": 90, \"x\": 320, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=c4c66cedc9ca8eb5e8a21a993d3df88e8dac90d1\"}, {\"y\": 181, \"x\": 640, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=36bb762ab8571220a0065d699caac99b873754aa\"}], \"s\": {\"y\": 202, \"x\": 711, \"u\": \"https://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026format=png\\u0026auto=webp\\u0026s=4e916ae8bc5f5258167d0abd66d49b438f321f91\"}, \"id\": \"vsh3s1j5hq5c1\"}}, \"name\": \"t3_18g4s64\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/joKc3I_SfwDu4VmPlXWBJXkN0m537lf4UJ6dYwfzZnQ.jpg\", \"edited\": 1702331280.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702330160.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi everyone!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI recently moved to a new place and tried setting up Sunshine to stream to my NVidia shield. Previously, I had no issues doing so, and have tried so many things today to try and get passed these errors, but am coming up empty. I\\u0026#39;m able to connect to the web configuration. I\\u0026#39;ve tried forwarding ports, checking firewalls, etc.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny help or advice on next steps would be greatly appreciated. Please see below for the errors in question.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks in advance!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit** Post title should read \\u0026quot;Sunshine launching Errors\\u0026quot;.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=4e916ae8bc5f5258167d0abd66d49b438f321f91\\\"\\u003Ehttps://preview.redd.it/vsh3s1j5hq5c1.png?width=711\\u0026amp;format=png\\u0026amp;auto=webp\\u0026amp;s=4e916ae8bc5f5258167d0abd66d49b438f321f91\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18g4s64\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Gozzylord\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18g4s64/sunshine_install_errors/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1702330160.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Trying to setup Sunshine + Moonlight to connect my Pixel 8 Pro to my gaming PC (RTX 3090 Ti) but when I open \\\\`Desktop\\\\` or \\\\`Steam\\\\` it flashes a black screen and puts me back to the game selection. When I pick it, I have an option to resume session but the same thing happens over and over. Steam does open on my desktop and I get a small notification that the stream has started. I've verified ports are open and working, manually set audio sink and virtual audio devices, as well as forcing 1080p/120fps.\\n\\nThe logs reference that the GPU doesnt support NvEnc, which is odd?\\n\\n\\u0026#x200B;\\n\\nHere's the Sunshine log:\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Opened undo file from previous improper termination\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Restored OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT for base profile\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Restored global profile settings from undo file - deleting the file\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: No need to modify application profile settings\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: nvprefs: Changed OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT to OGL\\\\_CPL\\\\_PREFER\\\\_DXPRESENT\\\\_PREFER\\\\_ENABLED for base profile\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Sunshine version: 0.21.0\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Compiling shaders...\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: System tray created\\n\\n\\\\[2023:12:09:10:01:49\\\\]: Info: Compiled shaders\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Trying encoder \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: ddprobe.exe \\\\[1\\\\] \\\\[\\\\\\\\\\\\\\\\.\\\\\\\\DISPLAY1\\\\] returned: 0x00000000\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Set GPU preference: 1\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:50\\\\]: Info: NvEnc: created encoder P1 two-pass rfi\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: NvEnc: created encoder P1 two-pass rfi\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:51\\\\]: Error: NvEnc: encoding format is not supported by the gpu\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: SDR color coding \\\\[Rec. 601\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color depth: 8-bit\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Error: NvEnc: encoding format is not supported by the gpu\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nDevice Description : NVIDIA GeForce RTX 3090 Ti\\n\\nDevice Vendor ID : 0x000010DE\\n\\nDevice Device ID : 0x00002203\\n\\nDevice Video Mem : 22797 MiB\\n\\nDevice Sys Mem : 0 MiB\\n\\nShare Sys Mem : 16254 MiB\\n\\nFeature Level : 0x0000B100\\n\\nCapture size : 3440x1440\\n\\nOffset : 0x0\\n\\nVirtual Desktop : 3440x1440\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Active GPU has HAGS enabled\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Using realtime GPU priority\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop resolution \\\\[3440x1440\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Desktop format \\\\[DXGI\\\\_FORMAT\\\\_R16G16B16A16\\\\_FLOAT\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Display refresh rate \\\\[239.989Hz\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Requested frame rate \\\\[60fps\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\nColorspace : DXGI\\\\_COLOR\\\\_SPACE\\\\_RGB\\\\_FULL\\\\_G2084\\\\_NONE\\\\_P2020\\n\\nBits Per Color : 10\\n\\nRed Primary : \\\\[0.675784,0.323243\\\\]\\n\\nGreen Primary : \\\\[0.255857,0.684575\\\\]\\n\\nBlue Primary : \\\\[0.146485,0.0546865\\\\]\\n\\nWhite Point : \\\\[0.291993,0.300777\\\\]\\n\\nMin Luminance : 0.01 nits\\n\\nMax Luminance : 530 nits\\n\\nMax Full Luminance : 530 nits\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: HDR color coding \\\\[Rec. 2020 + SMPTE 2084 PQ\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color depth: 10-bit\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Color range: \\\\[JPEG\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: NvEnc: created encoder P1 10-bit two-pass rfi\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: // Ignore any errors mentioned above, they are not relevant. //\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: \\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Found H.264 encoder: h264\\\\_nvenc \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Found HEVC encoder: hevc\\\\_nvenc \\\\[nvenc\\\\]\\n\\n\\\\[2023:12:09:10:01:52\\\\]: Info: Configuration UI available at \\\\[[https://localhost:47990](https://localhost:47990)\\\\]\\n\\n\\\\[2023:12:09:10:01:53\\\\]: Info: Registered Sunshine mDNS service\\n\\n\\\\[2023:12:09:10:01:56\\\\]: Info: Completed UPnP port mappings to [192.168.2.112](https://192.168.2.112) via [http://192.168.2.1:43797/rootDesc.xml](http://192.168.2.1:43797/rootDesc.xml)\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_l4mf5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't Get Pixel 8 Pro to Open a Stream\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18effo6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702134303.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrying to setup Sunshine + Moonlight to connect my Pixel 8 Pro to my gaming PC (RTX 3090 Ti) but when I open `Desktop` or `Steam` it flashes a black screen and puts me back to the game selection. When I pick it, I have an option to resume session but the same thing happens over and over. Steam does open on my desktop and I get a small notification that the stream has started. I\\u0026#39;ve verified ports are open and working, manually set audio sink and virtual audio devices, as well as forcing 1080p/120fps.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe logs reference that the GPU doesnt support NvEnc, which is odd?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHere\\u0026#39;s the Sunshine log:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Opened undo file from previous improper termination\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Restored OGL_CPL_PREFER_DXPRESENT for base profile\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Restored global profile settings from undo file - deleting the file\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: No need to modify application profile settings\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: nvprefs: Changed OGL_CPL_PREFER_DXPRESENT to OGL_CPL_PREFER_DXPRESENT_PREFER_ENABLED for base profile\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Sunshine version: 0.21.0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Compiling shaders...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: System tray created\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:49]: Info: Compiled shaders\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: // Testing for available encoders, this may generate errors. You can safely ignore those errors. //\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Trying encoder [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: ddprobe.exe [1] [\\\\\\\\.\\\\DISPLAY1] returned: 0x00000000\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Set GPU preference: 1\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:50]: Info: NvEnc: created encoder P1 two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: NvEnc: created encoder P1 two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:51]: Error: NvEnc: encoding format is not supported by the gpu\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: SDR color coding [Rec. 601]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color depth: 8-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Error: NvEnc: encoding format is not supported by the gpu\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Description : NVIDIA GeForce RTX 3090 Ti\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Vendor ID : 0x000010DE\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Device ID : 0x00002203\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Video Mem : 22797 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDevice Sys Mem : 0 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EShare Sys Mem : 16254 MiB\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFeature Level : 0x0000B100\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECapture size : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOffset : 0x0\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EVirtual Desktop : 3440x1440\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Active GPU has HAGS enabled\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Using realtime GPU priority\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop resolution [3440x1440]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Desktop format [DXGI_FORMAT_R16G16B16A16_FLOAT]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Display refresh rate [239.989Hz]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Requested frame rate [60fps]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EColorspace : DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBits Per Color : 10\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ERed Primary : [0.675784,0.323243]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGreen Primary : [0.255857,0.684575]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBlue Primary : [0.146485,0.0546865]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhite Point : [0.291993,0.300777]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMin Luminance : 0.01 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMax Full Luminance : 530 nits\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: HDR color coding [Rec. 2020 + SMPTE 2084 PQ]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color depth: 10-bit\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Color range: [JPEG]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: NvEnc: created encoder P1 10-bit two-pass rfi\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: // Ignore any errors mentioned above, they are not relevant. //\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Found H.264 encoder: h264_nvenc [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Found HEVC encoder: hevc_nvenc [nvenc]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:52]: Info: Configuration UI available at [\\u003Ca href=\\\"https://localhost:47990\\\"\\u003Ehttps://localhost:47990\\u003C/a\\u003E]\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:53]: Info: Registered Sunshine mDNS service\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E[2023:12:09:10:01:56]: Info: Completed UPnP port mappings to \\u003Ca href=\\\"https://192.168.2.112\\\"\\u003E192.168.2.112\\u003C/a\\u003E via \\u003Ca href=\\\"http://192.168.2.1:43797/rootDesc.xml\\\"\\u003Ehttp://192.168.2.1:43797/rootDesc.xml\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18effo6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Kolmain\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18effo6/cant_get_pixel_8_pro_to_open_a_stream/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18effo6/cant_get_pixel_8_pro_to_open_a_stream/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1702134303.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_arlmwuod\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Looking for a guide to setup Retroarcher on Plex\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_18dtoay\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1702061407.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"18dtoay\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Illustrious_Ad_3847\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/18dtoay/looking_for_a_guide_to_setup_retroarcher_on_plex/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1702061407.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"i want to stream local coop games or play on emulators with my friend on xbox\\n\\nsadly both zerotier \\u0026 Tailscale require an app to be connected in the same vpn network\\n\\nwe don't know how to do it in xbox if there is another way to use them other than the app,\\n\\nalso i enabled UPnp in sunshine didn't work so i used the moonlight test and showed that there is closed ports even tho sunshine should open them auto i am kinda confused here also it showed that UPnp might be closed in the router so i went in there and there is a tab for it but it's blank just shows the header help );\", \"author_fullname\": \"t2_4ixdm9xy\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"xbox s/s to pc outside the network\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1868tkm\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1701210456.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei want to stream local coop games or play on emulators with my friend on xbox\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esadly both zerotier \\u0026amp; Tailscale require an app to be connected in the same vpn network\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ewe don\\u0026#39;t know how to do it in xbox if there is another way to use them other than the app,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ealso i enabled UPnp in sunshine didn\\u0026#39;t work so i used the moonlight test and showed that there is closed ports even tho sunshine should open them auto i am kinda confused here also it showed that UPnp might be closed in the router so i went in there and there is a tab for it but it\\u0026#39;s blank just shows the header help );\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1868tkm\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"ziadrrr\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1868tkm/xbox_ss_to_pc_outside_the_network/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1868tkm/xbox_ss_to_pc_outside_the_network/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1701210456.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hello! I've been trying to find a QRes download that isn't from some sketchy website to configure autoswitching. \\n\\n\\nDoes anyone know of one? \\n\\n\\nI've found the Sourceforge page for it, but using the installer there throws a complaint about my OS being 64 bit . Everything else I've found has been some random website that make my computer cry with all the false download buttons. \\n\\n\\nI've also checked the Sunshine docs thinking there would be an official link there, but didn't see one. \\n\\n\\nThank you for your time!\", \"author_fullname\": \"t2_vvyn2ced\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"QRes Download 64 Bit\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1834ou9\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700866792.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello! I\\u0026#39;ve been trying to find a QRes download that isn\\u0026#39;t from some sketchy website to configure autoswitching. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDoes anyone know of one? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve found the Sourceforge page for it, but using the installer there throws a complaint about my OS being 64 bit . Everything else I\\u0026#39;ve found has been some random website that make my computer cry with all the false download buttons. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve also checked the Sunshine docs thinking there would be an official link there, but didn\\u0026#39;t see one. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThank you for your time!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1834ou9\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"luciel23\", \"discussion_type\": null, \"num_comments\": 3, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1834ou9/qres_download_64_bit/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1700866792.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm running Sunshine 0.21 as a host on a Windows 10 machine and Moonlight as a client on an iPad. While futzing with settings, I removed the Windows host from my iPad client and I'm unable to find it again on the local network.\\n\\nI tried unsinstalling and reinstalling both Sunshine on the hostmachine and doing the same for the client on the iPad but no dice. Oddly, when I boot up Moonlight on the iPad, it has no problem finding a different Windows host on the local network. I was also able to remove the other Windows 10 host and find it again whenever I reboot the Moonlight client on my iPad.\\n\\nIs there a way to make sure it's actually running once the WebUI is booted up? The other host is findable no problem which makes me suspect it's not running for some reason\\n\\nWhat am I doing wrong and how can I get it to find the previously removed host?\", \"author_fullname\": \"t2_8t9fd5is\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Can't re-add previously removed Sunshine host on IOS running Moonlight client\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_182ir2s\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1700798598.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700797424.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m running Sunshine 0.21 as a host on a Windows 10 machine and Moonlight as a client on an iPad. While futzing with settings, I removed the Windows host from my iPad client and I\\u0026#39;m unable to find it again on the local network.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI tried unsinstalling and reinstalling both Sunshine on the hostmachine and doing the same for the client on the iPad but no dice. Oddly, when I boot up Moonlight on the iPad, it has no problem finding a different Windows host on the local network. I was also able to remove the other Windows 10 host and find it again whenever I reboot the Moonlight client on my iPad.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs there a way to make sure it\\u0026#39;s actually running once the WebUI is booted up? The other host is findable no problem which makes me suspect it\\u0026#39;s not running for some reason\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhat am I doing wrong and how can I get it to find the previously removed host?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"182ir2s\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lemmingsaflame\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/182ir2s/cant_readd_previously_removed_sunshine_host_on/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/182ir2s/cant_readd_previously_removed_sunshine_host_on/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1700797424.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hi I have bought a HDMI dummy plug because otherwise sunshine was using only my internal graphics instead of Nvidia GPU on my laptop. However when I start the stream the controller doesn't work anymore. I'm using moonlight on my Asus Rog Phone 3 with a Bluetooth controller. The strange thing is it's working fine without HDMI dummy plug. Any advice?\", \"author_fullname\": \"t2_7wr39euq\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"controller stopped working after plugging HDMI dummy.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1816oqg\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1700651222.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi I have bought a HDMI dummy plug because otherwise sunshine was using only my internal graphics instead of Nvidia GPU on my laptop. However when I start the stream the controller doesn\\u0026#39;t work anymore. I\\u0026#39;m using moonlight on my Asus Rog Phone 3 with a Bluetooth controller. The strange thing is it\\u0026#39;s working fine without HDMI dummy plug. Any advice?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1816oqg\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"1986_Summer_Fire\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1816oqg/controller_stopped_working_after_plugging_hdmi/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1816oqg/controller_stopped_working_after_plugging_hdmi/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1700651222.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1702595083, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ocwtya6a8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How do I fix this? I don't know anything about how the internet works.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 42, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_180gr8k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"i.redd.it\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": true, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/9q32X6SbHw03bLLS09TuMroDxZGUmJbbRH1GKzA7Hlw.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"image\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1700572630.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://i.redd.it/975zxc8dbp1c1.png\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?auto=webp\\u0026s=9ac5583c8ba1d2ad53b753de2409b5921d829d6c\", \"width\": 844, \"height\": 255}, \"resolutions\": [{\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=bd17ad0d789e4c8ad078b7088c8e9e82d8458b5b\", \"width\": 108, \"height\": 32}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=0b2390de50a7981cbedc7117a38b117b7a198240\", \"width\": 216, \"height\": 65}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=e0f38f887e1ba78e7f1404cc14a0b0044af0d6f0\", \"width\": 320, \"height\": 96}, {\"url\": \"https://preview.redd.it/975zxc8dbp1c1.png?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=cad96585484e8d70679c81708f71405e6b2b7b27\", \"width\": 640, \"height\": 193}], \"variants\": {}, \"id\": \"PcddJ3MIazWjSqKg6hK75DerEEu_DvKic-H_5CQ-Vjw\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"180gr8k\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Cool-Construction513\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/180gr8k/how_do_i_fix_this_i_dont_know_anything_about_how/\", \"stickied\": false, \"url\": \"https://i.redd.it/975zxc8dbp1c1.png\", \"subreddit_subscribers\": 1087, \"created_utc\": 1700572630.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm switching off of Geforce Experience and just downloaded the [latest 0.21.0 windows installer](https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0). When I run it, Windows 11 doesn't want to install it because it isn't digitally signed and says it's from an unknown publisher.\\n\\nIs this expected? I haven't found any open or closed issues about this on the github page, which I would expect for a popular project with unsigned binaries.\\n\\nI downloaded the ` sunshine-windows-installer.exe ` installer.\", \"author_fullname\": \"t2_4108e\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Installing Sunshine for the first time, getting an \\\"Unknown Publisher\\\" error in Windows. Is this expected?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_17sui0y\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"domain\": \"self.LizardByte\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1699709691.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m switching off of Geforce Experience and just downloaded the \\u003Ca href=\\\"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\\\"\\u003Elatest 0.21.0 windows installer\\u003C/a\\u003E. When I run it, Windows 11 doesn\\u0026#39;t want to install it because it isn\\u0026#39;t digitally signed and says it\\u0026#39;s from an unknown publisher.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIs this expected? I haven\\u0026#39;t found any open or closed issues about this on the github page, which I would expect for a popular project with unsigned binaries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI downloaded the \\u003Ccode\\u003Esunshine-windows-installer.exe\\u003C/code\\u003E installer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?auto=webp\\u0026s=c8a6a559171f5eb47336913c4ecc90fd8e593785\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=d4824413dd63f938fede56ce12f5ef59207d2710\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=f87a3faf8a5fde2cb6cc35308df00737ffd2d91b\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=0bdeeac6d253c7e2a52552adb2e4f02e3eadc1c8\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=b4f88059a89ee14efbae3e15453505e8cdee7603\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=cc41ad63f2998eb59bd27fbcdb6d0c3f28255992\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/U5bRdHlfkcc_5Vq9VvRtVIub2G1IuF6NJo572D_ELGs.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d443a082794cdc59f787a648eaac157f66af3b23\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"7DLpflJI_W7z4OQ94bxPd7l8DtzKLM707qRZLXoLvU8\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"17sui0y\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"wonderbreadofsin\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/17sui0y/installing_sunshine_for_the_first_time_getting_an/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1699709691.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" \\n\\nERROR (networking:197) - Error opening URL '[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)'\\n\\n2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\\", line 1293, in get\\\\_resource\\\\_hashes\\n\\njson = self.\\\\_core.networking.http\\\\_request(\\\"[http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes](http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes)\\\", timeout=10).content\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 243, in content\\n\\nreturn self.\\\\_\\\\_str\\\\_\\\\_()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 221, in \\\\_\\\\_str\\\\_\\\\_\\n\\nself.load()\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\\", line 159, in load\\n\\nf = self.\\\\_opener.open(req, timeout=self.\\\\_timeout)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 435, in open\\n\\nresponse = meth(req, response)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 548, in http\\\\_response\\n\\n'http', request, response, code, msg, hdrs)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 473, in error\\n\\nreturn self.\\\\_call\\\\_chain(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 407, in \\\\_call\\\\_chain\\n\\nresult = func(\\\\*args)\\n\\nFile \\\"/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\\", line 556, in http\\\\_error\\\\_default\\n\\nraise HTTPError(req.get\\\\_full\\\\_url(), code, msg, hdrs, fp)\\n\\nHTTPError: HTTP Error 404: Not Found\\n\\n\\u0026#x200B;\\n\\n\\u0026#x200B;\\n\\ni installed Themerr-plex.bundle in \\\"/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\\"\\n\\n(plex package in synology DSM7)\\n\\neverything seems ok. i see Themerr-plex icon in settings- plugins.\\n\\nand restarted plex , rescan library , refresh metadata.\\n\\nbut still no working. theme doesn't play at all..\\n\\nabove is my log in \\\"dev.lizardbyte.themerr-plex.log\\\"\\n\\nplease help me.\", \"author_fullname\": \"t2_b0tqnmx8\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Themerr-plex not working.\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_17g053k\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1698222908.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EERROR (networking:197) - Error opening URL \\u0026#39;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2023-10-25 00:48:07,684 (7faf0c15c808) : CRITICAL (runtime:1299) - Exception getting hosted resource hashes (most recent call last):\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/runtime.py\\u0026quot;, line 1293, in get_resource_hashes\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ejson = self._core.networking.http_request(\\u0026quot;\\u003Ca href=\\\"http://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\\"\\u003Ehttp://127.0.0.1:32400/:/plugins/com.plexapp.system/resourceHashes\\u003C/a\\u003E\\u0026quot;, timeout=10).content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 243, in content\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self.__str__()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 221, in __str__\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eself.load()\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Plug-ins-1cf77d501/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/components/networking.py\\u0026quot;, line 159, in load\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ef = self._opener.open(req, timeout=self._timeout)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 435, in open\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresponse = meth(req, response)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 548, in http_response\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;http\\u0026#39;, request, response, code, msg, hdrs)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 473, in error\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ereturn self._call_chain(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 407, in _call_chain\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eresult = func(*args)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFile \\u0026quot;/volume2/@appstore/PlexMediaServer/Resources/Python/python27.zip/urllib2.py\\u0026quot;, line 556, in http_error_default\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eraise HTTPError(req.get_full_url(), code, msg, hdrs, fp)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHTTPError: HTTP Error 404: Not Found\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ei installed Themerr-plex.bundle in \\u0026quot;/PlexMediaServer/AppData/Plex Media Server/Plug-ins\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E(plex package in synology DSM7)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eeverything seems ok. i see Themerr-plex icon in settings- plugins.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eand restarted plex , rescan library , refresh metadata.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut still no working. theme doesn\\u0026#39;t play at all..\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eabove is my log in \\u0026quot;dev.lizardbyte.themerr-plex.log\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eplease help me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"17g053k\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Critical_Pick8868\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/17g053k/themerrplex_not_working/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1698222908.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I have a 4K projector with SHIELD connected to it, but no 4K monitor at my gaming PC. Is it possible to stream in 4K using Sunshine/Moonlight? In game the resolution won't go above 1440p (my monitor resolution).\", \"author_fullname\": \"t2_ihg5f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Stream 4K from non-4K system/monitor\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179agja\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697474638.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have a 4K projector with SHIELD connected to it, but no 4K monitor at my gaming PC. Is it possible to stream in 4K using Sunshine/Moonlight? In game the resolution won\\u0026#39;t go above 1440p (my monitor resolution).\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"179agja\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Grepsy\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/179agja/stream_4k_from_non4k_systemmonitor/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697474638.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Its been a while. This is the difference between me getting a server, and not. Just wondering if you could give an ETA, even if it only covers the maximum amount of time before release.\\n\\nAlso would like to take the time to suggest releasing a stable build during the wait, that just covers Plex, and windows (considering one is free, and the other can be cloned for free, or bought for $20 on eBay) \\n\\nAlso, if you are going to rewrite it, I hope it emphasizes features alongside ease of use.\", \"author_fullname\": \"t2_7i0m45p7\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Retroarcher update?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179a2t6\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 6, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 6, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697473700.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIts been a while. This is the difference between me getting a server, and not. Just wondering if you could give an ETA, even if it only covers the maximum amount of time before release.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso would like to take the time to suggest releasing a stable build during the wait, that just covers Plex, and windows (considering one is free, and the other can be cloned for free, or bought for $20 on eBay) \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAlso, if you are going to rewrite it, I hope it emphasizes features alongside ease of use.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"179a2t6\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Appropriate-Bank6316\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/179a2t6/retroarcher_update/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697473700.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"I'm getting the following warnings when starting Sunshine:\\n\\n* Fatal: GameStream is still enabled in GeForce Experience! This \\\\*will\\\\* cause streaming problems with Sunshine!\\n* Fatal: Disable GameStream on the SHIELD tab in GeForce Experience or change the Port setting on the Advanced tab in the Sunshine Web UI.\\n\\nBut since NVIDIA deprecated Shield streaming the tab is not available anymore. I also can't find any services (in the Windows Services) that indicate NVIDIA streaming is switched on.\\n\\nAny idea on how to disable this now so I can get some Sunshine? :-)\\n\\nAs a workaround I could change the ports, but I'd prefer not to. Don't want the old GameStream stuff interfering or have to deal with non-standard port numbers in clients.\\n\\nI'm running the latest .21 version.\", \"author_fullname\": \"t2_ihg5f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to disable Geforce Experience SHIELD streaming when the tab is gone\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_1796xpe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 10, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 10, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697465598.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m getting the following warnings when starting Sunshine:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EFatal: GameStream is still enabled in GeForce Experience! This *will* cause streaming problems with Sunshine!\\u003C/li\\u003E\\n\\u003Cli\\u003EFatal: Disable GameStream on the SHIELD tab in GeForce Experience or change the Port setting on the Advanced tab in the Sunshine Web UI.\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EBut since NVIDIA deprecated Shield streaming the tab is not available anymore. I also can\\u0026#39;t find any services (in the Windows Services) that indicate NVIDIA streaming is switched on.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny idea on how to disable this now so I can get some Sunshine? :-)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs a workaround I could change the ports, but I\\u0026#39;d prefer not to. Don\\u0026#39;t want the old GameStream stuff interfering or have to deal with non-standard port numbers in clients.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m running the latest .21 version.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"1796xpe\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Grepsy\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/1796xpe/how_to_disable_geforce_experience_shield/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697465598.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Sunshine v0.21.0 Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_179554i\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 18, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 18, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/K-4NivXKD2AfID78mEnmhjs5bIxDdX2Tv15OWDM139Q.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1697460311.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?auto=webp\\u0026s=8da7dff491d4c0617019881dbebb3f101aa5ae81\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ee37d3cefb6176374efb93b4ba7c21d28519f90f\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=441fdf22a25b7d0ae7da3c3891e7ba8525a2cf5a\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=b005a0d531ff6d2fc05edbac11cd23604a10d033\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5303a2a6650eaa7edb73023d2f1d1fb401e80753\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=9ff73770ddd0ba905ddb51d8df1d90d3f068c47e\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/-AYG_oGFCnF5JhFCWqy6FwswazF-J_Av0jnpUCkyDsw.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=d52e89c32c923d04d90e4488adb583a43c2fa129\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"pmE3o4BUBuwQ82TF2EJaDPBpp1hQOyl6SuoIKnyn5VM\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"179554i\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/179554i/sunshine_v0210_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/Sunshine/releases/tag/v0.21.0\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697460311.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"So I'm attempting to use the portable version of Sunshine on a Windows 11 laptop, and when I run it everything seems to run normally, but at the end I get the message below.\\n\\nError: UPNP\\\\_GetSpecificPortMappingEntry() failed: -3\\n\\nIt will show several lines of that, but then show:\\n\\nInfo: Completed UPnP port mappings to XXX.XXX.X.XXX via http://XXX.XXX.X.X\\n\\nSo it seems like port mappings have worked, but I still can't connect via Moonlight by using the laptops IP address. Any thoughts?\", \"author_fullname\": \"t2_e96qt81f\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Port Mapping Error\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_176l3ir\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697154337.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo I\\u0026#39;m attempting to use the portable version of Sunshine on a Windows 11 laptop, and when I run it everything seems to run normally, but at the end I get the message below.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EError: UPNP_GetSpecificPortMappingEntry() failed: -3\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt will show several lines of that, but then show:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EInfo: Completed UPnP port mappings to XXX.XXX.X.XXX via \\u003Ca href=\\\"http://XXX.XXX.X.X\\\"\\u003Ehttp://XXX.XXX.X.X\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo it seems like port mappings have worked, but I still can\\u0026#39;t connect via Moonlight by using the laptops IP address. Any thoughts?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"176l3ir\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"SamwiseG82\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/176l3ir/port_mapping_error/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/176l3ir/port_mapping_error/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697154337.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Wondering if it is possible to accomplish the following with Retroarcher or some combination of LizardByte software:\\n\\nI have an unRAID server running Plex in a container and a second, different server running BigBox and making it available for streaming via Sunshine (to Moonlight clients).\\n\\nI would love to have a single entry that would show up in Plex clients and could let me reach the desktop of the Sunshine machine so I could stream it through my Plex instance. I'm guessing this would require some sort of relay of the gaming machine through the Plex server and probably is not supported, but am hoping someone might have some ideas on setup. This would probably introduce more latency and be a bad idea, but the reason I'm interested is because: (1) I want to host Plex in Docker running on Linux, (2) I do not want to virtualize Windows for the BigBox machine, but instead run it on bare metal for performance reasons, and (3) I want to be able to get to the games through any Plex client.\\n\\nThanks for any thoughts!\\n\\nEDIT: I think I'm overthinking this. Is there a Moonlight plug-in for Plex? That's really all I'd need, but I don't see anything like that out there.\", \"author_fullname\": \"t2_6hb48\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Relaying entire desktop passthrough from a different server\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_176elt5\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1697137236.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWondering if it is possible to accomplish the following with Retroarcher or some combination of LizardByte software:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have an unRAID server running Plex in a container and a second, different server running BigBox and making it available for streaming via Sunshine (to Moonlight clients).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would love to have a single entry that would show up in Plex clients and could let me reach the desktop of the Sunshine machine so I could stream it through my Plex instance. I\\u0026#39;m guessing this would require some sort of relay of the gaming machine through the Plex server and probably is not supported, but am hoping someone might have some ideas on setup. This would probably introduce more latency and be a bad idea, but the reason I\\u0026#39;m interested is because: (1) I want to host Plex in Docker running on Linux, (2) I do not want to virtualize Windows for the BigBox machine, but instead run it on bare metal for performance reasons, and (3) I want to be able to get to the games through any Plex client.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks for any thoughts!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: I think I\\u0026#39;m overthinking this. Is there a Moonlight plug-in for Plex? That\\u0026#39;s really all I\\u0026#39;d need, but I don\\u0026#39;t see anything like that out there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"176elt5\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"toboggan_philosophy\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/176elt5/relaying_entire_desktop_passthrough_from_a/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/176elt5/relaying_entire_desktop_passthrough_from_a/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1697137236.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"ive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86\\\\_64/master not installed. ive check the directory and the master file is'nt there. Ive tried installing and uninstalling, but still doesnt work.\", \"author_fullname\": \"t2_9jeccaekr\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"missing master file\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_173w3qy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696868829.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86_64/master not installed. ive check the directory and the master file is\\u0026#39;nt there. Ive tried installing and uninstalling, but still doesnt work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"173w3qy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"THE_INVINCIBLE_MOMO\", \"discussion_type\": null, \"num_comments\": 6, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/173w3qy/missing_master_file/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/173w3qy/missing_master_file/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1696868829.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510516, \"subreddit\": \"LizardByte\", \"selftext\": \"ive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86\\\\_64/master not installed. ive check the directory and the master file is'nt there. Ive tried installing and uninstalling, but still doesnt work.\", \"author_fullname\": \"t2_k9ob9aib1\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Master file seems to be missing\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_173w1jy\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696868679.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eive been stuck on this error for a while now and ive tried everything. Keep in mind im still a nood at this whole linux thing. everytime I run the following command as per instructions:flatpak run --command=additional-install.sh dev.lizardbyte.sunshine and this command:flatpak run dev.lizardbyte.sunshine I get the following error:error: app/dev.lizardbyte.sunshine/x86_64/master not installed. ive check the directory and the master file is\\u0026#39;nt there. Ive tried installing and uninstalling, but still doesnt work.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"173w1jy\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Longjumping_Role1523\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/173w1jy/master_file_seems_to_be_missing/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/173w1jy/master_file_seems_to_be_missing/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1696868679.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Greetings. It seems like there is a well-known mouse input lag issue with Moonlight/Sunshine. I have Sunshine installed on my Windows 11 PC; I have Moonlight installed on my Chromebook.\\n\\nUsing a controller works great! No issues whatsoever.\\n\\nUsing a mouse is another story. I'd like to play some AoE or LoL, but the mouse control simply isn't there.\\n\\nAny anyone found a solution to this?\\n\\nThanks.\", \"author_fullname\": \"t2_9so6ybbh\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Moonlight/Sunshine Mouse Input Lag\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16z2kol\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696365032.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreetings. It seems like there is a well-known mouse input lag issue with Moonlight/Sunshine. I have Sunshine installed on my Windows 11 PC; I have Moonlight installed on my Chromebook.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing a controller works great! No issues whatsoever.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EUsing a mouse is another story. I\\u0026#39;d like to play some AoE or LoL, but the mouse control simply isn\\u0026#39;t there.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny anyone found a solution to this?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThanks.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"16z2kol\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"Which-Project222\", \"discussion_type\": null, \"num_comments\": 14, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/16z2kol/moonlightsunshine_mouse_input_lag/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1696365032.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hy guys, I'm really strugling to install Sunchine on linux, Manjaro machine. I had tried AUR package, git package and manual make but I get every time some error on the build side\\n\\n`node: error while loading shared libraries: libicui18n.so.71: cannot open shared object file: No such file or directory`\\n\\nAnd I had installed manualy the library from aur\\n\\n pacman -Ql icu64\\n icu64 /usr/\\n icu64 /usr/lib/\\n icu64 /usr/lib/icu/\\n icu64 /usr/lib/icu/64.2/\\n icu64 /usr/lib/icu/64.2/Makefile.inc\\n icu64 /usr/lib/icu/64.2/pkgdata.inc\\n icu64 /usr/lib/libicudata.so.64\\n icu64 /usr/lib/libicudata.so.64.2\\n icu64 /usr/lib/libicui18n.so.64\\n icu64 /usr/lib/libicui18n.so.64.2\\n icu64 /usr/lib/libicuio.so.64\\n icu64 /usr/lib/libicuio.so.64.2\\n icu64 /usr/lib/libicutest.so.64\\n icu64 /usr/lib/libicutest.so.64.2\\n icu64 /usr/lib/libicutu.so.64\\n icu64 /usr/lib/libicutu.so.64.2\\n icu64 /usr/lib/libicuuc.so.64\\n icu64 /usr/lib/libicuuc.so.64.2\\n icu64 /usr/share/\\n icu64 /usr/share/licenses/\\n icu64 /usr/share/licenses/icu64/\\n icu64 /usr/share/licenses/icu64/LICENSE\\n\\n\\u0026#x200B;\", \"author_fullname\": \"t2_xku38\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Manjaro impossibile to install, error libicui18n not found\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16wzn8h\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1696162637.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHy guys, I\\u0026#39;m really strugling to install Sunchine on linux, Manjaro machine. I had tried AUR package, git package and manual make but I get every time some error on the build side\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ccode\\u003Enode: error while loading shared libraries: libicui18n.so.71: cannot open shared object file: No such file or directory\\u003C/code\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd I had installed manualy the library from aur\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epacman -Ql icu64\\nicu64 /usr/\\nicu64 /usr/lib/\\nicu64 /usr/lib/icu/\\nicu64 /usr/lib/icu/64.2/\\nicu64 /usr/lib/icu/64.2/Makefile.inc\\nicu64 /usr/lib/icu/64.2/pkgdata.inc\\nicu64 /usr/lib/libicudata.so.64\\nicu64 /usr/lib/libicudata.so.64.2\\nicu64 /usr/lib/libicui18n.so.64\\nicu64 /usr/lib/libicui18n.so.64.2\\nicu64 /usr/lib/libicuio.so.64\\nicu64 /usr/lib/libicuio.so.64.2\\nicu64 /usr/lib/libicutest.so.64\\nicu64 /usr/lib/libicutest.so.64.2\\nicu64 /usr/lib/libicutu.so.64\\nicu64 /usr/lib/libicutu.so.64.2\\nicu64 /usr/lib/libicuuc.so.64\\nicu64 /usr/lib/libicuuc.so.64.2\\nicu64 /usr/share/\\nicu64 /usr/share/licenses/\\nicu64 /usr/share/licenses/icu64/\\nicu64 /usr/share/licenses/icu64/LICENSE\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"16wzn8h\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TrueAncalagon\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16wzn8h/manjaro_impossibile_to_install_error_libicui18n/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/16wzn8h/manjaro_impossibile_to_install_error_libicui18n/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1696162637.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": \"#ffd635\", \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"author_fullname\": \"t2_ps86k4yd\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"GSMS Released\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": 70, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16u1ilq\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"domain\": \"github.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": \"6c384190-ff87-11ec-81af-e29e75ddec37\", \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Announcement\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/-N0zcZaqHj3qE9T4NQcUBt92FM_IN2X-enXdY68Uv4Y.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1695861709.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": true, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.1\", \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?auto=webp\\u0026s=b11579a32043c085cd5444ef3e2af9b333995990\", \"width\": 1200, \"height\": 600}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=ca74cba0997c10a051d6a7655d4baef474c2e42e\", \"width\": 108, \"height\": 54}, {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=b2ba4e406808de429304b2444f4d19642cd595ab\", \"width\": 216, \"height\": 108}, {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=f75e872d95f04e58a3e342f8273dee03aa31e218\", \"width\": 320, \"height\": 160}, {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=640\\u0026crop=smart\\u0026auto=webp\\u0026s=5b9c07fdad6760c34557730d3d9ffc0fe7fda255\", \"width\": 640, \"height\": 320}, {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=960\\u0026crop=smart\\u0026auto=webp\\u0026s=5daca48234cc9ae8e42de7968ac7a095a2b500a6\", \"width\": 960, \"height\": 480}, {\"url\": \"https://external-preview.redd.it/fU9xoRZ7gSOBw-LgDLUg1xYHpR6Xpuuci7u-bo1bEGc.jpg?width=1080\\u0026crop=smart\\u0026auto=webp\\u0026s=48605afb710da633962d3c904a08c0ac9dbda7b8\", \"width\": 1080, \"height\": 540}], \"variants\": {}, \"id\": \"nW3hgZzyvU6u_CnIOuXOcOLu8CN4hKaZPXqtHr8SH8I\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"1c411bfc-ff88-11ec-a3ea-969cbc5b3148\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"Bot\", \"treatment_tags\": [], \"rte_mode\": \"markdown\", \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#0ac90f\", \"id\": \"16u1ilq\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/LizardByte/comments/16u1ilq/gsms_released/\", \"stickied\": false, \"url\": \"https://github.com/LizardByte/GSMS/releases/tag/v0.3.1\", \"subreddit_subscribers\": 1087, \"created_utc\": 1695861709.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[Feedback Requested] How to stream from a headless server using Sunshine, SSH, and NVidia Twin View X config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16f8r26\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"subreddit_type\": \"public\", \"ups\": 2, \"domain\": \"self.linux_gaming\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_dsbf4iurw\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Discussion\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"linux_gaming\", \"selftext\": \"Hey everyone, I wrote a guide for remote display streaming from a headless Linux sunshine host via SSH.\\n\\nNote this is in review right now and I would appreciate any feedback and improvements before merging it into nightly. I would also appreciate those who want to test my guide out!\\n\\nhttps://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\n\\nSome info about my Sunshine Host:\\n* Distro: Metis Linux (based on Artix Runit)\\n* GPU: 3070 RTX\\n* Nvidia driver: Nvidia dkms\\n* Kernel: Zen\\n* Audio: Pulseaudio\\n* Display/wm: Xorg/dwm started with startx\\n\\nEdit: PR was approved and merged \\nhttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\", \"author_fullname\": \"t2_dsbf4iurw\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How to stream from a headless server using Sunshine, SSH, and NVidia Twin View X config\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/linux_gaming\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_16f8nvr\", \"quarantine\": false, \"link_flair_text_color\": \"light\", \"upvote_ratio\": 0.7, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 4, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"guide\", \"can_mod_post\": false, \"score\": 4, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": 1712277720.0, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1694372952.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.linux_gaming\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey everyone, I wrote a guide for remote display streaming from a headless Linux sunshine host via SSH.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENote this is in review right now and I would appreciate any feedback and improvements before merging it into nightly. I would also appreciate those who want to test my guide out!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\\"\\u003Ehttps://lizardbyte--1527.org.readthedocs.build/projects/sunshine/en/1527/about/guides/linux/headless_ssh.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESome info about my Sunshine Host:\\n* Distro: Metis Linux (based on Artix Runit)\\n* GPU: 3070 RTX\\n* Nvidia driver: Nvidia dkms\\n* Kernel: Zen\\n* Audio: Pulseaudio\\n* Display/wm: Xorg/dwm started with startx\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: PR was approved and merged \\n\\u003Ca href=\\\"https://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\\"\\u003Ehttps://docs.lizardbyte.dev/projects/sunshine/en/latest/about/guides/linux/headless_ssh.html\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"07894534-99a2-11ea-9ff1-0e345630560d\", \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2r2u0\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#539464\", \"id\": \"16f8nvr\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"_Linux_AI_\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"subreddit_subscribers\": 329847, \"created_utc\": 1694372952.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1694373151.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"af501944-ff87-11ec-bde8-96626ad45867\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": 0, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"#0079d3\", \"id\": \"16f8r26\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"_Linux_AI_\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": false, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_16f8nvr\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/16f8r26/feedback_requested_how_to_stream_from_a_headless/\", \"stickied\": false, \"url\": \"/r/linux_gaming/comments/16f8nvr/how_to_stream_from_a_headless_server_using/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1694373151.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page.\\n\\n\\u0026#x200B;\\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with RetroArcher\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168ufyk\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 3, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 3, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693740098.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#x200B;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168ufyk\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 5, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168ufyk/how_can_i_get_started_with_retroarcher/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168ufyk/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1693740098.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510475, \"subreddit\": \"LizardByte\", \"selftext\": \" Hey, I just found out about RetroArcher as I would like to load some arcade games onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page.\\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with retroarcher?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168rrmb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693730618.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load some arcade games onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168rrmb\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168rrmb/how_can_i_get_started_with_retroarcher/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168rrmb/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1693730618.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": 1697510508, \"subreddit\": \"LizardByte\", \"selftext\": \"Hey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this [page](https://retroarcher.github.io/#) just scrolls to the top of the page. \\n\\nI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\", \"author_fullname\": \"t2_vipk6a5\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"How can I get started with RetroArcher?\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_168rq6v\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": \"ReenigneArcher\", \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693730478.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey, I just found out about RetroArcher as I would like to load roms onto my plex server and have been searching for hours on how to use it, I cannot find a single youtube video or guide on how to set it up. I have found links from the old subreddit to a github repo but it takes me to a 404 page, and every link on this \\u003Ca href=\\\"https://retroarcher.github.io/#\\\"\\u003Epage\\u003C/a\\u003E just scrolls to the top of the page. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am super confused on what to and, again, have not found a single bit of helpful documentation so far, so any advice would be greatly appreciated.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"168rq6v\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"TJB_gamers\", \"discussion_type\": null, \"num_comments\": 1, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": true, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/168rq6v/how_can_i_get_started_with_retroarcher/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/168rq6v/how_can_i_get_started_with_retroarcher/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1693730478.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \" Hello, I've installed Sunshine on my gaming PC and Moonlight on my regular PC. I am up to date with the latest versions. When I launch Moonlight, I get a black screen, and then nothing... Any ideas? \", \"author_fullname\": \"t2_5hneewlm\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"black screen on Moonlight\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167y5mw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 2, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 2, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"subreddit_type\": \"public\", \"created\": 1693647549.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.LizardByte\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, I\\u0026#39;ve installed Sunshine on my gaming PC and Moonlight on my regular PC. I am up to date with the latest versions. When I launch Moonlight, I get a black screen, and then nothing... Any ideas? \\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"167y5mw\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"mike37510\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/167y5mw/black_screen_on_moonlight/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/LizardByte/comments/167y5mw/black_screen_on_moonlight/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1693647549.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}, {\"kind\": \"t3\", \"data\": {\"author_flair_background_color\": null, \"approved_at_utc\": null, \"subreddit\": \"LizardByte\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Connection Error when playing Starfield\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/LizardByte\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": \"\", \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167fid0\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 1.0, \"ignore_reports\": false, \"ups\": 1, \"domain\": \"self.MoonlightStreaming\", \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_4k1vwaco\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"Support\", \"can_mod_post\": true, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"default\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"crosspost_parent_list\": [{\"approved_at_utc\": null, \"subreddit\": \"MoonlightStreaming\", \"selftext\": \"Attempted to connect my desktop to play Starfield from Steam and suddenly running into the [following error](https://imgur.com/a/L6G4AbR):\\n\\n\\u003EConnection Error \\n\\u003E \\n\\u003ESomething went wrong on your host PC when starting the stream. \\n\\u003E \\n\\u003EMake sure you don't have any DRM-protected content open on your host PC. You can also try restarting your host PC. \\n\\u003E \\n\\u003EIf the issue persists, try reinstalling GPU drivers and GeForce Experience.\\n\\nI'm not encountering this issue with any other game on Steam or on my PC. Currently the only workaround that I found to work is to stream my desktop and start Starfield then it works flawlessly.\\n\\nIn the logs, it shows the following to indicate that the client is able to connect to the host but is then immediately terminated.\\n\\n\\u003E\\\\[2023:09:01:11:31:06\\\\]: Info: Executing: \\\\[G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\\\\\\Starfield.exe\\\\] in \\\\[\\\"G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\"\\\\] \\n\\\\[2023:09:01:11:31:06\\\\]: Info: G:\\\\\\\\Program Files (x86)\\\\\\\\Steam\\\\\\\\steamapps\\\\\\\\common\\\\\\\\Starfield\\\\\\\\Starfield.exe running with PID 22160 \\\\[2023:09:01:11:31:06\\\\]: Info: CLIENT CONNECTED\\\\[2023:09:01:11:31:06\\\\]: Info: Process terminated\\n\\nI've made the following attempts to fix this issue with no luck\\n\\n* Update latest Nvidia drivers (537.132) and GeForce Experience (3.27.0.112)\\n* Update to Sunshine Version 0.20.0\\n* Run the audio tool to find the Device ID of the Virtual sink and update Sunshine's configuration (ref [previous post](https://www.reddit.com/r/MoonlightStreaming/comments/11sagxo/moonlightsunshine_connection_terminated/?utm_source=share\\u0026utm_medium=web2x\\u0026context=3))\\n* Disable GeForce experience\\n\\nI'm not sure what else I can do at this point to get it to workout without the desktop workaround.\", \"author_fullname\": \"t2_4k1vwaco\", \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Connection Error when playing Starfield\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/MoonlightStreaming\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"hide_score\": false, \"name\": \"t3_167feqb\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.79, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 5, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"user_reports\": [], \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 5, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"self\", \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1693593934.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.MoonlightStreaming\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAttempted to connect my desktop to play Starfield from Steam and suddenly running into the \\u003Ca href=\\\"https://imgur.com/a/L6G4AbR\\\"\\u003Efollowing error\\u003C/a\\u003E:\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EConnection Error \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESomething went wrong on your host PC when starting the stream. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMake sure you don\\u0026#39;t have any DRM-protected content open on your host PC. You can also try restarting your host PC. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIf the issue persists, try reinstalling GPU drivers and GeForce Experience.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not encountering this issue with any other game on Steam or on my PC. Currently the only workaround that I found to work is to stream my desktop and start Starfield then it works flawlessly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn the logs, it shows the following to indicate that the client is able to connect to the host but is then immediately terminated.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E[2023:09:01:11:31:06]: Info: Executing: [G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\\\Starfield.exe] in [\\u0026quot;G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\u0026quot;]\\u003Cbr/\\u003E\\n[2023:09:01:11:31:06]: Info: G:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Starfield\\\\Starfield.exe running with PID 22160 [2023:09:01:11:31:06]: Info: CLIENT CONNECTED[2023:09:01:11:31:06]: Info: Process terminated\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;ve made the following attempts to fix this issue with no luck\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003EUpdate latest Nvidia drivers (537.132) and GeForce Experience (3.27.0.112)\\u003C/li\\u003E\\n\\u003Cli\\u003EUpdate to Sunshine Version 0.20.0\\u003C/li\\u003E\\n\\u003Cli\\u003ERun the audio tool to find the Device ID of the Virtual sink and update Sunshine\\u0026#39;s configuration (ref \\u003Ca href=\\\"https://www.reddit.com/r/MoonlightStreaming/comments/11sagxo/moonlightsunshine_connection_terminated/?utm_source=share\\u0026amp;utm_medium=web2x\\u0026amp;context=3\\\"\\u003Eprevious post\\u003C/a\\u003E)\\u003C/li\\u003E\\n\\u003Cli\\u003EDisable GeForce experience\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m not sure what else I can do at this point to get it to workout without the desktop workaround.\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?auto=webp\\u0026s=9a7ba02799daa9a213f7483f4d65c750c9829592\", \"width\": 600, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd3712c207ec18252b21a937fb8ca4d3c0d0950\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=72b689b19c0c29ecb951f1b09102de62a865fbea\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7ca06a311bc2c761c114b614c7d0a7561df19a2a\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"a4q6yXv_EXmgGwC0vEAw_4xkCUnk5RWvFDhfdRzXX84\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_3owbe\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"167feqb\", \"is_robot_indexable\": true, \"report_reasons\": null, \"author\": \"lt_dan457\", \"discussion_type\": null, \"num_comments\": 9, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"subreddit_subscribers\": 20215, \"created_utc\": 1693593934.0, \"num_crossposts\": 1, \"media\": null, \"is_video\": false}], \"created\": 1693594161.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": \"new\", \"banned_at_utc\": null, \"url_overridden_by_dest\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"view_count\": null, \"archived\": false, \"no_follow\": true, \"spam\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?auto=webp\\u0026s=9a7ba02799daa9a213f7483f4d65c750c9829592\", \"width\": 600, \"height\": 315}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=108\\u0026crop=smart\\u0026auto=webp\\u0026s=7fd3712c207ec18252b21a937fb8ca4d3c0d0950\", \"width\": 108, \"height\": 56}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=216\\u0026crop=smart\\u0026auto=webp\\u0026s=72b689b19c0c29ecb951f1b09102de62a865fbea\", \"width\": 216, \"height\": 113}, {\"url\": \"https://external-preview.redd.it/JMUUTm4Iaw0nwurDoDDDwYMfgVdZwYRfeg89liPg0Wc.jpg?width=320\\u0026crop=smart\\u0026auto=webp\\u0026s=7ca06a311bc2c761c114b614c7d0a7561df19a2a\", \"width\": 320, \"height\": 168}], \"variants\": {}, \"id\": \"a4q6yXv_EXmgGwC0vEAw_4xkCUnk5RWvFDhfdRzXX84\"}], \"enabled\": false}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"link_flair_template_id\": \"be393440-ff87-11ec-9bbd-e2c872b60c34\", \"can_gild\": false, \"removed\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_6o778z\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": 0, \"removal_reason\": null, \"link_flair_background_color\": \"#ea0027\", \"id\": \"167fid0\", \"is_robot_indexable\": true, \"report_reasons\": [], \"author\": \"lt_dan457\", \"discussion_type\": null, \"num_comments\": 0, \"send_replies\": true, \"contest_mode\": false, \"mod_reports\": [], \"author_patreon_flair\": false, \"crosspost_parent\": \"t3_167feqb\", \"approved\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/LizardByte/comments/167fid0/connection_error_when_playing_starfield/\", \"stickied\": false, \"url\": \"/r/MoonlightStreaming/comments/167feqb/connection_error_when_playing_starfield/\", \"subreddit_subscribers\": 1087, \"created_utc\": 1693594161.0, \"num_crossposts\": 0, \"media\": null, \"is_video\": false}}], \"before\": null}}" }, "headers": { "Accept-Ranges": [ @@ -43,10 +43,10 @@ "keep-alive" ], "Content-Length": [ - "532666" + "660004" ], "Date": [ - "Wed, 01 May 2024 14:21:59 GMT" + "Tue, 20 May 2025 23:55:51 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -58,7 +58,7 @@ "snooserv" ], "Set-Cookie": [ - "session_tracker=hjgieqemmchoocirph.0.1714573318849.Z0FBQUFBQm1NbEFIeWY5WjBYc2g0YWdVMkRpbVhCR2F0cmUwRmw4ZnNJNU1nOXdGQVlXRHBjUDZXck5BMEtpTjVIZW9OWE5ncGhXNTJ0X0Y5MWJDalI4YzJEa3RMR1EyXzhhMnNPZkVQZlpMUVE0cmF3TlJCekYzRUxMb212ak82c0pJTGVicnVxMjU; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 16:21:59 GMT; secure; SameSite=None; Secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785350369.Z0FBQUFBQm9MUmFIUFlncTVSYzVlSHJDSXBHcUdRUlJhSktfcHV1NEZyWUdjMTJza2tvSFJxQlhTVGVFUTdnQkIwMWdZcVVPejEzNHI3SlFURTV1NmlIdHBEb1E5NVNvOEZLaDlxbmt5ZHpQNEZET094dmdPckxIZ3FxQXYzbHRTRUdGdTRRaDRyamc; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:51 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -88,13 +88,13 @@ "-1" ], "x-ratelimit-remaining": [ - "979" + "930.0" ], "x-ratelimit-reset": [ - "482" + "249" ], "x-ratelimit-used": [ - "17" + "70" ], "x-ua-compatible": [ "IE=edge" @@ -108,7 +108,7 @@ } }, { - "recorded_at": "2024-05-01T14:22:00", + "recorded_at": "2025-05-20T23:55:51", "request": { "body": { "encoding": "utf-8", @@ -128,19 +128,19 @@ "keep-alive" ], "Cookie": [ - "edgebucket=ELOnVL1mGMbsRlea17; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm1NYXFBTjF6QmZOUlBkTVRNQUNPdVZNUkxPQkMwY0VRakJfZ09pMVBjNkdVdTRTVVl2YURRanFFQUJXcklpVnZEeU1NXzlNRS03Y1ppOXQxMkpOckhMa1ozem5IMkc5SnZxWjVrV0lwSmZKUDFFSm55MXo5STM3MDNTVDQzdU1ZazRQZVM; session_tracker=hjgieqemmchoocirph.0.1714573318849.Z0FBQUFBQm1NbEFIeWY5WjBYc2g0YWdVMkRpbVhCR2F0cmUwRmw4ZnNJNU1nOXdGQVlXRHBjUDZXck5BMEtpTjVIZW9OWE5ncGhXNTJ0X0Y5MWJDalI4YzJEa3RMR1EyXzhhMnNPZkVQZlpMUVE0cmF3TlJCekYzRUxMb212ak82c0pJTGVicnVxMjU; csv=2" + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785350369.Z0FBQUFBQm9MUmFIUFlncTVSYzVlSHJDSXBHcUdRUlJhSktfcHV1NEZyWUdjMTJza2tvSFJxQlhTVGVFUTdnQkIwMWdZcVVPejEzNHI3SlFURTV1NmlIdHBEb1E5NVNvOEZLaDlxbmt5ZHpQNEZET094dmdPckxIZ3FxQXYzbHRTRUdGdTRRaDRyamc; csv=2" ], "User-Agent": [ - "Test suite PRAW/7.7.1 prawcore/2.4.0" + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/user/AAbrains/about/?raw_json=1" + "uri": "https://oauth.reddit.com/user/lt_dan457/about/?raw_json=1" }, "response": { "body": { "encoding": "UTF-8", - "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": true, \"user_is_contributor\": false, \"banner_img\": \"\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_AAbrains\", \"header_img\": null, \"title\": \"\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://styles.redditmedia.com/t5_2fp6nr/styles/profileIcon_snoo117cf60a-27b2-43c0-9112-c52c2ff0a23a-headshot.png?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=ba41ee17a6dd4c67ebe3c62b2e7548c0945229b5\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/AAbrains\", \"key_color\": \"\", \"name\": \"t5_2fp6nr\", \"is_default_banner\": true, \"url\": \"/user/AAbrains/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": [380, 600], \"awardee_karma\": 15, \"id\": \"5pt89pvr\", \"verified\": true, \"is_gold\": false, \"is_mod\": false, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://styles.redditmedia.com/t5_2fp6nr/styles/profileIcon_snoo117cf60a-27b2-43c0-9112-c52c2ff0a23a-headshot.png?width=256\\u0026height=256\\u0026crop=256:256,smart\\u0026s=ba41ee17a6dd4c67ebe3c62b2e7548c0945229b5\", \"hide_from_robots\": false, \"link_karma\": 193, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 274, \"accept_chats\": true, \"name\": \"AAbrains\", \"created\": 1582019177.0, \"created_utc\": 1582019177.0, \"snoovatar_img\": \"https://i.redd.it/snoovatar/avatars/117cf60a-27b2-43c0-9112-c52c2ff0a23a.png\", \"comment_karma\": 66, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": false, \"user_is_contributor\": false, \"banner_img\": \"\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_lt_dan457\", \"header_img\": null, \"title\": \"Dan\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6-headshot.png\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/lt_dan457\", \"key_color\": \"\", \"name\": \"t5_24load\", \"is_default_banner\": true, \"url\": \"/user/lt_dan457/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": [380, 600], \"awardee_karma\": 0, \"id\": \"4k1vwaco\", \"verified\": true, \"is_gold\": false, \"is_mod\": false, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6-headshot.png\", \"hide_from_robots\": true, \"link_karma\": 17837, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 78247, \"accept_chats\": true, \"name\": \"lt_dan457\", \"created\": 1568086595.0, \"created_utc\": 1568086595.0, \"snoovatar_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6.png\", \"comment_karma\": 60410, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" }, "headers": { "Accept-Ranges": [ @@ -150,10 +150,10 @@ "keep-alive" ], "Content-Length": [ - "2086" + "1847" ], "Date": [ - "Wed, 01 May 2024 14:22:00 GMT" + "Tue, 20 May 2025 23:55:51 GMT" ], "NEL": [ "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" @@ -165,7 +165,7 @@ "snooserv" ], "Set-Cookie": [ - "session_tracker=hjgieqemmchoocirph.0.1714573320104.Z0FBQUFBQm1NbEFJU19QMnhCdnpCMk9mb0plTkF2ZHFnUDN3Zld0Y2ZDSHcyRTN5YnVMa1UtN1l5UnozYWV0LUxtUXNkS2VUMWRxQjhSZVJQXzFtVVFZbnVRX1ZKS3dVU29JLXREZU45bUZYQ3U5dzZPVTJHUDdEaExsaDJwM0xENmRlRE5HQVF5cGY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 01-May-2024 16:22:00 GMT; secure; SameSite=None; Secure" + "session_tracker=adhdnlqbpoljraclbh.0.1747785351461.Z0FBQUFBQm9MUmFIMm5oY2VsY1l3dGhneE9nRF9wOUlGSmtORlVnSkl4X1Fvb3A3SEp2MGtvdnNaQW9rMlItYmo2ZVhaNUtLSWhvQXJ4MkJQVVBKVVJFQURPc0g2LTVXYjdKZnZFc0JNajd2TWtaM28yMEQtcXR5MHZTX2c5LUg1QmVzYWNtNmF3UXY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:51 GMT; secure; SameSite=None; Secure" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubdomains" @@ -195,13 +195,126 @@ "-1" ], "x-ratelimit-remaining": [ - "978" + "929.0" ], "x-ratelimit-reset": [ - "480" + "248" ], "x-ratelimit-used": [ - "18" + "71" + ], + "x-robots-tag": [ + "noindex, nofollow" + ], + "x-ua-compatible": [ + "IE=edge" + ] + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/user/lt_dan457/about/?raw_json=1" + } + }, + { + "recorded_at": "2025-05-20T23:55:51", + "request": { + "body": { + "encoding": "utf-8", + "string": "" + }, + "headers": { + "Accept": [ + "*/*" + ], + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "Connection": [ + "keep-alive" + ], + "Cookie": [ + "edgebucket=cGQBeoc7cndeJ4CRKq; loid=0000000000ps86k4yd.2.1657372729000.Z0FBQUFBQm9MUloyS0I2R2FDQXcyaEJuOGRzNy1mTFBNUEJramszdUYzbkNYTDFEUGg0bEFZMTU1eldXNllmUklURllvWlVqNlhKQ1NnVzdFMnU4QXA3T2hkejNRMGRiTl9rY0YxYkVQcVdqSEo1eEs3enNSejloSk8zem5yejUyN2NSWUIyaGpUU3I; session_tracker=adhdnlqbpoljraclbh.0.1747785351461.Z0FBQUFBQm9MUmFIMm5oY2VsY1l3dGhneE9nRF9wOUlGSmtORlVnSkl4X1Fvb3A3SEp2MGtvdnNaQW9rMlItYmo2ZVhaNUtLSWhvQXJ4MkJQVVBKVVJFQURPc0g2LTVXYjdKZnZFc0JNajd2TWtaM28yMEQtcXR5MHZTX2c5LUg1QmVzYWNtNmF3UXY; csv=2" + ], + "User-Agent": [ + "praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte) PRAW/7.8.1 prawcore/2.4.0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/user/lt_dan457/about/?raw_json=1" + }, + "response": { + "body": { + "encoding": "UTF-8", + "string": "{\"kind\": \"t2\", \"data\": {\"is_employee\": false, \"is_friend\": false, \"subreddit\": {\"default_set\": false, \"user_is_contributor\": false, \"banner_img\": \"\", \"allowed_media_in_comments\": [], \"user_is_banned\": false, \"free_form_reports\": true, \"community_icon\": null, \"show_media\": true, \"icon_color\": \"\", \"user_is_muted\": null, \"display_name\": \"u_lt_dan457\", \"header_img\": null, \"title\": \"Dan\", \"previous_names\": [], \"over_18\": false, \"icon_size\": [256, 256], \"primary_color\": \"\", \"icon_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6-headshot.png\", \"description\": \"\", \"submit_link_label\": \"\", \"header_size\": null, \"restrict_posting\": true, \"restrict_commenting\": false, \"subscribers\": 0, \"submit_text_label\": \"\", \"is_default_icon\": false, \"link_flair_position\": \"\", \"display_name_prefixed\": \"u/lt_dan457\", \"key_color\": \"\", \"name\": \"t5_24load\", \"is_default_banner\": true, \"url\": \"/user/lt_dan457/\", \"quarantine\": false, \"banner_size\": null, \"user_is_moderator\": false, \"accept_followers\": true, \"public_description\": \"\", \"link_flair_enabled\": false, \"disable_contributor_requests\": false, \"subreddit_type\": \"user\", \"user_is_subscriber\": false}, \"snoovatar_size\": [380, 600], \"awardee_karma\": 0, \"id\": \"4k1vwaco\", \"verified\": true, \"is_gold\": false, \"is_mod\": false, \"awarder_karma\": 0, \"has_verified_email\": true, \"icon_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6-headshot.png\", \"hide_from_robots\": true, \"link_karma\": 17837, \"pref_show_snoovatar\": false, \"is_blocked\": false, \"total_karma\": 78247, \"accept_chats\": true, \"name\": \"lt_dan457\", \"created\": 1568086595.0, \"created_utc\": 1568086595.0, \"snoovatar_img\": \"https://i.redd.it/snoovatar/avatars/a2e81621-fb5e-4021-be8a-bf96490d56f6.png\", \"comment_karma\": 60410, \"accept_followers\": true, \"has_subscribed\": true, \"accept_pms\": true}}" + }, + "headers": { + "Accept-Ranges": [ + "bytes" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1847" + ], + "Date": [ + "Tue, 20 May 2025 23:55:51 GMT" + ], + "NEL": [ + "{\"report_to\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": false, \"success_fraction\": 1.0, \"failure_fraction\": 1.0}" + ], + "Report-To": [ + "{\"group\": \"w3-reporting-nel\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-nel.reddit.com/reports\" }]}, {\"group\": \"w3-reporting\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting.reddit.com/reports\" }]}, {\"group\": \"w3-reporting-csp\", \"max_age\": 14400, \"include_subdomains\": true, \"endpoints\": [{ \"url\": \"https://w3-reporting-csp.reddit.com/reports\" }]}" + ], + "Server": [ + "snooserv" + ], + "Set-Cookie": [ + "session_tracker=adhdnlqbpoljraclbh.0.1747785351642.Z0FBQUFBQm9MUmFIZm1oTHFYZHNMMW9UUFRVQ0FLWXp0OU9mSnBrXzU0R01tSExfLU1LRjZiVEJtYkNlTUYzUC1KMkRlVTN6VXFMaXJkN3EzMVBiU2FpTTFvZE1BdVJ5ZEdQZF9aTVVxVU5zWmdEYlIwUVZQNDYyRXNkcmNadkZGWUM3ck42aXdMa0s; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 21-May-2025 01:55:51 GMT; secure; SameSite=None; Secure" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubdomains" + ], + "Vary": [ + "accept-encoding, Accept-Encoding" + ], + "Via": [ + "1.1 varnish" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-XSS-Protection": [ + "1; mode=block" + ], + "cache-control": [ + "private, s-maxage=0, max-age=0, must-revalidate, no-store" + ], + "content-type": [ + "application/json; charset=UTF-8" + ], + "expires": [ + "-1" + ], + "x-ratelimit-remaining": [ + "928.0" + ], + "x-ratelimit-reset": [ + "248" + ], + "x-ratelimit-used": [ + "72" + ], + "x-robots-tag": [ + "noindex, nofollow" ], "x-ua-compatible": [ "IE=edge" @@ -211,7 +324,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/user/AAbrains/about/?raw_json=1" + "url": "https://oauth.reddit.com/user/lt_dan457/about/?raw_json=1" } } ], diff --git a/tests/unit/common/test_database.py b/tests/unit/common/test_database.py index e8c796e4..c729576d 100644 --- a/tests/unit/common/test_database.py +++ b/tests/unit/common/test_database.py @@ -7,6 +7,8 @@ # lib imports import pytest +from tinydb import JSONStorage, TinyDB +from tinydb.middlewares import CachingMiddleware # local imports from src.common.database import Database @@ -77,16 +79,51 @@ def test_context_manager(self, db_init, cleanup_files): assert data[0]["test"] == "data" def test_sync_method(self, db_init, cleanup_files): - """Test sync method flushes data to disk.""" + """Test sync method flushes data to disk, closes and reopens database.""" db = Database( db_name=f'db_{inspect.currentframe().f_code.co_name}', db_dir=db_init['db_dir'], use_git=db_init['use_git'], ) + # Get the original TinyDB instance + original_tinydb = db.tinydb + + # Create a test record to verify persistence + with db as tinydb: + tinydb.insert({"test_before_sync": "data"}) + + # Create a real TinyDB instance to return from the mock + new_db = TinyDB( + db.json_path, + storage=CachingMiddleware(JSONStorage), + indent=4, + ) + + # Setup the mocks - correctly patching the TinyDB constructor with patch.object(db.tinydb.storage, 'flush') as mock_flush: - db.sync() - mock_flush.assert_called_once() + with patch.object(db.tinydb, 'close') as mock_close: + # Use __name__ to get the fully qualified name including module + with patch('src.common.database.TinyDB', return_value=new_db) as mock_tinydb: + # Call sync method + db.sync() + + # Verify the sequence of operations + mock_flush.assert_called_once() + mock_close.assert_called_once() + mock_tinydb.assert_called_once() + + # Verify database is still usable after sync + assert db.tinydb is not None + assert db.tinydb is not original_tinydb + + # Verify we can still use the database and data persisted + with db as tinydb: + existing_data = tinydb.all() + assert any(record.get("test_before_sync") == "data" for record in existing_data) + + # Add new data to verify database is functional + tinydb.insert({"test_after_sync": "new_data"}) @staticmethod def create_test_shelve(shelve_path): diff --git a/tests/unit/reddit/test_reddit_bot.py b/tests/unit/reddit/test_reddit_bot.py index 11af5427..f4ba3397 100644 --- a/tests/unit/reddit/test_reddit_bot.py +++ b/tests/unit/reddit/test_reddit_bot.py @@ -14,7 +14,6 @@ from betamax_serializers.pretty_json import PrettyJSONSerializer from praw.config import _NotSet import pytest -from tinydb import Query # local imports from src.reddit_bot.bot import Bot @@ -114,7 +113,7 @@ class TestBot: @pytest.fixture(scope='session') def bot(self): return Bot( - user_agent='Test suite', + user_agent='praw:dev.lizardbyte.app.support-bot.test-suite:v1 (by /r/LizardByte)', ) @pytest.fixture(scope='session', autouse=True) @@ -154,7 +153,7 @@ def slash_command_comment(self, bot, recorder): @pytest.fixture(scope='session') def _submission(self, bot, recorder): with recorder.use_cassette(f'fixture_{inspect.currentframe().f_code.co_name}'): - s = bot.reddit.submission(id='w03cku') # TODO: replace with a submission by LizardByte-bot + s = bot.reddit.submission(id='vuoiqg') assert s.author return s @@ -176,8 +175,8 @@ def test_process_comment(self, bot, recorder, request, slash_command_comment): with bot.db as db: comments_table = db.table('comments') - c = Query() - comment_data = comments_table.get(c.reddit_id == slash_command_comment.id) + q = bot.db.query() + comment_data = comments_table.get(q.reddit_id == slash_command_comment.id) assert comment_data is not None assert comment_data['author'] == str(slash_command_comment.author) @@ -192,8 +191,8 @@ def test_process_submission(self, bot, discord_bot, recorder, request, _submissi with bot.db as db: submissions_table = db.table('submissions') - s = Query() - submission_data = submissions_table.get(s.reddit_id == _submission.id) + q = bot.db.query() + submission_data = submissions_table.get(q.reddit_id == _submission.id) assert submission_data is not None assert submission_data['author'] == str(_submission.author)