maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Nokia N9 / N950 (https://talk.maemo.org/forumdisplay.php?f=51)
-   -   need the best video converter for Nokia N9 (https://talk.maemo.org/showthread.php?t=91114)

paolo_3_1415926 2013-08-25 07:42

Re: need the best video converter for Nokia N9
 
Personally, I use Handbrake to do video encoding for the N9. It works like a charm and it is open source; you can also create your own profiles so you fiddle only once with the settings.

Handbrake - Open Source Video Transcoder

As a side note, to get the best out of your video transcoding it is a good idea to first have a look at the N9's specifications - it will save a lot of time :)

Device details - Nokia N9

hr1100 2013-08-25 17:43

Re: need the best video converter for Nokia N9
 
Quote:

Originally Posted by Mikkosssss (Post 1368855)
Why do you need high res videos when screen is only 854x480.
And high resolution videos take more space.

For me mp4 854x480 worked fine with km player. Not sure about stock one.

I think he refers to the mid and high mkv profiles, which are unsupported on N9. Those happen to make the vaaaast majority of rips you'd find on the internet. Seriously, how can the N9 not support the most popular format?

otivlasc 2013-08-26 01:51

Re: need the best video converter for Nokia N9
 
Take a look at video converter from AppGeeker, it works for me well and converts any type of video format.

http://www.appgeeker.com/how-to/conv...o-mp4-mac.html

You can tweak output settings such as resolution, file size, etc.

kikujiro0208 2013-08-26 11:32

Re: need the best video converter for Nokia N9
 
I just use Youtube downloader to convert my videos to my N9...

Rogatti 2013-08-26 18:17

Re: need the best video converter for Nokia N9
 
I use..ffmpeg

ffmpeg -i 01.mp4 -vcodec libx264 -ab 128 -b 700000 -s 852x480 output.mp4

mplayer + kmplayer accepted ..mkv .. mp4...divx ...also supports embedded subtitles

Graphic video converter apps...Handbrake ... Avidemux... very cool !

dansus 2013-08-28 01:17

Re: need the best video converter for Nokia N9
 
MeGui if you know what your doing.

Handbrake if you dont.

soryuuha 2013-08-28 01:36

Re: need the best video converter for Nokia N9
 
try Super (c) video converter


been using it for 5 years, never fails me when I want to convert any video for any mobile devices i had previously

bobpear 2013-12-03 14:13

Re: need the best video converter for Nokia N9
 
I prefer to use Video Converter Assist:
http://www.top-password.com/video-converter-assist.html
I have used it for a while and been reasonably satisfied with the result.

xaccrocheur 2014-03-24 17:00

Re: need the best video converter for Nokia N9
 
I use this script on Linux Debian to make N9-friendly videos :

Code:

#!/bin/sh

infile=$1
tmpfile="$1-tmp.mp4"
outfile="$1-new.mp4"
options="-vcodec libx264 -b 512k -flags +loop+mv4 -cmp 256 \
      -partitions +parti4x4+parti8x8+partp4x4+partp8x8+partb8x8 \
      -me_method hex -subq 7 -trellis 1 -refs 5 -bf 3 \
      -flags2 +bpyramid+wpred+mixed_refs+dct8x8 -coder 1 -me_range 16 \
          -g 250 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -qmin 10\
      -qmax 51 -qdiff 4"

# Half size
options=$options" -vf scale=iw*0.5:-1"
# Copy audio
options=$options" -codec:a copy"
# Shut up
options=$options" -loglevel info "

# echo "Options : $options"

avconv -y -i "$infile" -threads auto $options "$outfile"
# avconv -y -i "$infile" -an -pass 1 -threads auto $options "$tmpfile"

# avconv -y -i "$infile" -acodec aac -strict experimental -ar 44100 -ab 96k -pass 2 -threads auto $options "$tmpfile"

# qt-faststart "$tmpfile" "$outfile"



All times are GMT. The time now is 06:13.

vBulletin® Version 3.8.8