![]() |
2015-02-17
, 17:44
|
Posts: 17 |
Thanked: 4 times |
Joined on Jun 2010
|
#1351
|
![]() |
2015-02-17
, 21:38
|
Posts: 1,378 |
Thanked: 1,604 times |
Joined on Jun 2010
@ Göteborg, Sweden
|
#1352
|
![]() |
2015-02-17
, 23:59
|
Posts: 17 |
Thanked: 4 times |
Joined on Jun 2010
|
#1353
|
![]() |
2015-02-18
, 06:34
|
Posts: 3,074 |
Thanked: 12,964 times |
Joined on Mar 2010
@ Sofia,Bulgaria
|
#1354
|
The Following 3 Users Say Thank You to freemangordon For This Useful Post: | ||
![]() |
2015-02-18
, 09:32
|
Posts: 91 |
Thanked: 50 times |
Joined on Mar 2012
@ Kula, Serbia
|
#1355
|
![]() |
2015-02-18
, 17:10
|
Posts: 17 |
Thanked: 4 times |
Joined on Jun 2010
|
#1356
|
![]() |
2015-04-09
, 18:13
|
Posts: 445 |
Thanked: 367 times |
Joined on Nov 2010
@ Italy
|
#1357
|
The Following User Says Thank You to gianko For This Useful Post: | ||
![]() |
2015-04-09
, 18:47
|
|
Posts: 88 |
Thanked: 77 times |
Joined on Nov 2009
@ Spain
|
#1358
|
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?
![]() |
2015-04-10
, 17:22
|
Posts: 1,378 |
Thanked: 1,604 times |
Joined on Jun 2010
@ Göteborg, Sweden
|
#1359
|
![]() |
2015-04-13
, 12:26
|
Posts: 445 |
Thanked: 367 times |
Joined on Nov 2010
@ Italy
|
#1360
|
# 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"; }
![]() |
Tags |
balls, gpl violation, hackjobs, lgpl violation, nokia, upgrade..., video player |
|