-
-
Notifications
You must be signed in to change notification settings - Fork 975
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Organizing Instagram tagged posts #3107
Comments
this is my tagged config:
|
In your case you'd have to use What you'd really need is a new metadata field for "coauthors" which gallery-dl does not yet extract, although that would also be a list, or something similar to the "coauthor_producers": [
{
"pk": "212047764",
"username": "akunohako",
"full_name": "Aku",
"is_private": false,
"profile_pic_url": "https://instagram.ftxl3-2.fna.fbcdn.net/v/t51.2885-19/274583097_482362060206481_1212815530004034262_n.jpg?stp=dst-jpg_s150x150&_nc_ht=instagram.ftxl3-2.fna.fbcdn.net&_nc_cat=101&_nc_ohc=U4iWwyTFtiAAX94e6fb&edm=ALQROFkBAAAA&ccb=7-5&oh=00_AT-PpOkf42f6R3iP_gbX_8eWDN5pDE5qrtVz169XqWOMFg&oe=635E1CCD&_nc_sid=30a2ef",
"profile_pic_id": "2780925354380274334_212047764",
"is_verified": false
}
], (unfiltered API data from |
Some workaround I've been using is using a wrapper script inside my Instagram folder with
directory like this:
and then rename the files replacing |
As I said in #3107 (comment), I'll eventually redo the user(name) fields for Instagram and handle them like it is currently done for Twitter, i.e. |
at the moment only for URLs that need to translate user name to ID
Yes, this feature would make scraping much easier. Currently, I'm manually moving the tagged files to the correct folder |
In case anyone else stumbles across the same problem. I solved it as follows (using akunohako as an example):
Since I run gallery-dl as a subprocess anyway, I can set the destination parameter dynamically (matching the profile name) |
I'm trying to make gallery-dl download a tagged post inside the folder of the tagged user when scraping a profile. For example, when scraping this profile https://www.instagram.com/akunohako/ there's this post https://www.instagram.com/p/Cjs36PIjFWP/ which was made by a different user and I want to download it inside the
akunohako
folder instead of thexenon_ne
folder, same for the filename as if the post were created byakunohako
. I've tried withand
but can't get it to work. What's the proper way?
The text was updated successfully, but these errors were encountered: