AutoHotkey Community

It is currently May 27th, 2012, 4:35 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 98 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next
Author Message
PostPosted: December 10th, 2009, 6:03 pm 
Offline

Joined: February 11th, 2009, 2:23 pm
Posts: 142
Location: India
thanks for this AND,

http://img101.imageshack.us/img101/9913/40276695.jpg
i must say that you've got a very nice desktop theme!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 12th, 2010, 7:51 pm 
Offline

Joined: September 10th, 2009, 5:54 pm
Posts: 203
I'm still looking forward to see new needed features such as:

-Rescan on launch
-Group similar entries, like series
-Support image files and Video_ts folders
-To be resizable and to remember size and position
-Delete unneeded iMDB part

My opinion though :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 12th, 2010, 10:26 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
sorry but i have kinda stopped working on this project

at this point im only making some small changes now and then...mostly on the appearance and im not planing on releasing another version anytime soon

Gauss wrote:
I'm still looking forward to see new needed features such as:

-Rescan on launch i still havent figured out the best way to do this..as i said before im gonna need some help with it
-Group similar entries, like series dont know how to do this too...listview isnt exactly the best thing and i dont know if you can do that...subitems like this : http://www.codeproject.com/KB/combobox/ ... ergrid.gif would be nice
-Support image files and Video_ts folders video_ts folders could be done but why images files?
-To be resizable and to remember size and position its already resizable but remembering position is not very important...might add it thought its easily done
-Delete unneeded iMDB part sorry but im not removing this one...imdb is very important on a movie database and i like quickly looking up info about the movie so its not going anywhere :)

My opinion though :)


i was also thinking about replacing listview with ragrid http://www.autohotkey.com/forum/viewtopic.php?t=19253
but dont know yet

i have said this before but i dont have the time and coding skill to do some of the stuff thats been asked

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 3rd, 2010, 11:05 am 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
so i started working on this again lately and heres a sneak peak of the next version :

Image

i got an api key from http://www.themoviedb.org/ and info about the movies is also downloaded from there and from imdb automatically

i have added most of the stuff thats been asked
the only thing im still working on is rescan paths on startup
i will release it as soon as im finished but i still dont know exactly how to do it
so any help would be much appreciated

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Last edited by Delusion on March 3rd, 2010, 11:11 am, edited 2 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 3rd, 2010, 11:09 am 
Offline

Joined: September 10th, 2009, 5:54 pm
Posts: 203
Are you going to support all formats?
HD
ts
MKV
Image files (.iso .img.. etc),
VIDEO_TS

...etc


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 3rd, 2010, 12:08 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
Gauss wrote:
Are you going to support all formats?
HD
ts
MKV
Image files (.iso .img.. etc),
VIDEO_TS

...etc


at the moment i can only support single files
i dont have any video_ts,hd,ts or image file movies because most of my movies are single avi files so i can not even test this
mkv has been added already..i only needed to change 3 lines for that

but video_ts i usually a folder containing many files.the video files extension is .vob if im right?

i could add support for .vob if its a single file

i am still doing some changes on that part too so maybe i can do it so that you can select a folder too instead of only a file...but it will launch the folder on doubleclick and not the movie
i will see if there is a way to launch video_ts folders with a media player

i dont get how you want it to work with image files.a little more info would be nice
you want it to auto mount the image file on doubleclick and start the movie?

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Report this post
Top
 Profile  
Reply with quote  
PostPosted: April 9th, 2010, 3:20 pm 
Offline

Joined: April 9th, 2010, 2:59 pm
Posts: 5
I pop my head into this thread every once and a while. I've been living on v.2.1.5 for a while. As I mentioned in an earlier post, I love it but there was a definite need for a rescan feature. So, I tossed in a few lines of code to add another feature to the Right-click menu: "Auto Refresh Entries from Folder".

This is not as automatic as a watched folder or auto-refresh on startup, but it's a step in the right direction. Every once in a while, when I know I've made changes to my movies directory, I just select this option and it does a full rescan. It basically automates the steps of deleting the database and readding the folder.

I had to hard-code my folder as a constant in the code, though. It just takes a second at the beginning. So, as long as you have autohotkey installed, this may be of use.

Step #1: Added the following to the LISTVIEW RIGHTCLICK MENU (near the top of the script):
Code:
Menu("RightClickMenu","Add","Auto Refresh Entries from Folder `t (Beta)","KudosADDMoviesFromFolder"),


So... my entire LISTVIEW RIGHTCLICK FUNCTION reads as follows:
Code:
;________MAIN GUI - LISTVIEW RIGHTCLICK MENU___________|

GuiContextMenu:
IF (A_GuiControl = "$LIST") {
   IF A_GuiControlEvent = RightClick
   {
     Menu("RightClickMenu","DeleteAll")
     Menu("RightClickMenu","Add","Add New Entry `t Ctrl+A","ADDGUI"), Menu("RightClickMenu","Add","Auto Add Entries from Folder `t (Beta)","ADDMoviesFromFolder"), Menu("RightClickMenu","Add","Auto Refresh Entries from Folder `t (Beta)","KudosADDMoviesFromFolder"), Menu("RightClickMenu","Add")
     Menu("RightClickMenu","Add","Copy to Clipboard `t Ctrl+C","CopytoClipboard")
     $LNGT := LV_GetNext("C"), LV_GetText($MovieonMenu,$LNGT,1)
     Menu("RightClickMenu","Add","? " $MovieonMenu " ? on IMDb","RightClickMenuHandler"), Menu("RightClickMenu","Add","Search ? " $MovieonMenu " ? on YouTube","RightClickMenuHandler")
     Menu("RightClickMenu","Add","Search for Subtitles `t Ctrl+S","SUBGUI"), Menu("RightClickMenu","Add")
     Menu("RightClickMenu","Add","Edit Entry `t Ctrl+E","EDITGUI"), Menu("RightClickMenu","Add","Delete Entry `t Ctrl+D","DELETEGUI")
     Menu("RightClickMenu","Show",A_GuiX,A_GuiY), Menu("RightClickMenu","DeleteAll")
   }
}
RETURN



Step #2: Function added to the end of the script (note that $KudosMVFolder is where I hardcoded my own movies folder):

Code:
KudosADDMoviesFromFolder:

; Variables
$KudosMVFolder = D:\Movies

; Delete list file
FileDelete % $MovieList
       GuiControl %$MainGui%: Text, $MOVIESEARCH,
       TrayTip % $ProgramName, % $MovieList A_Space "has been Deleted Successfully!",,1
       SetTimer RemoveTrayTip, 3000

; Add entries from folder

   IF $KudosMVFolder =
     {
       TrayTip % $ProgramName, No Valid Folder has been Selected!,,3
       SetTimer RemoveTrayTip, 3000
     }

   $FolderList =
   $Extensions = *.avi,*.wmv,*.mpg,*.divx,*.mov,*.mpeg,*.mp4,*.wmp
   Loop Parse, $Extensions, `,
     Loop %$KudosMVFolder%\%A_LoopField%, 0, 1
       {
         SplitPath A_LoopFileFullPath , , , , OutNameNoExt,
         $FolderList = %$FolderList%%OutNameNoExt%;%A_LoopFileFullPath%;;;;`n
         ToolTip % "Adding Movie > ? " A_Space A_LoopFileFullPatH " ?"
       }
   IFNotExist % $MovieList
     FileAppend % $FolderList, % $MovieList
   ELSE
     FileAppend % "`n" . $FolderList, % $MovieList
   ToolTip
  Gui %$MainGui%: Default
  GuiControl , , $MOVIESEARCH,

RETURN


Admittedly, this was a quick patch job, and is based on DELUSION's original functions (Thanks, by the way), but it saves a lot of headaches. Hope it can be of use to others.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 10th, 2010, 9:35 am 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
the rescan thingy is the last thing im still working on before i release 2.1.6 and its giving me a headache already...its the only thing that ever took me so long
i want to make it check the paths on startup of the script

im gonna check out your code...your refresh idea is nice...maybe i add something like this..but since the whole structure of the script has changed this can be shortened to a few lines
thanks for trying to help :)

and i hope i get everything to work properly soon enough so i can finally release the next version...its already so much better

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 15th, 2010, 4:02 pm 
Offline

Joined: September 14th, 2004, 11:03 pm
Posts: 21
It would be nice to see tags implemented in your script.
Just another field in the database + something like a tag cloud to select from.

You can never know in advance what kind of information might be needed:
like resolution (1080/720/sd)
where the movie came from
for whom it is stored (kids / moms/ sisters )
where is it actually stored (ext hd etc)
seen/unseen - often missed feature

Most of the catalog software out there have tags in a very unintuitive way if they have them at all. They concentrate on parsing engine - imdb + others instead and add a bunch of bogus preprogrammed fields like "lent loaned to / from".

If you do this one feature - you will be a winner

you might need
1. 1 text field with tags
[crap][1080][action][french][****][unseen]
that is shown in the movie list

2. add tag / remove tag dialog
text field with current tags where they can be manually entered / edited
buttons with tag names that can be presed / unpressed - they copy the state of text field

3. something like tag cloud in the main window, probably with total number of movies
[1080] 25
[action] 13
clicking on them just filters movies

If you need any actual help implementing this one - just let me know


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 15th, 2010, 5:26 pm 
You know what would be useful? A script that saves video bookmarks.

The script would somehow figure out the elapsed time, and display a pop up dialogue so that you can name the bookmark. It would recognize vids based on their filename. Heck, it could even save files with an extension, say, .bmrk
, which when opened would open the vid and automatically seek to the saved position. I'm willing to implement this, but don't really know how to acquire the current position from the active movie player...


Btw, Gomplayer has bookmarking functionality, but your bookmarks for a specific file are lost when you so much as move the file. Haven't tried it with other media players.

I know I'm off topic, but I thought OP's script managed bookmarks.
Decided to share my two cents...


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 15th, 2010, 5:26 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
valenock wrote:
It would be nice to see tags implemented in your script.
Just another field in the database + something like a tag cloud to select from.

You can never know in advance what kind of information might be needed:
like resolution (1080/720/sd)
where the movie came from
for whom it is stored (kids / moms/ sisters )
where is it actually stored (ext hd etc)
seen/unseen - often missed feature


i really like these ideas...your suggestions are one of the best i have seen if not the best ;)

valenock wrote:
you might need
1. 1 text field with tags
[crap][1080][action][french][****][unseen]
that is shown in the movie list

2. add tag / remove tag dialog
text field with current tags where they can be manually entered / edited
buttons with tag names that can be presed / unpressed - they copy the state of text field


i have thought of adding more columns with extra info many times but i am afraid that it will break compatibility with the movielist file again

but i guess it wouldnt be so hard to fix so it could be done

valenock wrote:
3. something like tag cloud in the main window, probably with total number of movies
[1080] 25
[action] 13
clicking on them just filters movies


this sounds very nice..i have seen similar tag clouds on some websites and they are very usefull

but i have no idea right now on how to do it

valenock wrote:
If you need any actual help implementing this one - just let me know


i would definately need some
:oops:

if you want i could send you a copy of what i have right now

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Last edited by Delusion on April 15th, 2010, 5:50 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 15th, 2010, 5:32 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
Anonymous wrote:
You know what would be useful? A script that saves video bookmarks.

The script would somehow figure out the elapsed time, and display a pop up dialogue so that you can name the bookmark. It would recognize vids based on their filename. Heck, it could even save files with an extension, say, .bmrk
, which when opened would open the vid and automatically seek to the saved position. I'm willing to implement this, but don't really know how to acquire the current position from the active movie player...


Btw, Gomplayer has bookmarking functionality, but your bookmarks for a specific file are lost when you so much as move the file. Haven't tried it with other media players.

I know I'm off topic, but I thought OP's script managed bookmarks.
Decided to share my two cents...


i havent seen this in any player before...sounds usefull but my script is more of a database and not a player

i dont even know if something like this would be possible in ahk
Anonymous wrote:
I know I'm off topic, but I thought OP's script managed bookmarks.
Decided to share my two cents...


OP's script? mind to share a link? maybe i can find something usefull ;)

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 14th, 2010, 11:31 pm 
Offline

Joined: January 19th, 2010, 2:54 pm
Posts: 3
Hi,
i am waiting for your Updates on this. The photo a fewer Posts behind make my want to test you Program.
When can i expect for a Update?
Thanks very much!
Alaskatu
:D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2010, 10:42 pm 
Offline
User avatar

Joined: July 17th, 2008, 12:58 am
Posts: 270
heres an unfinished version of what i have right now :

link removed because some idiots are copying stuff


there might be bugs and stuff that i have not finished
unfortunately i have no time for the whole summer season to do anything more on this project..
im a barman so i work at night and sleep the day...no time for this

_________________
QuickSubs | Popcorn Movie Db
All my scripts are just in AutoHotkey v1.0.48.05


Last edited by Delusion on September 30th, 2010, 12:12 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 15th, 2010, 11:01 pm 
Offline

Joined: January 19th, 2010, 2:54 pm
Posts: 3
Hi Delusion,

thanks very much for your work on this. I will give your piece of code a try. Thanks very much for the upload...
:D
Alaskatu


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 98 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 11 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group