search for: outfile2

Displaying 8 results from an estimated 8 matches for "outfile2".

Did you mean: outfile
2017 Nov 15
0
vcut(1) and its manpage
...@@ -1,30 +1,30 @@ -.\" Process this file with -.\" groff -man -Tascii vcut.1 -.\" -.TH VCUT 1 "2003 September 1" "Xiph.Org Foundation" "Vorbis Tools" - -.SH NAME -vcut \- cuts Ogg Vorbis files - -.SH SYNOPSIS -.B vcut -.I infile.ogg -.I outfile1.ogg -.I outfile2.ogg -.I [ cutpoint | +cutpoint] - -.SH DESCRIPTION -.B vcut -reads an Ogg Vorbis audio file and splits it at the given cutpoint, which is a -sample number. If the cutpoint is prefixed with '+', the cutpoint is an -integer number of seconds. - -.SH AUTHORS - -.TP -Program Author: -Michael S...
2013 Apr 23
1
One more question please...
...e="ndvits"), "/", sep="") region="Mzimba" Ystart=2004 Yend=2006 shape="SLP_Mzimba" shapedir=paste(system.file("extdata/shape", package="ndvits"), "/", sep="") outfile = "mzimbaTS2.txt" outfile2 = "MzimbaTS2.pdf" outfiel3 = "my.pdf" signal = TimeSeriesAnalysis(shape, shapedir, ndvidirectory, region, Ystart, Yend, outfile, outfile2) Village But the same code is not going well in linux terminal by R script, it is continually repeat the line enter Village or Country, what...
2013 Apr 24
1
R Interactive Mode
...="ndvits"), "/", sep="") region="Mzimba" Ystart=2004 Yend=2006 shape="SLP_Mzimba" shapedir=paste(system.file("extdata/shape", package="ndvits"), "/", sep="") outfile = "mzimbaTS2.txt" outfile2 = "MzimbaTS2.pdf" outfiel3 = "my.pdf" signal = TimeSeriesAnalysis(shape, shapedir, ndvidirectory, region, Ystart, Yend, outfile, outfile2) How it is possible to call the package by default indicating Village option /we don't want to enter the parameter and don't want...
2013 Apr 23
0
One more question...
...e="ndvits"), "/", sep="") region="Mzimba" Ystart=2004 Yend=2006 shape="SLP_Mzimba" shapedir=paste(system.file("extdata/shape", package="ndvits"), "/", sep="") outfile = "mzimbaTS2.txt" outfile2 = "MzimbaTS2.pdf" outfiel3 = "my.pdf" signal = TimeSeriesAnalysis(shape, shapedir, ndvidirectory, region, Ystart, Yend, outfile, outfile2) Village So the village is passed, but when I am running it in R script from the linux terminal it is repeating the line when I need to ente...
2013 Apr 23
0
Need a little help about this script...
...e="ndvits"), "/", sep="") region="Mzimba" Ystart=2004 Yend=2006 shape="SLP_Mzimba" shapedir=paste(system.file("extdata/shape", package="ndvits"), "/", sep="") outfile = "mzimbaTS2.txt" outfile2 = "MzimbaTS2.pdf" outfiel3 = "my.pdf" signal = TimeSeriesAnalysis(shape, shapedir, ndvidirectory, region, Ystart, Yend, outfile, outfile2) Village I have run this in rstudio successfully, so the Village is passed to c() function, but when I am trying to run it from R script in...
2002 Jul 16
1
Coffee Break...
Here's a coffee break for all you coders out there. I use to run a BBS system back before the web and this was sent to all on my BBS system by Tim Saari. Don't know if he wrote it or not though... :) (Sung to the tune of "Let it be") When I find my code in tones of trouble, Friends and colleges come to me, Speaking words of wisdom: "Write in C". As the deadline fast
2002 Jul 16
1
Coffee Break...
Here's a coffee break for all you coders out there. I use to run a BBS system back before the web and this was sent to all on my BBS system by Tim Saari. Don't know if he wrote it or not though... :) (Sung to the tune of "Let it be") When I find my code in tones of trouble, Friends and colleges come to me, Speaking words of wisdom: "Write in C". As the deadline fast
2005 Jan 02
3
Recursively vcutting
...existence of a script which would do this, or know how I'd go about making one? So say I had a 60 min file (60mins.ogg) I'd like to issue a command something like > split outfilename 60mins.ogg 600 which would do a series of vcuts vcut outfile1.ogg tmpfile.ogg 60mins.ogg +600 vcut outfile2.ogg tmpfile2.ogg tmpfile.ogg +600 /bin/rm tmpfile.ogg vcut outfile3.ogg tmpfile3.ogg tmpfile2.ogg +600 /bin/rm tmpfile2.ogg ....... until it's reached the end of the file I'm not sure how to tell the script how long the file is, I'm sure it's possible with an awk on the output...