This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/awk -f | |
# | |
# Parses the ffmpeg trace_headers output and displays timestamp SEI (MISB ST 0604) | |
# contents in a readable format: | |
# | |
# ${ts.identifier}: ${datetime.of.timestamp}: ${timestamp.value} | |
# cf848278-ee23-306c-9265-e8fef22fb8b8: Fri Nov 24 09:40:48 UTC 2023 : 1700818848602427904 | |
# | |
# Expects the H.265 SEI i.e. nano precision timestamps. For the H.264 (microseconds precision) | |
# update the timestamp dividing and identifier dump. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/awk -f | |
# | |
# Parses the ffmpeg trace_headers output and displays timestamp SEI (MISB ST 0604) | |
# contents in a readable format: | |
# | |
# ${ts.identifier}: ${datetime.of.timestamp}: ${timestamp.value} | |
# cf848278-ee23-306c-9265-e8fef22fb8b8: Fri Nov 24 09:40:48 UTC 2023 : 1700818848602427904 | |
# | |
# Expects the H.265 SEI i.e. nano precision timestamps. For the H.264 (microseconds precision) | |
# update the timestamp dividing and identifier dump. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/awk -f | |
# | |
# Parses the ffmpeg trace_headers output and displays timestamp SEI (MISB ST 0604) | |
# contents in a readable format: | |
# | |
# ${ts.identifier}: ${datetime.of.timestamp}: ${timestamp.value} | |
# cf848278-ee23-306c-9265-e8fef22fb8b8: Fri Nov 24 09:40:48 UTC 2023 : 1700818848602427904 | |
# | |
# Expects the H.265 SEI i.e. nano precision timestamps. For the H.264 (microseconds precision) | |
# update the timestamp dividing and identifier dump. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
JENKINS_URL=http://hg.somewhere.net | |
JENKINS_TOKEN=token | |
JENKINS_JOB="" | |
HG_REPOSITORY=/path/to/repository | |
HG_BRANCH="" | |
HG_NODE="" |