search for: clip2

Displaying 7 results from an estimated 7 matches for "clip2".

Did you mean: clip
2018 Jun 01
1
rasterize SpatialPolygon object using a RasterBrick object
...s2 = Polygons(list(Sr2), "s2") Srs3 = Polygons(list(Sr3, Sr4), "s3/4") SpP = SpatialPolygons(list(Srs1,Srs2,Srs3), 1:3) plot(b[[1]]) plot(SpP, add = T) # crop clip1 = crop(b, extent(SpP)) # rasterize returns an error, but documentation says it should return a RasterBrick object clip2 = rasterize(SpP, b, mask = T) Error in v[, r] <- rrv : number of items to replace is not a multiple of replacement length # however, if I used only one layer, all would be fine clip2 = rasterize(SpP, b[[1]], mask = T) Of course, I could loop over the brick's layers, but as I understand...
2001 Jul 13
6
as if you haven't seen this yet
i'm sure most of us are avid slashdot readers, but... http://slashdot.org/article.pl?sid=01/07/13/1558239&mode=nested have fun dongoodman %--------------------------------------------deg3@ra.msstate.edu| |bleu| |`I invented the term 'object oriented', pobox 2516| |----| |and I can tell you mississippi state ms| | () | /. |I did
2004 Jun 02
4
Splicing audio clips into one stream
Is there a Linux tool that will splice several gsm sound clips together into one clip? In my agi script, I would like to use 'get_data' with one clip instead of multiple 'stream_file' so the user doesn't have to listen to the entire spiel before responding. Thanks, -- Michael Welter Introspect Telephony Corp. Denver, Colorado +1 303 674 2575 mike@introspect.com
2007 Jun 18
0
Branch 'as' - 8 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_sprite.c libswfdec/swfdec_sprite.h libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_sprite_movie.h libswfdec/swfdec_swf_decoder.c libswfdec/swfdec_swf_decoder.h
...rawLineTo (shape, 50, 0); + SWFShape_drawLineTo (shape, 50, 50); + SWFShape_drawLineTo (shape, 0, 50); + SWFShape_drawLineTo (shape, 0, 0); + + SWFMovieClip_add (clip, (SWFBlock) shape); +} + +static void +modify_placement (SWFMovie movie, guint mod) +{ + SWFDisplayItem item; + SWFBlock clip, clip2; + + clip = (SWFBlock) newSWFMovieClip (); + add_rectangle ((SWFMovieClip) clip, 255, 0, 0); + SWFMovieClip_nextFrame ((SWFMovieClip) clip); + clip2 = (SWFBlock) newSWFMovieClip (); + add_rectangle ((SWFMovieClip) clip2, 0, 0, 255); + SWFMovieClip_nextFrame ((SWFMovieClip) clip2); + + item...
2013 Mar 06
2
can you suggest on extending ogg as short-clip container and the make of its tool?
...gg page maxes at 64kB, equivilent to 11 seconds, enough to hold longest context audio clip of most games, and having multiple pages corresponding to one subtitle piece is okay with the design too. -- The tool can be something like this: $ oggz binder --page-size=32kB --codec opus clip1.raw clip2.raw ... > clips.ogg I have two more specific questions: 1. Is it better to design a tool that only handle bookbinding of raw audios, and let oggz-merge to merge the subtitle (file-names) into it? This fits the one-tool-does-one-thing-only idea, but I am afraid made things unnecessarily...
2007 Jun 19
0
Branch 'as' - 4 commits - libswfdec/swfdec_codec_video.c libswfdec/swfdec_movie.c test/trace
...uot;), SWFACTION_ONLOAD); + SWFDisplayItem_addAction (item, newSWFAction ("trace (_root._currentframe + \": unload \" + this);"), SWFACTION_UNLOAD); +} + +static char * +modify_placement (SWFMovie movie, guint mod) +{ + GString *name; + SWFDisplayItem item; + SWFBlock clip1, clip2; + + name = g_string_new ("place-object"); + if (mod & MODIFY_REMOVE) + g_string_append (name, "-remove"); + clip1 = (SWFBlock) newSWFMovieClip (); + if (mod & MODIFY_DIFFERENT_CHAR) { + if (mod & MODIFY_HAS_CHAR) { + clip2 = (SWFBlock) newSWFButton ()...
2012 Aug 27
2
Font size in geom_dl (using ggplot2)
Hey everyone, I am an R-newby... so sorry for bothering you with simple-to-solve questions;) I have the following issue: trying to add labels to my scatterplots (with geom_dl in ggplot2). Everything works fine, but after checking every resource I do not find a way to change the font size of my labels. I tried size, cex, fontsize at every position... but it always stays the same. ggplot()+