Editing GoPro Adobe Premiere

May 1st, 2011 § 0 comments § permalink

*UPDATE*
I found by changing the extension from .mp4 to .mov was enough to allow me to edit with them. This saved making new sequence presets.
——————————-

I recently had to edit some GoPro footage for a customer in Adobe Premiere.
I ran into a few problems.
You can import the .mp4 no problems, but then you can only edit with the first file. The rest of the videos are almost unreadable, and come up as a green frame in the preview window.
It is almost like Premiere freezes.

I found a post “Importing GoPro HD footage in Adobe Premiere Pro CS4” which somewhat resolved this (even though the solution feels unsatisfactory, it does work).

The crux of the problem apparently lies in the frame size that the GoPro films in by default. (1280×960). This resolution/ratio retains a lot more vertical picture than many other HD formats.
In the post, you’re told to create a new sequence template and then entering in the resolutions you want to work in.

The second part addresses the format problem. You need to change the container that the videos are stored in – otherwise, Premiere will try and encode each file on the fly as you edit. This results in VERY laggy editing.

You can either change the extension from .mp4 to .mov, or use the free tool he suggests MPEG Streamclip. It doesn’t have an installer (which is good), it is simple, fairly ad free and *just works*. It has a batch mode, and seems to be a good tool to have in your belt for other projects. THE IMPORTANT PART is to “Save As .mov” not “Export”. If you export you are doing the same thing Premiere is trying to do, and it will take ages – if you “Save As”, it simply moves the file into a new container and takes seconds to do a whole sequence of files.

Import the .mov files into your new project and your up and running.

Password Reset Toshiba eStudio 3510c

April 4th, 2011 § 0 comments § permalink

I could have just about died when I couldn’t get into the admin panel on my brand-new-second-hand Toshiba eStudio 3510c.
Fortunately the blessed souls at fixya had a solution to reset the admin password and get in.

The default password is “123456″, however, the sort of company that has these kind of copiers will most likely have some kind of password policy for these devices.

To reset:
1. Put into diagnostic mode. Shut down the machine, then, while holding “0″ + “8″ turn the machine back on.
2. The machine will display test mode.
3. Type “263″, Press Start (Big Green Button!)
4. What you currently see written is the password. Clear it, and enter the password you want.
5. It will ask you to reset the machine. Switch off and on again.

Using a ZTE MF626 with Telstra Bigpond Wireless on Linux Backtrack

July 11th, 2010 § 0 comments § permalink

Backtrack 4 supports the use of the ZTE MF626 out of the box.
While there are plenty of tutorials on how to connect the device, it took me a while to figure out why I could not see the device /dev/ttyUSB0.

When you plug the internet stick into a Windows based operating system, a virtual cd-rom is created. Once the software is installed, inserting the device runs the autorun.exe.
Obviously linux can’t use the system libraries in order to perform the same action, so what you will need to do is eject the cd-rom in linux.
The easiest way in backtrack 4 is to pop open the Konqurer->Storage Devices, hit refresh and you’ll see the cd-rom. Right click and eject.
Now, if you head to your console and type lsusb you will note that you have the correct drivers loaded, and /dev/ttyUSB0 will be available for your choosen modem dialer to use!

Linux Security Distro Hosting

March 7th, 2010 § 0 comments § permalink

I’m currently hosting S-T-D and Backtrack distributions in the mirrors folder. These can be used with my rainbow tables, or for a whole range of fun activity’s.

LM Rainbow Tables

March 7th, 2010 § 0 comments § permalink

A few years ago I created some rainbow tables for cracking a particular type of password. I’ve been hosting them for a fair while but now I’ve updated the site I thought I would point towards their location.
You can download the lm_alpha-numeric-symbol14-space1-7_0_4000x46000000 tables by clicking on the Rainbow Tables link. The tables can be used with Backtrack or S-T-D.

File Carving MYOB backups

March 7th, 2010 § 0 comments § permalink

I had a situation where I needed to recover some MYOB backup files from a corrupt Norton Ghost (version 8.0) file. Ghost Explorer wouldn’t open the backups, due to some form of corruption, somewhere. There was little information that was available, despite the file corruption being a common problem. Ghost is no longer a supported product, and future versions were essentially a completely new program. I read a thread on corrupt ghost images that discussed my problem in depth. Praise to Nigel who provided the inspiration to try what I did, although unfortunately the header fix program was simply slack data when I downloaded it… sabotage?

Out of desperation I used HxD to search for the file header of a MYOB backup. It was tedious and took a while, particularly considering I was sifting through 20gB of hexadecimal data.

If I get some time I would like to produce a program that can automatically recover these files (and others, especially .jpeg) from a corrupt ghost image. In summary however, if you are trying to recover data from a norton ghost image file that seems to have become corrupt. Here is a brief overview of what you’ll need to do to recover the data.

  1. Load it in HxD
  2. Search for the file beginning
  3. Write down this location
  4. Search for the file end
  5. Write down this location
  6. Select between the start and end locations
  7. Copy it, then paste it into a new Hex file
  8. Save it

If everything went correctly, you’ll be left the file you were trying to recover.

You may be asking “What is the file start/end?”.

I would say that is a good question – this is what took me a while to figure out.

For MYOB:
version 13, file start “6D 79 6F 62 31 33 2F 50 4B 03 04 0A”
version 18, file start “6D 79 6F 62 31 38 2F 50 4B 03 04 0A”

You will notice that the 6th byte is the only thing that changes between the two. Thats because its specifying the version number. In hex, 0×31=1, 0×33=3, 0×38=8.

The end of the MYOB files was always “50 4B 01 02 14 0B 14″ followed by a large null padding (…00 00 00 00 00 00…), although the amount of padding varied from file to file.

Generally I selected a few zeros after the file end so… “50 4B 01 02 14 0B 14 00 00 00 00″.

I successfully recovered 8 backups doing this manually.

Feel free to contact me via email if you would like a more in depth tutorial on recovering files from Ghost backups, or donating if I just saved you!