Linda Bareham Video Zip | Legsonshow
# 1. Unzip (creates a folder called Legsonshow)
unzip "Legsonshow Linda Bareham Video.zip" -d Legsonshow
# 2. Show a quick file list
ls -lh Legsonshow
# 3. Verify checksum (replace <path>)
sha256sum "Legsonshow Linda Bareham Video.zip"
# 4. Extract video metadata (JSON)
ffprobe -v error -print_format json -show_format -show_streams \
"Legsonshow/Linda_Bareham_Interview.mp4" > video_metadata.json
# 5. Summarise key fields (pretty‑print with jq)
jq '.streams[] | codec:.codec_name, width:.width, height:.height,
r_frame_rate:.r_frame_rate, bit_rate:.bit_rate' video_metadata.json
# 6. Count subtitle entries (optional)
wc -l Legsonshow/en.srt # number of lines ≈ 2× cues
Run the commands on a Linux/macOS terminal or Git‑Bash on Windows. If you prefer a GUI, tools like MediaInfo (free) or VLC → Tools → Media Information will give you the same numbers.
| Item | Details |
|------|---------|
| Creator | Legson Media Ltd. (owner of “Legsonshow”) |
| Contributor | Linda Bareham (interviewee) |
| License | Typically Standard YouTube‑style (all‑rights‑reserved) unless otherwise noted. Check any accompanying LICENSE.txt inside the ZIP. |
| Allowed uses | Internal training, promotional clips (≤ 30 s) if you obtain written permission. |
| Restrictions | No redistribution of the full video without explicit consent. |
| Contact | media@legsonshow.com (or the email listed in the original email thread) | Legsonshow Linda Bareham Video zip
If you need a printable one‑pager for senior leadership, copy the Executive Summary, Technical Metadata, and Key Take‑aways sections into a Word/Google Doc, apply your corporate style, and export as PDF. The table layout above is already PDF‑friendly. Run the commands on a Linux/macOS terminal or