Fixes:
- Category add crash fix
- Database creation/loading issues fix (hopefully)
- Middle click support for all scenes view
- Unlocked SQL box for all scenes view
- Fixed some sql-auto generation when selecting multiples of the same tag type
- Tooltips for scenes in all scenes view
- Random/next now scrolls to and selects the chosen scene in all scenes view
The automatic tagging feature isn’t working for me. I have a number oif videos tagged with windows tagged and none of those come in when I import then and no new categories get created at all. How does this feature work?
LikeLike
when you import a scene, it’s path is scanned for tags that exist within PG already. any tags that match are automatically applied.
LikeLike
So like in the folder names?
LikeLike
yes. if the path for a scene “c:\videos\lesbian\myvid.mp4” and you have a tag “lesbian” then lesbian will be auto applied to myvid.mp4
LikeLike
Do you have any plans to import/modify windows tags?
LikeLike
by tags, you mean videofile.mp4/properties/details tags ?
i’ve never really looked at it before, what do you use it for
LikeLike
Ya, Its what I was using for organization previosly so things like scene types sites and star names.
LikeLike
Today I plugin my harddrive and drive letter change from F to H so all of my videos stop working.
I have around 1000 videos. I have rescan but that did not make any different.
Rather then doing on Drive letter can you it on HD e.g. \\udisk0\p1\
LikeLike
Get a hard drive partitioning program and rename the drives, it was the easiest fix ever.
LikeLike
you can change a drives letter through windows, no need for 3rd party
LikeLike
Anyway to hide all watched movies/scenes in PG
LikeLike
It’s been a few months since the last update. Can we expect anything soon?
LikeLike
I have something in the works but it’s going to be a while.
LikeLike
Do you have a working link for the original PG, mine stopped working and the website is no longer hosting your file.
LikeLike
Or the link is no longer working
LikeLike
I have been looking for something exactly like this! Slightly unstable but its in dev so not really a problem. Very good job! Thank you thank you thank you
LikeLike
A tool tip asking if you want to remove a scene. I have accidently removed more scenes then I can count.
LikeLike
I had to go back to the old version because it works without any problems and is more intuitive. This version crashes when I double click a video from search.
LikeLike
Hi! I have been using PG for a while now (using latest version already), and it’s worked great for me (disregarding minor bugs). I just had to format the HDD were I had all contents (bad sectors etc). What I did was backup the whole thing and afterwards I copied it all back. Now PG won’t open the scenes!!! I swear I thoroughly checked the scenes’ full route and it has not changed a bit. I tried manually re-locating a couple of them and it worked, but it would be tremendously painful to have to do the same thing for all of them…. can you give me a tip on how to continue or what to look for? I already tried inspecting the scenes using sqlite, but I cannot tell a single difference between a good/bad scene… any help will be greatly appreciated!!!
LikeLike
Kind of a random question, but when you do a search for a category or pornstar image (presumably, using the custom google search), what is the query you use? It’s eerily acurate, and I find myself wanting to get sources for some of the category images it pulls. I’ve tried just doing verbatim searches, but that doesn’t quite seem to do the trick, so I’m thinking you must be appending certain words or phrases, and I’m wondering what they are.
LikeLike
I have finished entering all my scenes. I am now working on Star pictures ans data. One problem I am running into is 2 stars with similar names being grouped together. For example I have Mai and with her I find Amia’s scenes. Is there a fix for this? A fix for duplicate stars and duplicate catagories would be handy (an extra app maybe?) Have you considered a scraper for pornstar bio’s?
LikeLike
Can you add the option to disable the visual menu effects (transitions?)
Thanks!
LikeLike
Feature Suggestions. 1. When mousing over a scene and the picture pops out also show details so you don’t have to open scene.
Custom Playlist and playlist filters. An easy way to combine or seperate.
LikeLike
I really wish I could delete some of my posts. Before I assume I can’t do something with PG. I realized I should ask first. So here goes my question, If I do a search for red heads, is there a way to make a combined playlist of all their scenes?
LikeLike
I am having a real shitty day and hope someone can help me. I went out for a while and when I returned home my computer was shut down. Must have had an update. Everything worked fined untill I tried to open Porganizer. Nothing happened,. I tried restarting that didn’t work. I tried shutting downfor 20 minutes nogood. I had kept the zip file and tried that again no good. So I deleted everything but the database. Used the link here to go to mega and downloaded the files. New problem, I have no idea where mega put the files. I downloaded through browser, so I thought it would go to that default folder. I have used search on the computer didn’t work and tried opening all possable download folders. Didn’t find the files. I have changed the download folder. Nothing worked. Does anyone know where mega saves to? Or any alternatives.
LikeLike
Got it to work using the Firefox extension. Everyone make sure you regularly back up your database.
LikeLike
I need some help. I have about 200 videos that don’t have complete titles visable. The information is available if I play the video, but not until 15-20 seconds in. There is 10 seconds of the website name then a 10 second countdown. I would rather not have to watch this, but I need the Title and star for PG. Any suggestions on how to easily skip 10 seconds into a video using VLC.
LikeLike
*Bug Report* 1. Adding new scenes in bunches, sometimes they do not show up anywhere but all scenes search. IE not in New or in Untagged. Bunches between to – 50.
2. Tagged scenes showing up in untagged. These scenes have catagory star and website.
LikeLike
Any chance for a DB cleanup function?
I had some issues with pornganizer not deleting a file when deleting a scene (easily fixed by re-scanning) but I also looks like there are instances where the file got deleted but the scene still exists (I did some cleanup and now occasionally stumble upon scenes where playback just fails without error).
Neat tool so far, thanks for your work.
LikeLike
Can someone help me with the sql-search. I try to find scenes which have 2 tags (asian AND anal for example). I am just not able to find the right term. Either it shows me scenes with one OR the other tag or it shows no scene at all.
LikeLike
The SQL should get auto generated properly if you just use the filters on the left (with the most updated version)
SELECT * FROM Scenes,Categories, SceneCategories WHERE Categories.Name IN (‘Anal’,’Asian’) AND Scenes.Id = SceneCategories.SceneId AND Categories.Id = SceneCategories.CategoryId ORDER BY Name ASC
Remember you can always use the SQLiteBrowser to manually navigate the database, as well as test SQL’s outside of PG.
http://sqlitebrowser.org/
LikeLike
Thing is, as it works right now, that exact query you posted (which is what the app auto-generates) selects any scenes that fall into either the Asian category OR the Anal category.
LikeLike
Hmm. Try this.
SELECT *
FROM Scenes,Categories, SceneCategories
WHERE Categories.Name IN (“Anal”,”Asian”)
AND Scenes.Id = SceneCategories.SceneId
AND Categories.Id = SceneCategories.CategoryId
GROUP BY Scenes.Id
HAVING COUNT(DISTINCT SceneCategories.CategoryId) = 2
ORDER BY Name ASC
LikeLike
exactly this is my problem. I think the query is not executed correctly
LikeLike
Do you have any plans to go to Beta soon, or is there still time in Alpha? And when can we expect the next upgrade of any type?
LikeLike
I keep getting this message “Windows cannot access the specified device, path or files. You may not have the appropriate permission to access the item”
I have full permission on the folder and also have download the new copy but still same problem.
I have windows 10 64 Bites Professional
LikeLike
The path to the video is listed and clickable in the scene details view.
if you click the link, does it open explorer to the file? that needs to work.
LikeLike
I dont know what you mean. I try with new database and i getting same message.
LikeLike
Any help on this. I still keep getting same message. I have download new copy save it on to C drive and i get same message.
LikeLike
When I open the PornganizerV2 i get this message āWindows cannot access the specified device, path or files. You may not have the appropriate permission to access the itemā
I cant get into the program or do anything.
I’m using windows 10
LikeLike
if its happening after a redownload, it’s probably because of a bad config file in your %appdata%/roaming or local directory? i am just guessing.
LikeLike
Do you know where I can found this out.
This start happening after downlaod the latest version. I cant even run the old version anymore.
LikeLike
I have just added 500 scenes of 1 star. Her name is added automatically . But I need to add category which is the same for most of the scenes. Is there a shortcut or way to auto fill?
LikeLike
you can multi-select several scenes and right click to get a tag screen that will tag all selected scenes
LikeLike
I cant seem to delete files using the delete button. It give a notification that 0 scenes were deleted and the file remains on the system. I have tried running the program as administrator to no avail.
LikeLike
Is this happening in scenes, all then Try refreshing the page. Or leaveeeeeeee and come back.
LikeLike
yeah, it’s glitchy. i’ll look into it.
LikeLike
It seems that I cannot mark several scenes and tag them at the same time (i.e one movies is in 5 files, I have to open every file separately to tag with movie title). Is this correct? I can mark several files by holding down shift but when i right click to tag only one file will be tagged.
LikeLike
At this time every file must be marked seperately.
LikeLike
I have a question. I have finished importing and tagging over 8000 scenes. The today I found “usenet” and am downloading more. I keep all my stuff organized in folders. I have new stuff going into used folders. I keep making subfolders by date but this is cumbersome. So what is the best way to add this new content to Porganizer without readding the whole folder or having a ton of subfolders?I am not just asking for now but this may be something to contemplate in later versions/
LikeLike
sort the folder by “date added” and then just add the most recent content to PG
LikeLike
Can you please add sorting with stars for video count.
LikeLike
Bug Report: All scenes search.
Searching “on Date” never works.
Lately searching “after date” works even for scenes added on current date.
Today nothing works when searching by date using On or After.
If I go back to after 7/8 I finally get results.786 scenes including the 21 I added today.
I like to add details for newly added content from the search screen.
Another bug report
PG counts “spaces” after words as characters. So if you have Feet and then type Feet you get a second category.
LikeLike
Is there somewhere i can find a list of known bugs? so that i know what to report/not report. Thanks
LikeLike
Can you make an easier/quicker way to rename files from the “all” tab? Also, when you do rename files via details>rename the list doesnt update unless you hit search again. Thanks. Also a problem i also had with version 1, when my files contain dashes or full stops, they dont get added to the file name on the pornganizer app.
LikeLike
I would suggest refresh button on any screen where changes can be made.
LikeLike
I also suggest that any page that you can play multiple videos from have a playlist button. I did a search in all scenes got 29 scenes back but could only play one at a time. Also the next button, I play my videos in VLC full screen so I can’t use it. Unless a minimize VLC. This is only a problem in random scene otherwise the VLC next button works.
LikeLike
Bug Report.
When adding details to a new set of scenes; If the Star or Category already exists I need to add it to each scene. (information is in title). If I add a brand new category or star it will continue to show up in the following scenes, Sometimes as a suggestion (in box) and sometimes added (under box). I would like any fix that cuts down on my typing.
LikeLike
Any updates expected soon?
I still have the following issues:
– App crashing when opening two videos at once
– Thumbnails have wrong aspect ratio
– Double Star entries when I add a new Star
– Issues with multi select items
– Random doesn’t always properly jump to item (it does jump, but does not select)
Request:
– Right click: fetch image from google (if API key is successfully provided)
LikeLike
Bug Report
1. After making changes to a category, renaming for example, the next time you add that category to a scene PG crashes.
2. After PG crashes for any reason, the first scene you try to add categories to they show up as blank. Star and website behave normally.
LikeLike
I have a feature request for you.
I’m running your software on an old netbook running win7, is there any chance you could add in some options to disable a lot of the visual menu transitions and effects?
I think that’s the main resource eater that is causing lag, and it’d be fantastic if I could disable it in the settings.
LikeLike
agreed.
LikeLike
I would just like to follow up with a little more info; This old netbook I’m running while starved for resources to display the visual effects in PG, has a hardware video decoder that does 1080p without any hesitations; Hence why I’m still using it.
LikeLike
OK I know I am a pain in the ass. I am disabled and home all day fooling around with Porganizer. My collection is of about 10,000 scenes (clips mostly) so there is little metedata. So I have to ender the data for each scene by hand. And as you may have noticed my hands tremor effecting my typing. So please realize I am trying to give helpful criticism. Your product is the best of it’s kind that I can find. But what would really make it awesome is batch adding of catagories. I am in the midst of adding a thousand scenes that all have 2 catagories the same. The 1-4 more that change. Just adding those 2 would save me hours.
LikeLike
Looking good so far. But one issue I have is that when adding pictures to the Stars pages, they get stretched out of shape.
LikeLike
When searching scenes by date, there is no way to clear the dates field so you can do a different type of search.
LikeLike
I am finding a very irritating to me problem. Here is an example. I added the Star; Raquel Diamond and her scenes a month or so ago. The other day I added the Star; Diamond and her scenes. And when looking in Diamonds folder I found Raquel Diamonds scenes. Tonight I entered Ashleigh, and Ashleigh Doll. Now I find Ashleigh Doll’s scenes inside Ashleigh’s folder( I know they are not really folder but I use folder for a lack of a better term). So I updated the info for all of those scenes. But none of them have moved to the correct folder. The reason this is so frustrating is that PG is inconsistent when adding detail. Sometimes the input field is empty, sometimes it is fill and sometimes the field is filled in. I have added scenes and let them sit for days and nothing happens. All my scenes contain the star name. Also PG will parse words wrongly. For example It takes the word Stepmom and adds it to the category PE. If the program is unable to add fields correctly then let me do it. Although I could use the help. But a check with me, or suggestion function would be nice before adding more details automatically.
LikeLike
As a temporary solution I will be adding a sir name to all one name star
LikeLike
Abetter example of wrongly parsed words the title has “Glasses” in it and PG parses “ass” I have both catagories but you must admit they are quite diffrent
LikeLike
I would like to see a possibility to shut off the automatic parsing. Just wanna import new scenes, go into untagged scenes and tag them myself
LikeLike
that option exists in settings/general
LikeLike
oh.. thx for the hint
LikeLike
if you doubleclick a scene to watch it, close the player and doubleclick another scene the program crashes. You first have to click once on another scene, click again the first scene to unselect it and then you can go on. It seems like the program doesnt automaticaly unselects the first scene
LikeLike
New update working well so far. I am adding a bunch of British porn. I am classifying the actresses as European. As that is my only choice. But I just realized there are no search choices for the star attributes.
LikeLike
Something strange just happened. Instead of adding one small folder at a time I added 500 scenes. They all showed up as errors. So I tried just one sub folder and it came back as duplicates. I did not see the scenes in “all scenes” I shut down and restarted PG and ALL the scenes are in all scenes.
LikeLike
I am so sorry. I was very wrong. All the search features for stars I said didn’y exist, do exist. I am sorry. If you click to the right of the search box diffrent types of queries are there.
LikeLike
New update! Nice. Love the work you’re doing. Thanks!
LikeLike