mmpx12 / twitter-media-downloader

twmd: CLI/GUI Apiless twitter downlaoder. Download medias from single tweet or a whole profile.
602 stars 70 forks source link

Download 300 tweets from @user #17

Closed Villelmo closed 1 year ago

Villelmo commented 1 year ago

Execute the following command:

/twmd -u user -o ~/Desktop/ -a -n 30000

But only download five photo

What happen?

mmpx12 commented 1 year ago

What is the username of the profile? Limit seems to be around 600/700 tweets now, and no more 3000 (i also update twiterscrapper, you should have a little bit more tweets now). Also (writen in the readme):

If the tweet doesn't contain a photo or video nothing will be downloaded but it will count towards the 300.

Villelmo commented 1 year ago

What is the username of the profile? Limit seems to be around 600/700 tweets now, and no more 3000 (i also update twiterscrapper, you should have a little bit more tweets now). Also (writen in the readme):

@Reuters

Adjust the value but still download the same amount.

mmpx12 commented 1 year ago

@Villelmo which version of twmd are you using?

With version 1.0.6 and 1.0.8 i have around 600 pics and 60 videos.

twmd -u Reuters -o media -a -n 3000

If this command with the latest version (1.0.8), only give you 5 pictures, check if you have enough disk space, or if you massed download before @Reuteurs, you might be block for a while, and in this case try from a different ip or with a proxy.

Villelmo commented 1 year ago

version: 1.0.6

I have 734.56 GB

mmpx12 commented 1 year ago

i'm not able to reproduce your issue. Can you provide a dockerfile in which you reproduce the issue?

Villelmo commented 1 year ago

Where is the dockerfile?.

mmpx12 commented 1 year ago

@Villelmo

Dockerfile:

FROM archlinux:latest
RUN pacman -Syu --noconfirm wget
RUN wget "https://github.com/mmpx12/twitter-media-downloader/releases/download/v1.0.8/twitter-media-downloader-v1.0.8-linux-amd64.tar.gz" && \
    tar xvf twitter-media-downloader-v1.0.8-linux-amd64.tar.gz && \
    mv twitter-media-downloader twmd && \
    chmod +x twmd

then run:

docker build -t twmd .
mkdir media || : 
docker run --rm -v ./media:/media twmd ./twmd -u Reuters -o media -a -n 300