Trouble downloading!

Post Reply
tuxedomarty
Joined: Sun Dec 19, 2010 5:45 pm
Org Profile

Trouble downloading!

Post by tuxedomarty » Wed Nov 12, 2025 5:00 pm

I am trying to download someone's video because there is something I would like to say about it, but the download never automatically starts, and the link that appears after 10 seconds doesn't work either.

User avatar
dokidoki
c0d3 m0nk3y
Joined: Tue Dec 19, 2000 7:42 pm
Status: BLEEP BLOOP!
Location: doki doki space
Contact:
Org Profile

Re: Trouble downloading!

Post by dokidoki » Wed Nov 12, 2025 6:33 pm

The problem is that the Org is serving pages over https, but is giving http links for video downloads. Chrome (maybe other browsers too, not sure) doesn't like it when secure pages serve up insecure content. One thing you can do is right-click on the download link, copy the address, paste it into a new tab, and hit Enter.
Image Image Image
"Comedy is a dying breed." -- kisanzi // "Comedy. Serious business." -- dokidoki

CodeKrash
Joined: Thu May 27, 2010 7:02 pm
Org Profile

Re: Trouble downloading!

Post by CodeKrash » Sat Jan 31, 2026 4:48 pm

It would be pretty easy to make a tampermonkey script to rewrite the URL so the page works properly.

CodeKrash
Joined: Thu May 27, 2010 7:02 pm
Org Profile

Re: Trouble downloading!

Post by CodeKrash » Sat Jan 31, 2026 4:56 pm

here ya go! install tampermonkey browser extension, add this to it:

Code: Select all

// ==UserScript==
// @name         a-m-v.org - Force HTTPS on download link
// @match        *://*.animemusicvideos.org/members/mydownloads.php*
// @match        *://*.animemusicvideos.org/members/localdownload*
// @match        *://*.animemusicvideos.org/pancake/dl/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    function fixLinks() {
        document.querySelectorAll('a.textLinkOne[href^="http://"]').forEach(a => {
            a.href = a.href.replace(/^http:\/\//i, 'https://');
        });
    }

    // Run once
    fixLinks();

    // Watch for the delayed link appearing
    const observer = new MutationObserver(fixLinks);
    observer.observe(document.body, { childList: true, subtree: true });
})();

Icedomain
Joined: Thu Aug 17, 2006 11:39 am
Contact:
Org Profile

Re: Trouble downloading!

Post by Icedomain » Fri May 15, 2026 9:27 pm

When I try to download http://gyopi.animemusicvideos.org/panca ... isanzi.avi (even after changing it to https) the video says it downloads, but the video is only a fraction of a second of the start instead of the complete video. Tried on Chrome, AdBlock Browser, and another computer's Firefox, but unable to get the video. (Preview plays fine, just can't download the Local.)

User avatar
Kireblue
Forum Admin
Joined: Tue Mar 06, 2007 10:44 pm
Location: Atlanta, Georgia
Contact:
Org Profile

Re: Trouble downloading!

Post by Kireblue » Fri May 15, 2026 11:41 pm

Icedomain wrote:
Fri May 15, 2026 9:27 pm
When I try to download http://gyopi.animemusicvideos.org/panca ... isanzi.avi (even after changing it to https) the video says it downloads, but the video is only a fraction of a second of the start instead of the complete video. Tried on Chrome, AdBlock Browser, and another computer's Firefox, but unable to get the video. (Preview plays fine, just can't download the Local.)
worked fine for me when I changed it to https
Here you go https://drive.google.com/file/d/1khdNgG ... sp=sharing

Post Reply

Return to “Site Help & Feedback”