Notices


Reply
Thread Tools
Posts: 11 | Thanked: 2 times | Joined on Feb 2009 @ Sparrows Point, MD
#31
Many Thanks for this thread, i being a super new guy love the information here. i have one problem, after using the suggestions here i still am unable to get anything but the included n810.avi file to play on canola. i think i have tried everything including blowing out the N800 and reloading (several times). canola plays music fine but nothing i convert and load to either the internal or external sd card will play. any thoughts on what maybe wrong. the version is installed from the application manager, both cards were formatted in the N800.
thanks
cdr
 
Posts: 1,950 | Thanked: 1,174 times | Joined on Jan 2008 @ Seattle, USA
#32
@seadeeare

Have you gone to the Canola settings and selected which cards you want scanned? Settings>>Media Library>>Media Folders>>Video Folders
__________________
.
. .

Help Save This Forum
for N8x0/Diablo Users! Register and Vote for Solution #1 on this Brainstorm. (The Solution will let you see New Posts with any threads you choose -- like the N900 and Maemo5/Fremantle threads -- filtered out.) (To understand the Solution better, see these posts #17, #18, and #19.)

Last edited by GeraldKo; 2009-05-12 at 18:49.
 
Posts: 11 | Thanked: 2 times | Joined on Feb 2009 @ Sparrows Point, MD
#33
YEp did that, i can see the title in the file list but when i go to play it just hangs; the time indicator at the bottom stalls at zero and the volumne bar drops by 2 . black screen and nothing.
 
Posts: 11 | Thanked: 2 times | Joined on Feb 2009 @ Sparrows Point, MD
#34
I just tested another thing, i copied the Nokia_N810.avi vid from the device to the internal SD card and it gives me the same error. black screen no video no time. can't canola play vid from the SD cards either internal or external? could there be a problem with the SD cards i am using? they are both Transcend SDHC 8 gig cards.
thanks in advance
cdr
 
Posts: 1,950 | Thanked: 1,174 times | Joined on Jan 2008 @ Seattle, USA
#35
Canola can play from SD cards. The specific card type you are using has a positive history (use one myself).

Maybe you need to uninstall and re-install Canola. I guess if you do that, you ought to do a regular uninstall, then download and run Canola2-cleanup (one of your installable applications), then re-install Canola. Will it fix the problem? I don't know.

Also, you (and I) probably should be pursuing this on a thread dealing with Canola problems, not video quality, such as this one.

Last edited by GeraldKo; 2009-05-12 at 20:08.
 
Posts: 11 | Thanked: 2 times | Joined on Feb 2009 @ Sparrows Point, MD
#36
Thanks for the info GeraldKo, i'll try what you suggested and i will copy the results onto the thread you suggested for the Canola Problems.
cdr
 

The Following User Says Thank You to seadeeare For This Useful Post:
Posts: 8 | Thanked: 8 times | Joined on Aug 2009
#37
Originally Posted by Jaffa View Post
Right, I've added support to check the sample rate of the video as well as the bitrate; it can be got here:

https://garage.maemo.org/plugins/scm...oot=mediautils

Please let me know if it works. This version also includes subtitle support and, before release, will fix the issue with two-pass encoding.

Thanks,

Andrew
This version works well but it often fails silently on two-pass encoding. By making the change proposed by Frank Banul in thread http://forums.internettablettalk.com...ad.php?t=25926 this is solved, so now it downsamples to 44100 and I can use a .tablet-encode.conf containing '$options{'two-pass'} = 1;'

From Frank's post:

So I made the minimum rate zero.

':vrc_buf_size=450'.
#':vrc_minrate='.int($ovbitrate / 2).
':vrc_minrate='.int(0).
':vrc_maxrate='.max($ovbitrate * 1.25, 1000);
It looks like development on this and almost every other N8*0 project is stopped but it would be nice to see a revised version of the script released so it can be found and enjoyed easily, instead of via a myriad of google searches, chance discovery of this unreleased version (which as far as I can tell is referenced nowhere except in this thread, and is not accessible via the usual garage/project pages), and DIY corrections.

People are still buying these devices
 

The Following User Says Thank You to takla For This Useful Post:
Posts: 25 | Thanked: 0 times | Joined on Feb 2008 @ Minnesota
#38
I have a gaming rig my brother mostly uses but it sports a core i7 sso ripping dvds takes a few minutes. In my experience the bit rate id the video makes a big difference. I don't know that much about it. Here are my settings for decent video. BTW I use handbrake.
container: avi
Format: mpeg4
resolution: 400 x 240
video bitrate: 1500
audio: Mp3
 
Posts: 8 | Thanked: 8 times | Joined on Aug 2009
#39
Originally Posted by T-unit View Post
I have a gaming rig my brother mostly uses but it sports a core i7 sso ripping dvds takes a few minutes. In my experience the bit rate id the video makes a big difference. I don't know that much about it. Here are my settings for decent video. BTW I use handbrake.
container: avi
Format: mpeg4
resolution: 400 x 240
video bitrate: 1500
audio: Mp3
I was using Handbrake for a lot of stuff too but Handbrake is dropping support for .avi container and while it's still cross platform it is focusing very heavily on making encodes for Apple Mac, iPod, Apple TV, iPhone and so on, so this means mp4/m4v H264 and aac.
 
Posts: 8 | Thanked: 8 times | Joined on Aug 2009
#40
I wasn't satisfied with the quality produced even using 'mplayer' preset. There is really excessive blockiness, which tends to be a feature of MPEG-4 anyway, but in this case it is far too apparent.

So I've been exploring different mencoder options and making some comparisons.

Anyway I've found the culprit isn't bitrate (mostly), it's the fact that various extremely important codec options are not being used, namely mbd, v4mv, and trellis, while the unsharp filter is used but offers no clear benefit. After doing some tests and timing the encodes as well as looking at the output visually and comparing the numbers I can definitely say that adding mbd=2:v4mv:trell to the codec options adds to the encode time, but using the turbo option more than makes up for that, the total two pass encode time becomes shorter overall. The bitrate dictates the filesize so that remains unchanged. The huge difference is in the quality of the output. It is transformed and looks absolutely fantastic even with very challenging scenes.

Another change that would be beneficial would be to drop constant bitrate audio and use a lame vbr preset, either
Code:
fast:preset=medium
or
Code:
fast:preset=standard
The latter gives better quality than tablet-encode currently offers and has the benefit of a slightly smaller filesize. The 'medium' option would give a significant reduction in filesize while still offering very good quality.

The standard Nokia N810 media player works absolutely fine with these changes.

Here are the differences:

Tablet-encode audio:

Code:
-lameopts vbr=0:br=192 -af volnorm
Suggested audio:

Code:
-lameopts fast:preset=standard -af volnorm=1
Tablet-encode video options:

Code:
-vf-add unsharp=c4x4:0.3:l5x5:0.5 -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=<bitrate_value>:aspect=<aspect_value>:vrc_buf_size=450:vrc_minrate=0:vrc_maxrate=1000:vpass=#
Suggested video options:

Code:
-ovc lavc -lavcopts vcodec=mpeg4:mbd=2:v4mv:trell:vbitrate=<bitrate_value>:aspect=<aspect_value>:turbo:vpass=#
The options vrc_buf_size=450:vrc_minrate=0:vrc_maxrate=1000 would seem to be redundant when using lavc as it accepts the specified bitrate as a maximum anyway, and intelligently uses less if the specified rate is not required. The turbo option significantly speeds up the first pass, by over 40% sometimes, and it's fine to leave the option in on the second pass when it will be ignored, no harm done.

In summary I've found that with these changes to the video options and even using lame's preset=standard I get a slightly faster encode and slightly smaller filesize (though both these will vary from file to file) but a huge increase in quality, very noticeable even on the small N810 display. I can't find a downside.

Last edited by takla; 2009-10-06 at 23:33.
 

The Following 6 Users Say Thank You to takla For This Useful Post:
Reply

Tags
codec, encode, encoding, mplayer, video


 
Forum Jump


All times are GMT. The time now is 09:07.