Browsergames (old) Mods

Currently hyped for: |


Latest:

Recording EquipmentHardware: GenkiShadowcast
Software: [Android] USBCamera

Downscale Command:
cd /storage/emulated/0/DCIM/USBCamera
for file in *.mp4; do ffmpeg -i "$file" -vf "scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:(ow-iw)/2:(oh-ih)/2" -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k "${file%.*}_output.mp4";
done

other games (+)




[Alcea's Steam Library]




- <?php $currentContent = file_get_contents('current.html'); $targetContent = file_get_contents('oldentries.html'); $updatedContent = $currentContent . $targetContent; $linkpattern = '/<a\b[^>]*>(.*?)<\/a>/'; //remove link $replacement = ''; $updatedContent = preg_replace($linkpattern, $replacement, $updatedContent); file_put_contents('oldentries.html', $updatedContent); ?> <?php if(isset($_GET['gamename'])) { $gamename = $_GET['gamename']; $currentDateTime = date('Y-m-d H:i:s'); $htmlContent = '<u>LastPlayed:</u> ' . $gamename . ' - (' . $currentDateTime . ') <a target="_blank" href="oldentries.html" style="color:gray">(old)</a><br>'; file_put_contents('current.html', $htmlContent); //echo "Successfully updated current.html with the game name: $gamename and current date and time."; // Output the iframe with cache busting echo "<iframe src='current.html?" . time() . "' style='width: 100%; border: none;'></iframe>"; } else { echo "<iframe src='current.html?" . time() . "' style='width: 100%; border: none;'></iframe>"; } ?> </div>