Where did you find that one? I only saw her post the following one and I'm not sure if she has more elsewhere...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.


Where did you find that one? I only saw her post the following one and I'm not sure if she has more elsewhere...
2025-11-21
.ts because I dont wanna convert haha but works fine in pc and phone
for file in *.ts; do
if [ -f "$file" ]; then
echo "Converting '$file'..."
ffmpeg -nostdin -i "$file" -c copy "${file%.ts}.mp4" && rm -f "$file"
echo "Successfully converted '$file' and removed the original."
echo "--------------------------------------------------------"
fi
done

