Remember Me
forgot your password?

Iphone - Conversion of Films Into Mov Format

Copyright (c) 2008 Adam Nowak

The goal is simple: by using a copy of a film from your local disc, change its size, adjust it to the iPhone display and apply appropriate coding which will enable you to enjoy a good picture and sound quality. At the beginning, however, I would like to emphasize, that on account of the size of the movie, I will not focus on the optimization of compression itself. Writing a script for this operation is useless - it's one line on the console: ffmpeg -i "INPUT _FILE.AVI" -f mp4 -vcodec mpeg4 -maxrate 10000 -b 7000 -r 29.97 -qmin 2 -qmax 5 -bufsize 4096 -g 300 -acodec libfaac -ab 128k -s 480x320 -aspect 4:3 "OUTPUT_FILE .MOV" Of course, you have to install the appropriate codecs (unless it was already done so) and input the file (the movie).

# apt-get install libfaac0 ffmpeg mpeglib libmpeg2-4 faac

After a long and quite consuming process, the we receive an output file. Next, you install it onto iPhone//iPod Touch using gtkpod, for instance. Voila!

Synchronising the phone book.

At this point the process is more complicated. You have to use the MNPlight application from the Installer repository: http://movenplay.gforge.inria.fr/iphone. The application functions are well described on the project's main page, I strongly believe, however, that you should have no problem with understanding it. The MNPlight application enables the import and export of the telephone book in Mozilla Thunderbird format (Google Mail) as well as the export//import of the calendar in Google Calendar format. Additionally, it has some other functions which I have personally never used. I recommend visiting the website for further information.

Your ringtones from mp3 to iPhone

Attention! This process works only with iPhone with 1.1.1 software. iPhone uses the sound encoded in AAC format. Most of us have files in *.mp3 or *.ogg format. The process of conversion itself is an uncomplicated one. Firstly, the you convert a sound file into *.wav format using mplayer, next you convert the *.wav file by the appropriate coder (faac), which creates an m4a output file. I wrote the script which automates the above-mentioned process:

#!/bin/bash # Sebastian 'night' Auczak # http://night.jogger.pl # Conversion of mp3 to iPhone ringtone

echo "Insert the name of mp3 file (without extension!)" echo -n ">" read IN OUT="`ls | grep $IN.mp3`" echo " I convert mp3 to wav:" mplayer -vo null -vc null -ao pcm:fast:file=$IN.wav $OUT faac -b 128 -c 44100 -w $IN.wav rm $IN.wav

You have to change the extension of the received output file from *.m4a to *.m4r and add one space bar before the extended file, e.g.

$ ls ringtone.m4a $ mv ringtone.m4a "ringtone.m4r" $ ls ringtone .m4r Now, let us pass on to iPhone 1. Download the corrected file MeCCA 2. Install the corrected file in: /System/Library/Frameworks/MeCCA.framework/ 3. Install the file m4r in the catalogue /Library/Ringtones/ 4. Restart the telephone

The ringtone should be available in the telephone menu.

The OpenSource tools, as we can see, enable to use iPhone independently from iTunes and Apple's products.

Adam Nowak

This article was translated by mLingua Worldwide Translations, Ltd. mLingua provides professional language translations in all major Western and Asian languages, software localization and web site translation services. Please visit http://mlingua.pl

Rate this Article: 0 / 5 stars - 0 vote(s)
Print Email Re-Publish


Article Source: http://www.articlesbase.com/computers-articles/iphone-conversion-of-films-into-mov-format-359069.html
Add new Comment



Captcha

  • Latest Computers Articles
  • More from Adam Nowak

Data Loggers Are Reliable Workhorses

By: Diana Valentine | 05/07/2009
Data loggers are used in everything from the medical profession to car diagnostics. With their stand alone technology and ability to function unattended, these workhorses are a mainstay in our lives.

Online Office 2010 Training – Will You Be Ready?

By: Caitlina Fuller | 05/07/2009
As far as all the self proclaimed experts in the world are concerned, the fact is they all started out as beginners. There is an expert on every subject imaginable with computer software included. Becoming an expert takes time and education but who has the time these days.

Microsoft Office 2010 Training

By: Caitlina Fuller | 05/07/2009
With the release of the Microsoft Office 2010, due in the first quarter of 2010, you may be in need of Office 2010 training. Staying on top of all the Microsoft programs produces efficiency. In today's world of advanced communication, the Microsoft Office suite of products, are the leader when it comes to communication.

Microsoft Certification Boot Camp – Training for the Professional

By: Caitlina Fuller | 05/07/2009
A Microsoft certification boot camp specializes in training professionals to obtain their certifications in Microsoft application. A MCPD bootcamp specifically trains in .NET software development and applications that include .NET 3.5, Visual Studio 2008 and SQL Server 2005/2008.

Microsoft MCSE Boot Camp – Not Your Normal Summer Camp

By: Caitlina Fuller | 05/07/2009
A Microsoft MCSE boot camp is a camp where professionals can receive their Microsoft Certified Systems Engineer (MCSE) training in a short period of time. It is an actual camp that takes you away from your surroundings and places you in a highly intensive atmosphere of training.

Microsoft Office Training Courses – Become the Expert

By: Caitlina Fuller | 05/07/2009
Microsoft Excel training is a course that will train you to become proficient in the use of the Microsoft product. Whether you are a beginner or an advanced user of the software, you will learn how to sort data, create macros, design charts and much, much more.

Canon PowerShot SD880 is Review

By: Radu Antohi | 05/07/2009
he Canon PowerShot SD880 IS is a 10-megapixel camera with a 4x wide-angle optical zoom and has an ISO setting that can support up to 3,200. The IS stand for "image stabilization" and according to Canon, the PowerShot SD880 makes taking group photos go with as much ease as possible....

The Impressive Mobile Computer

By: Roberto Sedycias | 05/07/2009
Just when the world had started relishing the discovery of the desktop computers, stepped in the very stylish and easy to use notebooks! A completely fresh and innovative discovery of the 1990`s, the notebook was the perfect competitor for the existing giants in the world of PCs. A notebook in its...

Iphone Description - Part I

By: Adam Nowak | 20/05/2008 | Computers
iPhone is a device presented by Apple Inc. performing the function of a mobile phone, MP3 player (iPod) and Instant Messenger, as it has been called by Apple Inc.

Iphone in My Opinion - a Review - Part II

By: Adam Nowak | 18/05/2008 | Computers
I bought iPhone. And after long exploitation (a few weeks), it's time for a review of this gadget. Steve Jobs divided his official presentation into 3 main groups: a mobile phone, iPod, the Internet. So I will do the same, and let's start from the most important...

My Review of Iphone - Part I

By: Adam Nowak | 17/05/2008 | Computers
I bought iPhone. And after long exploitation (a few weeks), it's time for a review of this gadget. Steve Jobs divided his official presentation into 3 main groups: a mobile phone, iPod, the Internet. So I will do the same, and let's start from the most important...

Open Source Software - Useful or Not?

By: Adam Nowak | 17/05/2008 | Computers
The aim of this paper is to acquaint the reader with the idea underlying the distribution of Open Source Software and to compare the main features of this solution with the features of commercial software. Particular emphasis is placed on describing the usefulness of Open Source in business applications.

Against the Rules - Hints About How to Create Text for a Website

By: Adam Nowak | 08/05/2008 | Computers
I am sure that many people wonder what the secret of filling up a website with its content is. The recipe seems to be quite simple - clarity and an appropriate outline are crucial. However, there is one thing you cannot forget about. Those who have never published texts or documents outside the Internet will find it easier, as they do not have to get rid of their old habits while learning the new art of website publishing.

The Role of Words in Advertising

By: Adam Nowak | 07/05/2008 | Business
Have you ever seen an ad without any words? Be it a radio, TV, cinema, press, Internet or outdoor advertisement, text is always an element of the utmost importance.

How to Design a Functional Website - Part I

By: Adam Nowak | 05/05/2008 | Computers
The combination of functionality and aesthetic qualities is difficult, but possible. Although achieving this balance requires a lot of effort and compromise, it will surely result in the satisfaction of Internet users.

How to Advertise a Web Page

By: Adam Nowak | 25/04/2008 | Internet
'How to advertise a web page' is a very common question. Unfortunately, the answer is neither simple nor unambiguous. Why?

Submit Your Articles Free: Signup


Article Categories




Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2008 Free Articles by ArticlesBase.com, All rights reserved. (0.09, 1)