info:
- https://en.wikipedia.org/wiki/EIA-608
- to extract these using
ffmpeg
(under Windows) -- see get-EIA608.bat (%1 = input_video_file)
screenshot(s):
video(s):
#!/usr/bin/env bash | |
# from https://forum.manjaro.org/t/howto-work-around-gpg-verification-issue-on-left-behind-systems/125822 | |
set -o errexit #>Exit when a command fails (returns non-zero) | |
set -o pipefail #>Exit when a command within a pipeline fail (returns non-zero) | |
set -o nounset #>Forbid to use unset | |
# Reset language to default | |
export LANG=C |
info:
ffmpeg
(under Windows) -- see get-EIA608.bat (%1 = input_video_file)screenshot(s):
video(s):
<!DOCTYPE html> | |
<!-- move this file to: src/main/webapp/WsChat.html --> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Tomcat WebSocket Chat</title> | |
<script type="text/javascript"> | |
function params2Form(){ | |
var hashParams = window.location.search.substr(1).split('&'); |