I am going through with draw effects without my EPR D: Also found out that my hard drive is completely bucked so anyone know a fast way to download all the MLP episodes so they are compatible with Sony Vegas? Sent from my iPhone using Tapatalk
Download Season 1 / 2 in .mp4 format and not .mkv format. Unless you want to go through the task of converting .mkv into .mp4 for Sony Vegas...
Ultra MKV converter. Cheap, Free Trial, Fast. I used it convert and scale all the video so I could watch them on my 2" wide screen. Yup. But I watch all my MLP on my laptop anyway. Shark's007 codec pack. All of the codecs. The entire codecs. The codecs. All. It is.
Tyvm GreyOne Last time I did it I downloaded all the bids off YouTube at 20min a pop so they would be in mp4 format...hopefully torrent download/ this converter will be faster Sent from my iPhone using Tapatalk
DISCLAIMER : lol, bored. So, I have nothing to do after my spur of skyrimming. Therefore, I will now sequentially say every letter in the alphabet. Into a mic. With it off. Ahh... that was refreshing. Now, go forth! Bring me amusing trinkets!
Something I coded in on my free time. Yes, I like creating stuff. :3 Spoiler: Mhmm... My own personal HUD (Heads-Up Display).
I found a way out of Skyrim, it's a weird thing called the off button. So here I am, until I get called back for the next week.
I will now post a random tidbit of code. Code: package lib.serv.udp; import java.io.IOException; import java.net.DatagramSocket; import java.net.SocketException; import java.util.ArrayList; import lib.serv.DatagramResponse; /** * This class is used to send outgoing packets to clients from the server engine. * This class uses a queue based system to store out going DatagramResponses until * the worker thread is clear to send the packet to the outlined client. * <p> * This class runs in it's own Thread as defined by the <code>java.lang.Runnable</code> * interface. The Thread that this class runs in is stored locally and is referred to * as a "worker thread". * <p> * If there are no out going packets in queue, the worker thread will block until * a packet is added to the queue. * * @author greyOne * @version 1.0.0.0 : November 6, 2011 * @since 1.0.0.0 * @see java.lang.Runnable * @see java.net.DatagramSocket * @see lib.serv.DatagramResponse */ public class DatagramResponder implements Runnable { private boolean alive; private boolean locked; private Thread workerThread; private DatagramSocket UDPSocket; private ArrayList<DatagramResponse> responses; /** * Creates a new DatagramResponder Object and a DatagramResponse queue. * * Creates the worker thread for this DatgramResponse queue and starts * the worker thread. * * @throws SocketException If a SocketException occurs while opening the DatagramSocket. */ public DatagramResponder() throws SocketException { workerThread = new Thread(this); alive = true; locked = false; UDPSocket = new DatagramSocket(); responses = new ArrayList<DatagramResponse>(); workerThread.start(); } /** * Accesses the field that dictates whether this DatagramResponder * is alive. * * If the DatagramResponder is alive, this method returns <code>true</code>. * * If the DatagramResponder is not alive, this method returns <code>false</code>, * and is unable to send Objects from the queue. Furthermore, the * <code>queueResponse(DatagramResponse)</code> method outlined in this * class will throw a SocketException, since the queue is closed. * * @return A value that indicates whether this DatagramResponder is alive. */ public boolean isAlive() { return alive; } /** * * @return The worker thread defined in this class. */ public Thread getWorkerThread() { return workerThread; } /** * This method adds the specified DatagramResponse Object to * a Queue of Object to be sent from this DatagramSocket. * * Since the worker threads <code>run()</code> method in this * implementation blocks if there are no Objects in the queue, * invoking this method will notify the method to proceed. * * @param response The DatagramResponse Object to be queued up and sent. * @throws SocketException Thrown if this DatagramResponder is not alive. */ public synchronized void queueResponse(DatagramResponse response) throws SocketException { if(!alive) throw new SocketException("DatagramResponder and queue are closed."); responses.add(response); if (locked) { notifyAll(); locked = false; } } /** * Returns the amount of Objects currently queued up to be sent. * * @return The amount of Object in queue. */ public int queueSize() { return responses.size(); } /** * Removes all Objects from the queue before they are sent. */ public void clearQueue() { responses.clear(); } /** * Shuts down this DatagramResponder. * The <code>isAlive()</code> method will now return <code>false</code>. */ public void shutDown() { alive = false; if(locked) notifyAll(); responses.clear(); UDPSocket.close(); } @Override public synchronized void run() { while (alive) { if (responses.size() < 1) { try { locked = true; wait(); } catch (InterruptedException e) { e.printStackTrace(); } } else { try { UDPSocket.send(responses.remove(0).getPacket()); } catch (IOException e) { e.printStackTrace(); } } } } } (What? I'm bored.)
So many things to do so little time, both in the real world and in Skyrim. I need a break though, gotta work on music, I need to get better.
This thing called the "off button". I do not have one. Well I do, but I'm 99% sure it will harm my PC... What do?
YES TOMMROW IT IS FINALLY TIME FOR FLORDIA! [video=youtube;IYitYCOYK1Y]http://www.youtube.com/watch?v=IYitYCOYK1Y[/video]i am exctited