tail "~/Downloads/Andrew Tate - Network Brilliance.mp4’
<array>
<dict>
<key>name</key>
<string>www.getwsodo.com</string>
</dict>
</array>
</dict>
</plist>
8©nam0dataAndrew Tate - Network Brilliance(©ART datawww.getwsodo.com(aART datawww.getwsodo.com(©alb
The MP4 file contains metadata appended at the end, possibly added by a site like www.getwsodo.com
to brand or watermark the content and discourage redistribution.
This extra data doesn’t typically interfere with playback, but if you want to clean the file and remove the metadata at the end, here are your best options (ffmpeg):
✅ Option 1: Remux (Copy Video/Audio Without Re-encoding)
This is the safest and fastest way to remove junk metadata.
Use ffmpeg
(recommended)
ffmpeg -i "~/Downloads/Andrew Tate - Network Brilliance.mp4" -map 0 -c copy -movflags +faststart "cleaned.mp4"
ffmpeg -i "~/Downloads/Andrew Tate - Network Brilliance.mp4" -c:v libx264 -c:a aac -preset fast -crf 23 "clean_safe.mp4"
Explanation:
-c copy
: copies video/audio streams without re-encoding (fast and lossless).-movflags +faststart
: moves metadata to the beginning for better playback (e.g., for streaming).- This automatically strips a lot of custom metadata and footer tags.
✅ Option 2: Explicitly remove metadata
You can also explicitly drop all metadata:
ffmpeg -i "~/Downloads/Andrew Tate - Network Brilliance.mp4" -map 0 -c copy -map_metadata -1 "cleaned_no_meta.mp4"
-map_metadata -1
: tellsffmpeg
to drop all metadata tags.
❌ Option to Avoid: Manually Trimming the File with dd
or truncate
This is dangerous unless you know the exact byte offset of where valid MP4 data ends. MP4 files use a complex box-based (atom) format, and random trimming can corrupt the file.
🧪 Bonus: Inspect MP4 Structure
If you’re curious and want to inspect the atoms (structure) of the MP4 file:
mp4dump "~/Downloads/Andrew Tate - Network Brilliance.mp4"
(You may need to install bento4
tools)
Summary
Use:
ffmpeg -i input.mp4 -map 0 -c copy -movflags +faststart output.mp4
or if you want to strip all metadata:
ffmpeg -i input.mp4 -map 0 -c copy -map_metadata -1 output_clean.mp4
These will give you a clean file with no appended watermark text or site branding.