maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Maemo 5 / Fremantle (https://talk.maemo.org/forumdisplay.php?f=40)
-   -   [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS] (https://talk.maemo.org/showthread.php?t=77695)

faustomiglioresi 2015-02-17 17:44

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Is still possible to install this application in n900 with the latest cssu 10.1+thumb0? if is possible just follow the guide in the first post? Grazie

handaxe 2015-02-17 21:38

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Quote:

Originally Posted by faustomiglioresi (Post 1461056)
Is still possible to install this application in n900 with the latest cssu 10.1+thumb0? if is possible just follow the guide in the first post? Grazie

Yes it is. You need kernel power.

faustomiglioresi 2015-02-17 23:59

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Quote:

Originally Posted by handaxe (Post 1461074)
Yes it is. You need kernel power.

but i have the Kernel for Cssu is it ok? the first post says (or cssu Kernel)

freemangordon 2015-02-18 06:34

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
yes, it is ok

branja 2015-02-18 09:32

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Is there a way that we can change audio bitrate in videos?

faustomiglioresi 2015-02-18 17:10

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Quote:

Originally Posted by freemangordon (Post 1461106)
yes, it is ok

So, just follow the guide in the first post? There are no significant news during the thread? I have not read everything.
Grazie

gianko 2015-04-09 18:13

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Bit OT but can I ask if there is a chance to record slow motion videos with N900 camera at 1/8 sec like this one?

xiskillo 2015-04-09 18:47

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Quote:

Originally Posted by gianko (Post 1466244)
Bit OT but can I ask if there is a chance to record slow motion videos with N900 camera at 1/8 sec like this one?

good question... maybe with FCam drivers its possible..

i would like to know if there is any option for improve and up the one second limit in exposure time for photos that i saw in fcam test video or this API cant surpass this limit..

handaxe 2015-04-10 17:22

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
Quote:

Originally Posted by xiskillo (Post 1466248)
i would like to know if there is any option for improve and up the one second limit in exposure time for photos that i saw in fcam test video or this API cant surpass this limit..

I believe it is a limitation - the camera-ui2 (foss replacement) could not do any different, so I guess it is there to stay.

gianko 2015-04-13 12:26

Re: [HOWTO]Watch 720p videos on n900 [09.12.2011 VIDEOCALL WORKS]
 
what about using a perl script...

this one is for timelapse

Code:

# 2009.12.17  First version.
# 2009.12.24  Better gstreamer pipeline; more options, with better descriptions.

use strict;

#---- CONFIG SECTION ---- [BEGIN] ----

 my ($x,$y) = (800, 480);              # image resolution - try (2592, 1968)
 my $cam    = 0;                        # camera: 0 = back, 1 = front
 my $dir    = '/home/user/MyDocs/FCamera'; # folder where images will be saved
 my $max    = 800;  # total number of images to take
 my $delay  = 3;  # interval between pictures

#---- CONFIG SECTION ----  [END]  ----

die "$dir not found!\n" if !-d $dir;

my $gst = "/usr/bin/gst-launch v4l2camsrc device=/dev/video$cam num-buffers=1 ! ffmpegcolorspace ! video/x-raw-yuv,width=$x,height=$y ! jpegenc ! filesink location=";

my $num=0;

print "Intervalometer started - will take $max pictures at $x x $y\n";

while ($num < $max) {
        $num=sprintf'%05d',$num;
        `$gst$dir/$num.jpg`;
        printf "saved %d of %d", $num+1, $max;
        $num++;
        if ($num < $max) { print " - sleeping $delay sec."; sleep $delay; }
        print "\n";
}

is it possible to set delay to 1/8 second ?


All times are GMT. The time now is 20:42.

vBulletin® Version 3.8.8