Remove the Instagram Reels Watermark
When a Reel is downloaded or shared out of Instagram, it picks up a corner watermark: the Instagram/Reels glyph plus the original creator's @handle, usually pinned to one corner rather than bouncing like TikTok's. Because it holds a fixed position, it's one of the more forgiving social watermarks to remove cleanly. WatermarkRemoverAI inpaints that corner across every frame so you can reuse your own Reels on other platforms without carrying the Instagram tag.
How to remove the Instagram Reels watermark
Upload the downloaded Reel
Add the MP4 you saved. Note which corner holds the Instagram glyph and @handle — on Reels it typically stays put.
Mask the corner tag
Brush over the Reels logo and username in that corner. Because it doesn't move, a tight mask on the tag is enough and keeps the rest of the frame pristine.
Download and reuse
Export the cleaned 9:16 video at its original resolution, ready to post elsewhere without the Instagram handle.
Frequently Asked Questions
Where does the Reels watermark sit, and does it move?
It's the Instagram/Reels glyph plus the creator @handle, pinned to a corner. Unlike TikTok's bouncing mark it generally holds one position, so you only need to mask that corner — which is why the removal comes out clean.
Can I remove another creator's @handle from their Reel?
Only reuse Reels you made yourself. Removing your own handle to repost your content is fine; stripping another creator's username to repost their work as your own isn't something this tool supports.
Why remove the Instagram watermark before posting to TikTok?
Cross-platform feeds tend to downrank clips that show a competing app's branding. Clearing the Reels tag from your own video gives it a cleaner start on whichever platform you post to next.
Will the removed corner look patched?
Because the tag stays in one place, the AI has consistent surrounding pixels every frame to rebuild from, so the corner blends in rather than showing a smear. Fixed-position marks are the easiest case.
Does this work on a Reel exported as separate images?
Yes — a still frame or cover image with the same corner tag can be uploaded as an image and cleaned in a single pass.
Related Guides
Automate it with the API
Send a file, get a job id back, poll for the clean result. Same AI engine as the web tool, in two requests.
curl -X POST https://api.watermarkremoverai.com/v1/watermark/remove-video/ \
-H "Authorization: YOUR_API_TOKEN" \
-F "files=@video.mp4" \
-F "auto_detect=true"
# => {"uuid": "..."}
# Poll for the result
curl -X POST https://api.watermarkremoverai.com/v1/watermark/results/ \
-d "uuid=..."
import requests
API = "https://api.watermarkremoverai.com/v1/watermark"
headers = {"Authorization": "YOUR_API_TOKEN"}
with open("video.mp4", "rb") as f:
job = requests.post(API + "/remove-video/",
headers=headers,
files={"files": f},
data={"auto_detect": "true"}).json()
result = requests.post(API + "/results/",
data={"uuid": job["uuid"]}).json()
print(result)
Prefer a manual mask? Send mask=@mask.png instead of auto_detect, or pass mask_x / mask_y / mask_width / mask_height (add mask_is_percentage=true for percentages). Optional dilation=5 grows the masked area.
Ready to clean it up?
Upload, mark the area, and download the clean result. No account needed to try it free.
Open the Tool