Scene search and scene tagger search not finding matches

I want to know why the scraper doesn’t work when I use it directly, but I can find videos by clicking search. This is clearly a bug, because 12 out of the 56 videos of the performers in my collection can’t be scraped out. This bug has a serious impact.

I also found that sometimes, simply adding “xxx.mp4” to the filename doesn’t work for the scraper; I have to remove the file format.

I installed a plugin that displays all files whose titles are filenames, which caused part of the Stash scraper to malfunction.

I also found that sometimes, simply adding “xxx.mp4” to the filename doesn’t work for the scraper; I have to remove the file format.

I installed a plugin that displays all files whose titles are filenames, which caused part of the Stash scraper to malfunction.

I want to know the name of this plugin, whether to remove it, or whether the scraper needs an update.

Please open the image hosting link to view the details.

StashDB works off phashes What’s a pHash? | StashDB Guidelines

if your files are malformed or have been mis-identified and then uploaded by other users, you can get mismatches or in some cases no matches at all. Searching by name is an alternative, and .mp4 is not automatically stripped by the search function.

(post deleted by author)

No, it gets even more ridiculous. The videos are included on Stash, but scraping doesn’t work. Even using the search function, you can’t find them; you can only manually enter the ID.
You can try it yourself if you don’t believe it.

Title:

Step Sis Are you Сrazy? You want me to lick it?..

db:

In scene tagger you can automatically strip file extensions with simple regex. Under settings > blacklist.

Use StashID for exact matches.

This is a limitation of stash-box. StashDB instance simply doesn’t return that scene because of how it parses the query. You can see that by doing the same search on StashDB instance directly https://stashdb.org/search/Step%20Sis%20Are%20you%20Сrazy?%20You%20want%20me%20to%20lick%20it?...

Searching in Stash is meant to work with keywords not exact scene title as it queries more than just title.

Query

query ScrapeSingleScene(
  $source: ScraperSourceInput!
  $input: ScrapeSingleSceneInput!
) {
  scrapeSingleScene(source: $source, input: $input) {
    ...ScrapedSceneData
    __typename
  }
}

fragment ScrapedSceneData on ScrapedScene {
  title
  code
  details
  director
  urls
  date
  image
  remote_site_id
  file {
    size
    duration
    video_codec
    audio_codec
    width
    height
    framerate
    bitrate
    __typename
  }
  studio {
    ...ScrapedSceneStudioData
    __typename
  }
  tags {
    ...ScrapedSceneTagData
    __typename
  }
  performers {
    ...ScrapedScenePerformerData
    __typename
  }
  groups {
    ...ScrapedSceneGroupData
    __typename
  }
  fingerprints {
    hash
    algorithm
    duration
    __typename
  }
  __typename
}

fragment ScrapedSceneStudioData on ScrapedStudio {
  stored_id
  name
  urls
  parent {
    stored_id
    name
    urls
    image
    details
    aliases
    tags {
      ...ScrapedSceneTagData
      __typename
    }
    remote_site_id
    __typename
  }
  image
  details
  aliases
  tags {
    ...ScrapedSceneTagData
    __typename
  }
  remote_site_id
  __typename
}

fragment ScrapedSceneTagData on ScrapedTag {
  stored_id
  name
  description
  alias_list
  parent {
    stored_id
    name
    description
    __typename
  }
  remote_site_id
  __typename
}

fragment ScrapedScenePerformerData on ScrapedPerformer {
  stored_id
  name
  disambiguation
  gender
  urls
  birthdate
  ethnicity
  country
  eye_color
  height
  measurements
  fake_tits
  penis_length
  circumcised
  career_start
  career_end
  tattoos
  piercings
  aliases
  tags {
    ...ScrapedSceneTagData
    __typename
  }
  remote_site_id
  images
  details
  death_date
  hair_color
  weight
  __typename
}

fragment ScrapedSceneGroupData on ScrapedGroup {
  stored_id
  name
  aliases
  duration
  date
  rating
  director
  urls
  synopsis
  front_image
  back_image
  studio {
    ...ScrapedGroupStudioData
    __typename
  }
  tags {
    ...ScrapedSceneTagData
    __typename
  }
  __typename
}

fragment ScrapedGroupStudioData on ScrapedStudio {
  stored_id
  name
  urls
  __typename
}

Variables

{
  "source": {
    "stash_box_endpoint": "https://stashdb.org/graphql"
  },
  "input": {
    "query": "Step Sis Are you Сrazy? You want me to lick it?.."
  }
}

(post deleted by author)

Well, this seems obviously strange to me. Just pick any title.

Nobody Loves Me Like Sis Loves Me: Cheating Ex Gets Instant Karma

Can search

Step Sis Are you Сrazy? You want me to lick it?..

If a title cannot be scraped or searched, it will be considered not included in the database.

Actually, rather than excluding file names, I would prefer to delete this plugin that shows all video titles as the original files, but I can’t find it.