Displaying 20 results from an estimated 400 matches similar to: "--until decodes rest of file?"
2004 Sep 10
0
--until decodes rest of file?
sorry about the delay on this one...
do you have a sample flac file that you can host that exhibits
the problem?
Josh
--- Donald Gordon <don@dis.org.nz> wrote:
> Hi
>
> I'm having a seemingly odd problem with flac 1.1.0: when I decode a
> large (CD size) flac file, using --skip and --until to extract a
> single
> track, flac appears to continue to decode until it
2004 Sep 10
1
--until decodes rest of file?
On Fri, 7 Nov 2003 11:42:05 -0800 (PST) Josh Coalson <xflac@yahoo.com> wrote:
> sorry about the delay on this one...
>
> do you have a sample flac file that you can host that exhibits
> the problem?
Ha. The flac files used in the examples below were of entire audio CDs;
due to my use of "time" to demostrate the problem I need a fairly large
file.
I can simulate the
2004 Sep 10
1
[Flac-users] How should I do?
Hello,
I am Minamisawa, from Japan.
I tried to decode some files by FLAC, but it doesn't work it, and the
message is shown in top.
It's below;
========================================================================
=======
flac - Command-line FLAC encoder/decoder version 1.1.0
Copyright (C) 2000,2001,2002,2003 Josh Coalson
This program is free software; you can redistribute it
2004 Sep 10
2
[Flac-users] Verify Failures
So I'm getting errors like the appended one for about one out of every
four CDs I encode. If I delete the half-created flac file and try again,
it works the second time. Is flac non-deterministic? Or do I have some
serious problems here?
cjs
--
Curt Sampson <cjs@cynic.net> +81 90 7737 2974 http://www.netbsd.org
Don't you know, in this new Dark Age, we're all light.
2004 Sep 10
2
Re: Bug#196556: flac: FLAC__STREAM_ENCODER_NOT_STREAMABLE
On Sun, Jun 08, 2003 at 02:06:18AM +0200, Paul Seelig wrote:
> This is what i get when trying to encode a WAV file:
>
> ------------- snip -----------------
> [pseelig]/tmp > flac -o YouGotMail.flac YouGotMail.wav
>
> flac 1.1.0, Copyright (C) 2000,2001,2002,2003 Josh Coalson
> flac comes with ABSOLUTELY NO WARRANTY. This is free software, and you
> are welcome to
2004 Sep 10
5
[Flac-users] Re: settings for tighter compression than -8?
Early this past week, Miroslav Lichvar suggested for me:
> Ok, you need 0.04% improvement, that should not be a problem. Try
> flac --lax -e -p -l 32 -r 10 --no-padding
Thank you again, Miroslav. I tried that, and it took almost two full
days (surprisingly, Windows ME stayed up that long without crashing) to
re-encode the entire set on my 266-MHz machine. After all, in the help
file
2004 Sep 10
2
[Flac-users] If it decodes OK, would it have tested OK?
Sorry for the elementary question, but heck, that's why I'm on
flac-users and not on flac-developers.
If a .flac file decodes without error, does that mean that it would have
tested OK? I've been assuming that there's an implicit test in the
decoding process, and that a mismatch on the internal checksum would
make flac report an error on decoding instead of simply saying
2005 Feb 10
5
Annual cumulative sums from time series
Hello world,
I am actually transferring a course in data management for
students in biology, geography and agriculture
from statistica to R - it works
surprisingly well. If anyone is interested in my scratch/notepad
(in German language), please see
www.hydrology.uni-kiel.de/~schorsch/statistik/statistik_datenauswertung.pdf
(pages 40-52)
The dataset is:
2007 Mar 27
1
REST rspec_generator
Is there some reason that the rspec resource generator produces code
like this:
context "Routes for the AnimalsController should map" do
controller_name :animals
specify "{ :controller => ''animals'', :action => ''index'' } to /
animals" do
route_for(:controller => "animals", :action =>
2006 Aug 02
1
REST, Resource, etc
So, what''s the deal with all this REST and Resource stuff? Why should
I care about it? How does it help me? Why is it cool?
Everywhere I see the stuff mentioned, it assumes you already know what
it is and why it''s good.
Thanks,
Joe
2006 Aug 02
1
REST and functional tests
Just playing around with converting an apps to the new REST goodness in
edge rails, and I''m trying to work out how to convert/write the
functional tests.
Is the recommended way to explicitly use the actions (e.g. get :show,
:id => ...; post :create,..., etc) and test the routes separately, or
duplicate the request, in which case how is that done get "/", :id => 5
2006 Aug 09
3
REST Client
Hello,
I would like to make some REST calls in my rails application which will
then parse the XML results and display them in a view. What I am having a
hard time doing is figuring out how to make the actual REST Call?
I have figured out how to use XMLRPC , but the site only supports REST. Is
there an easy way to initiate the GET/POST REST Calls that I need to make
and analyze the returned
2006 Aug 11
2
Some questions of REST actions
I''ve set up my application to use edge rails in order to get REST
functionality.
I''ve a controller called team (team_controller.rb) with some actions
(index, list,
show, create, new....). Moreover in routes.rb I''ve added
map.resources :team
so I guess I could call
localhost:3000/xxxx/team/1
or
localhost:3000/xxxx/team/1;edit
Well, when I do the first call, server
2006 Aug 14
1
Testing CRUD/Rest Controllers
I have a few simple controllers doing plain, simple crud in a standard way.
now it''s not very DRY to write a funtcional test for each controller, since
they are all doing the same (apart from a few variable names, but that could
be easily inflected or so).
is there a way to do this?
e.g. does inheritance work with tests, so i define a base test first,
inherit my other tests and add a few
2006 Nov 04
0
How do CRUD and REST work for a wizard-style application?
I''m rewriting an application with the intention to use the elegant
CRUD and REST design principles as outlined by DHH in his RailsConf
Keynote[1].
The question is: how do you use those principles for an application
that is of a sequential nature?
The application works much like an MS Windows wizard: user begins at
screen foo. After doing (or not) some stuff in screen foo, he is taken
to
2006 Jul 03
0
REST vs. render vs. redirect_to w.r.t. create error messages, efficiency and the desired URL
Hi,
Something has been bothering me for a long time and I''d like to know
what other think about this common situation with Rails.
Someone is looking at http://example.com/user/new where there is a
form that POSTs the data to the user/create action. The controller
might look like
def new
@user = User.new
end
def create
@user = User.new(params[:entry])
if @user.save
2006 Jul 09
1
REST Interface
Is the REST Controller (for calling APIs through the REST interface)
already built-in ?? Or, I have to generate one -- generate controller
rest ??
MSN id: ICEMANyears@netscape.net
--
Posted via http://www.ruby-forum.com/.
2006 Jul 18
0
AJAX issue: How to push rest of records up after deleting a record
I''m trying to develop a simple to-do list to learn RJS.
Thigns are working fine as long as I add new items. Let''s say I have three
items.
item 1 - delete
item 2 - delete
item 3 - delete
When I click delete on the item2 to delete it, the items does get deleted.
But that row becomes empty. The item 3 doesn''t get pushed up.
Does it mean that I should render the whole
2006 Jul 21
1
Lighttpd for rails app subdomain apache for the rest
I want to host a rails app at mydomain.com/railsapp. For technical
reasons I have to leave mydomain.com on apache. This means that I need
to tell apache to proxy only requests for mydomain.com/railsapp to
lighttpd. I have deployed in a situation like this before around a year
and a half ago but it was a real pain. Lighttpd and rails have matured
a lot in the year and a half since I did
2006 Jul 23
2
REST controller with up and down for model that acts_as_list
Hi,
I have the following models
class Department < ActiveRecord::Base
has_many :products
end
class Product < ActiveRecord::Base
belongs_to :department
acts_as_list :scope => :department_id''
end
When I look at a list of products for a particular department I have
up and down buttons to re-order the products. Currently my controller
is something like this
class