Friday, February 4, 2011

Background:
In the spring of 2009 Argyle United Methodist Church moved from on top of Methodist Hill to a new campus just down the highway forever giving up the old idea of being a small town country church. Now we are a "large church" (by most definitions), our new campus is very modern (see photo in the header above), we have a contemporary service, and our pastor sometimes doesn't wear his pastoral robes (even to our traditional services).

Yet the communications with our congregation and the community are still as if we were in that 75 year old building on top of Methodist Hill. THIS IS NOT GOOD! We are missing ministry opportunities every day by not being active on social media or even keeping our website updated. How we got to this point is a long story not worth retelling at this point, but here is a spotlight on what we are currently doing:

Back when we were in that old building we produced a monthly newsletter that was mailed to each member of our congregation. This process was very time consuming and costly so a few years ago we decided to stop mailing them to every person; instead we mailed them to only select members (people could still get a copy at the church and/or read it online). Eight months ago we published our last copy of the monthly newsletter (much to the relief of the staff member that was in charge of it).

Now instead of having a monthly newsletter to tell everyone about all of our programs we try to fit every piece of relevant information into one weekly all church e-mail. This technically works but is cumbersome and (I would guess) no one actually reads all of the way through it (they have surely fallen asleep by the time they get to the bottom).

We have a Facebook page but haven't used it to its full potential (note that we don't even have a vanity URL). The main problem with our Facebook page is that there has never been a plan as to what to post, how to post it, who posts, etc. It is just there and sometimes people in the office post to it.

We have a Twitter account but it has a grand total of 5 tweets and it hasn't been updated in 18 months (THAT one you can blame one me).

Our website was redesigned a few years ago so it looks great but some pages are horribly out of date. For example every page on our website has a footer that still features a large button with "Newsletter" written across it (even though the last newsletter was published 8 months ago).

So as you can see we haven't done a good job using social media to communicate with our congregation and the community. This will soon change.

Planning
Tomorrow I have a meeting specifically for the purpose of creating a plan for our social media. (Note: I am using "social media" as a very broad term which would include [but is not limited to] Facebook, Twitter, e-mail, and our website.)

I have been doing a lot to get prepared for this meeting. The first thing I did was grab all of the breakouts from the 2010 Echo Conference that had to do with social media (thankfully I have the DVD set which includes the audio from all of the breakouts). I listened to as many as I could and I shared the files with the other person that will be in the meeting with me.

I would often listen to these breakouts while taking my roommate's dog on long walks in the evening. The breakouts have a lot of great content that got my brain working, and when my brain got working I would pause the audio so I could think and walk for a while. In this way I was able to flesh out a lot of ideas.

How do I apply someone else's great ideas to our church? How will this work for us? What steps are important to getting this done? I would say that about half of my time devoted to "researching" social media was not actively listening to the breakouts but having my iPhone on pause so that I could process the information. And because my brain is not good at remembering things I would open the Voice Memo app on my iPhone and record short memos to myself about my thoughts. I later transcribed these notes onto a legal pad, and I now have two pages full of ideas, things to talk about, ways to approach subjects, etc.

So tomorrow will be a big day for our church. It won't be marked on any calendars, it won't be celebrated for years to come, and most people won't even know that something happened. However I believe that the planning that we do tomorrow will start an amazing ministry that will touch many lives, not just within our congregation but our community and the rest of the world as well.

Please pray with me that this meeting will be God centered and that we would have wisdom about how to approach this brand new ministry that can touch the lives of people in a way that our church has never been able to.

Tomorrow I will post about how the meeting went and I will expand on our process of thinking through this ministry.

One last note: I fully believe that one of the greatest features of social media is COMMUNITY! I write this post (and the posts to come) not just to help others that may be going through a similar transition as we are but also to get feedback from others that have traveled down similar roads. This in turn blesses the other readers of this post. So please post your thoughts and ideas about Social Media Ministries in the comments below. Has your church figured out social media already, or are you where we are now (fumbling in the dark)? What resources would you suggest for guidance on the Social Media front? What pitfalls should we watch out for, and what goals should we strive for? Share in the comments!

Matthew Kelling
Director of Media Ministry
Argyle United Methodist Church

Wednesday, December 23, 2009

For a long time I have wanted a droplet for exporting QuickTime files. That is to say I wanted an icon on my desktop that I could drop video files into and it would export them with custom settings from QuickTime Pro. Many times have I started a search looking for Quicktime droplets, but I never could find anything. Well, due to some extra time recently, I was able to get down and dirty with some AppleScript to get it done!

Note: I owe many thanks to the help I received online for this, mainly this post from which I have copied (word for word) parts of to help with this post. To the others that helped: Thanks!

Note 2: Sorry Windows users, this is OS X only. These scripts require QuickTime Pro ($30), which allows you to export videos from QuickTime. If you are on Snow Leopard, you have to have QuickTime 7 installed for this to work.

Note 3: I know that not everyone is a scripting pro... I know for a fact that I am not! So I have tried to make this walkthrough as simple language as possible. You need NO experience in any form of scripting to get this to work, but you will need the ability to comprehend what is going on. Just follow the directions and you will be fine. For those pros out there: Feel free to glean what you need while ignoring the rest!

Step 1: Retrieve the export settings from QuickTime.

1) Open a movie representative of the kind you'd like to export in QT.
2) Choose "Export" from the "File" menu
3) Select the desired export kind from the "Export:" popup menu (I always use "Movie to QuickTime movie", using something different may not work with this setup)
4) Click the "Options..." button to specify your custom settings, then click OK
5) Note that the "Use:" popup menu now displays "Most Recent Settings"
6) Start the export by clicking on the "Save" button (if you don't start an export the "Most Recent Settings" won't stick)
7) Cancel the export if it is a long one
8) Leave the video open in QT as we move on...

At this point you are ready for some AppleScripting. Open your Application folder, then open the Utilities folder. Find "AppleScript Editor" and open it. Copy and paste the below text into the window that pops up:

tell application "QuickTime Player 7"
tell first document
save export settings for QuickTime movie to file "Macintosh HD:Users:Matthew:Documents:QuickTime Scripts:Export.set"
end tell
end tell


Note that this is MY snippet of code, you will need to make it work for you. There is one thing that you may need to change, and one thing that you will need to change:

tell application "QuickTime Player 7": Leopard (and below) users will need to change this to "QuickTime Player. Snow Leopard users leave this as "QuickTime Player 7".

save export settings for QuickTime movie to file "Macintosh HD:Users:Matthew:Documents:QuickTime Scripts:Export.set": This sets where your setting file will be saved. Remember that this file will have to be stationary for the life of your QuickTime Droplet, so choose a place where it won't get in the way. (IE: on your desktop is a BAD idea!) Note that I have created a folder named "QuickTime Scripts" in my "Documents" folder. After you have decided where you want your export file(s) to reside and you have created the necessary folders, update the script to reflect where you want them. IE: Change "Macintosh HD:Users:Matthew:Documents:QuickTime Scripts:Export.set" to wherever you want it to save. Also, change Export.set to name of what you want the file to be.

NOW it is time to run the script! On the top of the AppleScript Editor window, click "Run". If everything is good then it will look like nothing happened right away, but if you open the folder where you told the file to say you will see the file: "Export.set" (or whatever you said to save it as). (If things don't go according to plan and you get an error, try to figure out what happened. Go back and read the steps and make sure that each step was done correctly. If you are still having problems, contact me and I will try to help out.)

So, after all of that work we have a single simple file. If you have more than one droplet you would like to create, feel free to repeat the above steps for as many droplets you would like. Also, save this script so that you have access to it later. Now, on to...

Step 2. In this step we will create the actual droplet file.

In AppleScript Editor, create a new script and paste in the following code:

on open these_items
repeat with i from 1 to the count of these_items
set this_item to item i of these_items
tell application "QuickTime Player 7"
open this_item
get name of the front document
with timeout of 36000 seconds -- 10 hrs timeout
export document 1 to "Macintosh HD:Users:Matthew:Desktop:" & name of the front document as QuickTime movie ¬
replacing no using settings "Macintosh HD:Users:Matthew:Documents:QuickTime Scripts:Export.set"
end timeout
close front document
end tell
end repeat
tell application "QuickTime Player 7"
quit
end tell
display dialog "Your Encoding is done!" buttons {"Thanks a bunch!"} default button 1
end open


Once again there are several things that you will need to change for this to work on your machine:

tell application "QuickTime Player 7": Remember that you may need to change this to "QuickTime Player" if you are not on Snow Leopard.

with timeout of 36000 seconds -- 10 hrs timeout: Currently it is set to timeout after 10 hours. This means that at the 10 hour mark whichever video is being exported will finish, but any additional videos will not start encoding. If you export lots of large files, you may need to bump this number up a bit, otherwise leave it alone.

export document 1 to "Macintosh HD:Users:Matthew:Desktop:" & name of the front document as QuickTime movie ¬: Change this to where you would like the file to save to. It is currently set to save to my desktop.

replacing no using settings "Macintosh HD:Users:Matthew:Documents:QuickTime Scripts:Export.set": Change this to where you saved the export file in Step 1. Feel free to copy and paste from the script in Step 1.

display dialog "Your Encoding is done!" buttons {"Thanks a bunch!"} default button 1: This is a dialog box that says "Your Encoding is done!" whenever the encoding is done. Feel free to delete this line if you don't want a dialog box.

Now, DON'T Run this script! If you do, nothing will happen. Remember that we are creating a droplet, which is (technically) an application. So (after saving the script for future reference) go to "File>Save As...", type in the name you want for your droplet, and change the "File Format" to "Application". Also, check the "Run Only" box. Now click "Save", and you are done!

Feel free to test out your droplet. Quit QuickTime (if it is still open), grab a few video files in the finder, and drag them onto the top of your droplet. QuickTime should open and start exporting your video files. When it is done it will quit QuickTime and show you a dialog box saying it is done.

Well, there you go! Have fun playing around with AppleScript, the possibilities are endless! For example, you can set it up so that you have a "Hot Folder", and any video dropped into said folder is automatically exported. (See this post for help on that.) Because I have 7 export settings I want to manage, I am now off to work with the "display dialog" tag and compress all seven export settings into one droplet which will ask the user which export setting they want to use.

Hope this helps! If you were successful in getting this to work, let me know by posting a comment! Know of a way I could write this tutorial better? Let me know!

Matthew

Thursday, November 12, 2009

In the booth this week is: Me, Adam, and David. This week we are going to play a video clip from The Simpsons...

Link to the AUMC AV Breakout

Matthew

Thursday, November 5, 2009

I am excited to announce that our new AUMC AV shirts are in! Here I am styling the new T:



I am excited how this will bring our team together!

In the booth this week is: Me, Carter, and Mike.

Link to the AUMC AV Breakout

Matthew

Thursday, October 29, 2009

In the booth this week is: Me, Adam, and Bill. Did I ever tell you that the AUMC AV Volunteer Team ROCKS? Well they do!

Link to the AUMC AV Breakout

Matthew

Thursday, October 22, 2009

In the booth this week is: Me, Adam, and David. Party at my place!

Link to the AUMC AV Breakout

Matthew

Wednesday, October 14, 2009

I am out of town this weekend, so Carter is in charge this week. You guys be nice to him!

Link to the AUMC AV Breakout

Matthew

Thursday, October 8, 2009

Working in the booth this week is: Me, Adam, and Bill. Bill is the BOMB! BOOM!

Link to the AUMC AV Breakout

Matthew

Saturday, October 3, 2009

Sorry about the late post this week, I have been out of town. Working in the booth this week is: Me, Adam, and David. Woop, another Sunday is upon us!

Link to the AUMC AV Breakout

Matthew

Thursday, September 24, 2009

Working in the booth this week is: Me, Adam, and Mike. Be ready with your "A" game on!

Link to the AUMC AV Breakout

Matthew


 

Copyright 2006| Blogger Templates by GeckoandFly modified and converted to Blogger Beta by Blogcrowds.
No part of the content or the blog may be reproduced without prior written permission.