Hi. I want to import my works from civit.ai with the script, but after 10 uploads I'm at the limit, and I can't upload anything else...and I need to upload 500 works :(
wat the limit?
And how to delete post? wrong metadata going into tags :/
Updated
Posted under General
Hi. I want to import my works from civit.ai with the script, but after 10 uploads I'm at the limit, and I can't upload anything else...and I need to upload 500 works :(
wat the limit?
And how to delete post? wrong metadata going into tags :/
Updated
yakudzaky said:
Hi. I want to import my works from civit.ai with the script, but after 10 uploads I'm at the limit, and I can't upload anything else...and I need to upload 500 works :(
wat the limit?
Your limit is based on the amount of uploads you have.
The more uploads you have means your upload limit will increase.
The more deleted post you have means your upload limit will decrease.
Your upload limit will ratio over time depending on your uploads.
Please take a moment to look at our visual guidelines:
https://e6ai.net/wiki_pages/753
Also take a look at our:
https://e6ai.net/wiki_pages/uploading_guidelines#quality
These will help with avoiding content that isn't allowed here. Hope this helps.
If you have any other questions, feel free to ask here.
angry_puppy said:
Your limit is based on the amount of uploads you have.The more uploads you have means your upload limit will increase.
The more deleted post you have means your upload limit will decrease.
Your upload limit will ratio over time depending on your uploads.Please take a moment to look at our visual guidelines:
https://e6ai.net/wiki_pages/753Also take a look at our:
https://e6ai.net/wiki_pages/uploading_guidelines#qualityThese will help with avoiding content that isn't allowed here. Hope this helps.
If you are having issues with a post. Simply click on flag and a janitor will take it down. I will fix the tags.
thanks. Export - Import script written by Grok3... so have some troubles with Exporting Tags from civit ai.. i will fix it. and filter not-furry content and DO not post rules
angry_puppy said:
If you have any other questions, feel free to ask here.
Okay. It's 4:00 in the morning, I'm not thinking straight, so we'll do it tomorrow. I'm gonna start a ton of content, and I'm not gonna stop :D
yakudzaky said:
Okay. It's 4:00 in the morning, I'm not thinking straight, so we'll do it tomorrow. I'm gonna start a ton of content, and I'm not gonna stop :D
Looking at the uploads you posted so far, you are definitely not tagging your own content properly... I know it's tempting to automatically tag content, but most (if not all) of civit.ai tags are pretty much irrelevent to this site. All the quality tags (masterpiece, 8k, high-definition, etc.) are NOT to be tagged, as it is subjective; aside from a few established tags like photorealistic, traditional_media_(artwork), and a few more. A resolution tag is automatically applied based on the resolution you upload.
You should tag at the MINIMUM:
- How many characters: solo, duo, trio, group
- Species: As specific as possible, implications will also add race and group of animal. lynx, snow_leopard, lion, wolf
- Form: feral, anthro, human, humanoid, etc.
- Gender: male, female, intersex, genomorph, andromorph, ambiguous_gender, crossgender
- Rating: rating:safe, rating:questionable, rating:explicit
A few more general tags that describes what you see; character features, objects, environment, fetishes, etc.
The majority of users here take the effort to manually tag the content they upload here, and it is expected that you also should make some effort out of respect for other users here, so that it is more easy for everyone to filter in and filter out the content they are looking for or that they want to avoid. At the very least if you want to automate everything, you should learn to use good automatic taggers like RedRocket tagger or similar project, please. Somebody has already mentioned a guide you can use for automatic tagging in topic #399. If the tag doesn't exist in the database yet, you should probably not use it for uploading unless you already have a bit of experience with the "Tag what you see" policy of websites like this one or e621.
Updated
scout said:
Looking at the uploads you posted so far, you are definitely not tagging your own content properly... I know it's tempting to automatically tag content, but most (if not all) of civit.ai tags are pretty much irrelevent to this site. All the quality tags (masterpiece, 8k, high-definition, etc.) are NOT to be tagged, as it is subjective; aside from a few established tags like photorealistic, traditional_media_(artwork), and a few more. A resolution tag is automatically applied based on the resolution you upload.You should tag at the MINIMUM:
- How many characters: solo, duo, trio, group
- Species: As specific as possible, implications will also add race and group of animal. lynx, snow_leopard, lion, wolf
- Form: feral, anthro, human, humanoid, etc.
- Gender: male, female, intersex, genomorph, andromorph, ambiguous_gender, crossgender
- Rating: rating:safe, rating:questionable, rating:explicit
A few more general tags that describes what you see; character features, objects, environment, fetishes, etc.The majority of users here take the effort to manually tag the content they upload here, and it is expected that you also should make some effort out of respect for other users here, so that it is more easy for everyone to filter in and filter out the content they are looking for or that they want to avoid. At the very least if you want to automate everything, you should learn to use good automatic taggers like RedRocket tagger or similar project, please. Somebody has already mentioned a guide you can use for automatic tagging in topic #399. If the tag doesn't exist in the database yet, you should probably not use it for uploading unless you already have a bit of experience with the "Tag what you see" policy of websites like this one or e621.
thanks. it will help!
but what to do with animation? webm format itself causes compression artifacts :( and loses heavily to mp4, despite the small difference in file weight
eh... webm loses too much quality :(
yakudzaky said:
eh... webm loses too much quality :(
if the way you are encoding is very shitty
yeah it will lose a lot of quality, usually encoding stuff to webm is ALWAYS manual as every video is different and needs different settings
however you still can do a simple prompt on ffmpeg to encode stuff as "it works"
you do not need 8k420fps
this is my own personal prompt i use to encode mp4 to webm
ffmpeg -i input.mp4 -c:v libvpx-vp9 -pix_fmt rgba -crf 16 -b:v 0 -b:a 128K converted_video.webm -y
and this one for mp4 to gif
(this one is to make a palette first)
ffmpeg -i input.mp4 -filter_complex "[0:v] palettegen" palette.png -y
(this one is to use palette and mp4 to make gif
ffmpeg -i input.mp4 -i palette.png -filter_complex "[0:v][1:v] paletteuse" -f gif converted.gif
i have all of these in .bat because no need to fucking copy and paste the same thing all over again
flowersylveon said:
if the way you are encoding is very shitty
yeah it will lose a lot of quality, usually encoding stuff to webm is ALWAYS manual as every video is different and needs different settings
however you still can do a simple prompt on ffmpeg to encode stuff as "it works"
you do not need 8k420fpsthis is my own personal prompt i use to encode mp4 to webm
ffmpeg -i input.mp4 -c:v libvpx-vp9 -pix_fmt rgba -crf 16 -b:v 0 -b:a 128K converted_video.webm -yand this one for mp4 to gif
(this one is to make a palette first)ffmpeg -i input.mp4 -filter_complex "[0:v] palettegen" palette.png -y(this one is to use palette and mp4 to make gif
ffmpeg -i input.mp4 -i palette.png -filter_complex "[0:v][1:v] paletteuse" -f gif converted.gifi have all of these in .bat because no need to fucking copy and paste the same thing all over again
Yes problem solved! thanks !