Monday, February 7, 2011

Pull audio using VLC

This is more for my own convenience/memory but here goes:


vlc "input_file.ext" --sout #transcode{acodec=mp3}:duplicate{dst=std{access=file,mux=raw,dst=\""output_file.mp3"\"},select=\"novideo\"} vlc://quit


Load a file into VLC, convert to mp3, save, quit.

done.

Wednesday, January 5, 2011

Archive email in outlook

I really like the Archive function in Gmail. Unfortunately at work we use a Microsoft Exchange server which means I've been using Microsoft Outlook for the past few years. In order to clean up my inbox I've resorted to having my own "Archived email" pst files elsewhere since I can't keep all of my email on the server.

One thing that has bothered me has been the lack of the Archive button to just move all of my email to my Archived email pst. There is a "Move to folder" button, but that is a two step proces.

In the name of efficiency I produced the following macro:


Sub Archive()
Dim objFolder As Outlook.Folder
Dim objNS As Outlook.NameSpace
Dim objItem As Object

Set objNS = Application.GetNamespace("MAPI")

'Get the correct "Archive" folder
Set objFolder = objNS.Folders("- Personal Folders 2011").Folders("Archived Inbox 2011")

If objFolder Is Nothing Then
MsgBox "This folder doesn't exist!", vbOKOnly + vbExclamation, "INVALID FOLDER"
Exit Sub
End If

If Application.ActiveExplorer.Selection.Count = 0 Then
'Require that this procedure be called only when a message is selected
Exit Sub
End If

For Each objItem In Application.ActiveExplorer.Selection
objItem.Move objFolder
Next

Set objItem = Nothing
Set objFolder = Nothing
Set objNS = Nothing
End Sub

 Assigning this to a button on the toolbar is almost like archiving my email in Gmail. It isn't quite as efficient and searching isn't as easy if you're using outlook's search (I've given up on standard Microsoft search and replaced it with Google Desktop Search), but at least I have a "one click" button to move my email to my desired folder.

Now if only I could fix the rest of outlook.

Thursday, April 15, 2010

I've been busy

I've been busy.

Sorry for the lack of posts.

See here: Thesis

At some point I'll update again.

Sunday, January 17, 2010

Thesis

This is my current biggest fear. Sometimes I see Aiden giving me that look when he's too close to my computer.


funny pictures of cats with captions
see more Lolcats and funny pictures

Sunday, December 13, 2009

First Time To Teach

This past thursday (12/10/2009) I had to opportunity to teach the Advanced Vision class because my advisor was out of town and couldn't teach the class. It was a really great opportunity to see what it's like to lecture for the entire class compared to just giving a presentation.

I ended up being a little short on time, took a bit of the rest of it to answer questions from the class and go into further detail about my research.

Attached in the presentation I gave.

MotionTracking ACV2009 Winter

Wednesday, September 30, 2009

Invisible

Very interesting talk about the invisible.

Saturday, May 16, 2009

Used as an example

I had a neat experience recently (this past quarter). My old professor from when I took Artificial Intelligence asked if he could use my paper as an example for the class. That's the first time a professor has asked to use my work as an example for others.

Here's the link. Look for "Example Research Paper".