Displaying 20 results from an estimated 2000 matches similar to: "oggenc RC2: output filename"
2003 Nov 10
1
decoder with special features needed: pointers, ideas?
Hi everybody,
I want to use a ogg-equipped notebook for playing music for (folk and
ballroom) dancing,
and a player for this should have two features I' like to find or implement:
(1) I want the middle part of a song repeat "endlessly", with two track marks
that I want to hide somewhere in a vorbis comment.
(One day I want to control that with a gui or SIGUSR1 or something else,
2007 Mar 04
1
Problem using callNextMethod() in S4
Dear all,
Maybe, I am doing something wrong, but using R-2.5.0 on my Intel-Mac, I
have problems
using function callNextMethod() in method initialize.
I am loading the following code as file "testS4.R":
setClass("baseClass",
representation(myname = "character",
mydir = "character",
"VIRTUAL"),
2011 Mar 03
2
Greek character and R
Dear R users.
In a loop, I set the title of my graph with :
mytitle = expression(paste(delta^13,'C Station ', i)
title(mytitle)
However, instead of using value of i, it will literally use "i" character.
Any one know the way to concatenate the value of i to the mathematical
expression?
With regards,
Phil
--
View this message in context:
2012 Feb 03
1
incomplete final line found on <name of my sourced function file>
Dear R-ers,
I hope there is a really simple solution to my problem.
I've written a function that I saved in an .r file. I source this file
in my code. For a while it worked fine. But then when I run the line:
source("F mylineplot.r")
I started getting a warning:
In readLines(file) : incomplete final line found on 'F mylineplot.r'
I have no idea why - I tried to check and
2008 Sep 25
2
ggplot, qplot in loop
Dear List,
yes, me again trying to work with qplot ;-)
I would like to make several single plots within a loop, like this
(simplified and so on...):
trials <- c("A","B","C")
mycolours <- ("wheat","darkolivegreen","lightgreen",
2017 Mar 14
2
gráfico jpg png
Estimados
Hace unos días envié un correo porque tenía problemas para guardar los gráficos en el disco rígido, utilizando R server 9, comentaba que el código antes funcionaba pero que tenía fallas.
No encuentro mi mensaje en la lista para continuar el hilo, encontré el problema, no lo comprendo del todo pero cambiando jpg por png funciona, aparentemente hay un inconveniente para guardar en jpg.
2010 Nov 16
1
Sweave: \Sexpr and variables with special chars
I am using \Sexpr to include a variable in a title of a Sweave document:
\documentclass[a4paper]{article}
<<echo=false, results=hide>>=
#mytitlevar <- "Stuff" # case 1, everything is find
mytitlevar <- "Stuff_first" # case 2, f is turned into sub-text
@
\title{MyTitle: \\ \Sexpr{mytitlevar} }
\begin{document}
\maketitle
\end{document}
When doing this, the
2001 Sep 29
0
oggenc autonaming with bitrate and input filename.
I thought it would be useful for testing to include the bitrate in the output
filename. I often screw it up and overwrite it by accident. That facility
appears in the -n string as %B (uppercase to distinguish it from any comment
field argument). I also implemented %F for input filename, for completeness
and to save the bother of having to add a comment to a test file just so -n
can be used.
2001 Aug 09
1
oggenc -n legal filename issue
I was about to patch oggenc to replace '/' in the strings included in the -n format [*], but that's too platform specific. Thinking waaaaay back, I realise that it's not even Windows versus the rest of the world. How should this be handled? The Windows criteria are probably generally useful, they include nuisance characters for shells, but I wouldn't like to lose colon
2006 Jul 22
0
RSS XML Generation Problem
I''m getting an interesting problem. I''d trying to generate an RSS document
and then real it from outside of my app. Here''s what the view looks like.
xml.instruct! :xml, :version=>"1.0"
xml.rss(:version=>"2.0"){
xml.channel{
xml.title("mytitle")
xml.link("http://www.myapp.com")
2006 Jun 21
0
Some R-Tcl/Tk-BWidget newbie questions.
Dear list,
Could somebody who is more experienced with the Tcl/Tk interface from R
please help me clarify the issues I've put below with ### --> tags?
Several things go wrong, and it's probably because of messy code, but I
have a difficult time finding out what is the cause.
Thanks very much,
JeeBee.
require(tcltk) || stop("Package tcltk is not available.")
# Add path to
2007 Mar 31
1
Problem with S4 inheritance: unexpected re-initialization?
Dear all,
To explain my problem I am attaching a demonstration package "myclasspkg":
I have the following two S4 classes with similar inheritance:
SubSubClassA <- SubClassB <- BaseClass
SubSubClassB <- SubClassB <- BaseClass
In R I am calling the following functions:
> library(myclasspkg)
> subA <-
2005 Sep 12
0
Applied Quantitative Analytics in Finance
2005 APPLIED QUANTITATIVE ANALYTICS IN FINANCE EVENT o OCTOBER 6, 2005 o
LONDON
Please join us at the Museum of London for a series of guru-led
presentations, networking, and demonstrations by academic and business
thought leaders in finance from Basel II Committee, Swiss Union of Raiffeisen
Banks, Swiss Federal Institute of Technology (ETH) in Zurich, UBS Warburg,
Ingenious Media Plc. and
2007 Apr 26
2
SweaveInput and absolute paths
Hi,
Is there a way to turn off the automatic inclusion of "./" at the
beginning of a path specified in an \SweaveInput{} instruction?
I'd like to create some reusable "template modules" of Sweave code and
put them in a standard directory like
/Resources/Affymetrix
Then the corresponding file that uses one of these would include a
command like
2009 Feb 11
0
failmode= continue prevents zpool processes from hanging and being unkillable?
> Dear ZFS experts,
> somehow one of my zpools got corrupted. Symptom is that I cannot
> import it any more. To me it is of lesser interest why that happened.
> What is really challenging is the following.
>
> Any effort to import the zpool hangs and is unkillable. E.g. if I
> issue a "zpool import test2-app" the process hangs and cannot be
> killed. As this
2001 Dec 02
2
bug report for oggenc in CVS: vorbis-tools/oggenc/encode.c
I was wondering why my CD ripping was producing short files from some tracks.
A superficial examination of the code shows this piece of code in vorbis-tools/oggenc/encode.c:
Line 120:
/* Main encode loop - continue until end of file */
while(!eos)
{
[...]
/* While we can get enough data from the library to analyse, one
2006 Nov 14
3
Plot title with numeric variables
I am trying to create a plot title in R with substitution by a numeric
variable (Figure number N) within the text which is bold and has a
subcripted part as well. Here is what I have:
title <- expression(bold(paste("Figure ", N, ": Plot ", C[max], " versus
CrCL")))
plot(1, main="") # Simple plot for testing
N <- 5
mtext(title, line=3, font=2,
2001 Sep 05
2
Understanding of Vorbis coder
Hi
I have gone through the document available in the net regarding the
Vorbis encoder /Decoder.
Based on that i have prepared a understanding document on the
encoder/decoder block. I would like to
know whether my understanding of the coder is OK. If there are any
other additional block /information pl. provide me
with the same.
Thanks and regards
S.Padmashri
<HR NOSHADE>
<UL>
2006 Feb 08
2
URL rewriting
Here is the scenario I am trying to achieve. Basically, I want to run
the action "show" from my controller, without adding the "show/id".
Standard:
http://www.domain.com/controllerName/show/id
I would like:
http://www.domain.com/controllerName/randomstring (where randomstring is
a
field in my model/table, that is equivalent to a GUID -> and unique).
I''m confused
2001 Jan 16
0
AIFF support in oggenc
For those that are interested in beating it up and complaining that it doesn't work on particular input files, cvs oggenc now supports AIFF input.
I've tested it with 1 (one) file, which was a conversion using sox. So I don't expect it to work with everything.
If others have files that it doesn't work properly with, let me know (preferably with a short description of what was