Skip to content

Instantly share code, notes, and snippets.

@trickkiste
Created November 26, 2018 19:46
Show Gist options
  • Save trickkiste/68a19e0619aa4e533d0163657210d380 to your computer and use it in GitHub Desktop.
Save trickkiste/68a19e0619aa4e533d0163657210d380 to your computer and use it in GitHub Desktop.
BEGIN {
ORS=""
OFS=""
print "{\"payload\":["
}
/[^\s"]+|"([^"]*)"/g && (NR>2) {
ORS=""
OFS=""
printf "%s\"index\":\"%d\",\"filename\":\"%s\",\"in\":\"%d\",\"out\":\"%d\",\"length\":\"%d\",\"calculated_length\":\"%d\",\"fps\":\"%s\"", sep, $1, $2, $3, $4, $5, $6, $7; sep="],["
}
END{
ORS=""
OFS=""
print "]}\n"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment