similar to: how to use RMovie

Displaying 20 results from an estimated 7000 matches similar to: "how to use RMovie"

2007 Aug 09
2
Rmovie on windows
Can rmovie be installed in a windows environment? When I run "gem install rmovie". It gives the following error: Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError) ERROR: Failed to build gem native extension. ruby extconf.rb install rmovie ''make'' is not recognized as an internal or external
2009 Mar 11
1
from Adobe Flex / Flash Player 10 .flv Speex via Red5 to .wav PCM?
I am having trouble converting a .flv file uploaded from Adobe Flex / Flash Player 10 to a Red5 server using the speex coder: http://livedocs.adobe.com/flex/3/langref/flash/media/Microphone.html http://jira.red5.org/confluence/display/codecs/Speex+Codec Questions: 1. How do I extract the audio track out of such a .flv file? 2. How do I convert it from Speex to .wav PCM? Thanks.
2008 Jun 09
4
YUI vs GWT vs ExtJS vs ????
I would like y''all''s opinions on ease of implementation into Rails, quality and quantity of widgets etc between Yahoo User Interface and Google Web toolkit and ExtJS. I am just getting ready to invest a huge amount of effort into one of them and I would like to know what the community''s experience has been with these toolsets. OR.. is there a better open source set of
2008 Apr 19
4
Displaying external url's
I am a rails beginner and I am having trouble displaying external urls on view. This is what i have in DB for ex: www.rubyonrails.com, if i try to construct the url on the page using link_to the url formed is - http://localhost:3000/www.rubyonrails.com. Can someone help me in fixing this issue. Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you
2008 Apr 24
2
select_tag and link_to
Does ROR allow passing the chosen value from a drop down using select_tag into link_to ? Basically I want to do something like: <%= select_tag( "name", options_for_select(%w{John Doe Jane })) %> <%= link_to "Delete", { :controller => "myname", :action => "add", :id => name },
2008 Apr 20
10
Actionmailer not working [no errors]
hi, I have a little problem with actionmailer 2.0.2 The problem is that I am trying to send mails and development.log says that everything is ok but I can''t find any mails in my mailbox. I checked my sendmail with PHP function "mail()" - works nice. /var/log/mail.log don''t drop any lines when sending mails with actionmailer. So in conclusion no errors and no way to
2008 Feb 22
5
routing?
Hello RoR Developers I want to create parameter in routes.rb which is wanted to be used in javascript code in view page. there is select object in my view page and this parameter will get value from select object however that my select object is not in form. how can I create parameter in routes.rb and equals to option value. thank you very much for any commend. -- Posted via
2009 Mar 12
0
compiling ffmpeg with --enable-libspeex (was Re: from Adobe Flex / Flash Player 10 .flv Speex via Red5 to .wav PCM?)
This is resolved: apt-get remove libspeex-dev cd ~/src/speex-1.2rc1/ ./configure --prefix=/usr make; make install cd ../ffmpeg ./configure --enable-libspeex make; make install worked; then I was able to decode a Speex .flv file: ~/flvs$ ffmpeg -i SpeexQ6R16Efalse.flv foo.wav FFmpeg version SVN-r17174, Copyright (c) 2000-2009 Fabrice Bellard, et al. configuration: --enable-libspeex
2011 Aug 24
0
Speex-dev Digest, Vol 87, Issue 12
rtmplite -- http://code.google.com/p/rtmplite/ -- can be used to record Speex .flv audio and a/v files from Flash/Flex applets, and ffmpeg can be used to extract the Speex audio from such files, which can also be replayed on Flash. > Date: Tue, 23 Aug 2011 14:53:52 -0700 > From: Jozsef Vass <jovass at adobe.com> > > The only way to do this is to publish from Flash Player and
2008 Jun 15
7
Getting "no block given" on find method - rails 2.1
I am trying to do a simple find through the current_user but get an exception. Either someone spiked my Starbucks coffee and I am screwing up all over the place or there is something wrong. def index @league = current_user.leagues.find(13) end # Error LocalJumpError in Admin/schedule todosController#index no block given If I pass a block to it it works fine, but it is just messy: =====
2009 Mar 12
2
compiling ffmpeg with --enable-libspeex (was Re: from Adobe Flex / Flash Player 10 .flv Speex via Red5 to .wav PCM?)
I am having trouble compiling ffmpeg to support speex, which didn't work with the ubuntu libspeex-dev package, but looks like it might with the Speex version 1.2rc1 tarball from http://speex.org/downloads/ How do I tell ffmpeg's configure and/or make to use the 1.2rc1 version of libspeex in /usr/local/include instead of the older debian/ubuntu libspeex-dev package in /usr/include/speex?
2007 Jan 05
4
How To Spec Controllers with Finders
Given this code (which renders rjs), I''m faced with the fixture- driven way of spec-ing or mocking. How the heck to you mock this so the code at line (2) and (4) work right? I''m still struggling with mocks but it seems like this can be done. Forgive the naivety of this question. 1. def change_quantity 2. @line_item = LineItem.find_by_id(params[:id]) 3. unless
2008 Apr 19
1
form_for question
I have a following snippt to make a form. <% form_for :post, @post, :url => { :action => "create" } do |f| -%> <%- end -> What does ":post" and "@post" do respectively? If my understanding is correct, @post is there because I set "@post = Post.new" in the action. But I don''t know what ":post " is for. Tek
2008 Sep 28
2
passing variable between methods
How can I pass @member varible from def member to def name and insert it into name_id? These methods are in the same controller. def member @member = params[:member] || '''' member = @member end def name name_id = @member end -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2008 Jun 06
1
tinymce and Rails 2.0
is there some trick to installing tinymce w/ rails 2.xx ?? None of the old intructions I''ve found seem to be working. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To
2008 Jul 08
1
Looking for a framework to report user feedback and form errors
We''re building our first Rails app and looking for a consistent way to provide feedback messages; things like success messages like "your password changed successfully" or form errors with the form field highlighted in red (you know). I''ve read that Rails provides a framework for this but we''ve diverged in how we do this in our app and would to reign things in
2008 Apr 19
3
How to find nil object error in the rails application?
After I added some plugins to rails my application it begin to give following error. Error during failsafe response: You have a nil object when you didn''t expect it! The error occurred while evaluating nil.symbolize_keys (originally You have a nil object when you didn''t expect it! The error occurred while evaluating nil.symbolize_keys) But there is no stack trace I dont
2008 Jul 04
3
Linkt_to problems
I can''t explain where those differences come from. In one Project I can use the link_to without any problems. Like this: <%= link_to "LINKNAME", :action => "destroy", :id => ID %> But in another project... That happens <%= link_to "delete", :action => "destroy", :id => ticket.id %> <%= link_to "edit", :action
2010 Jul 28
2
unable to ./configure wine on FreeBSD 8
Hi I am on commit 20f51c29a99299384e840e148f02aae66bfb45be. FreeBSD freebsd.vaaraahi.com 8.0-RELEASE FreeBSD 8.0-RELEASE #0 freebsd# ./configure checking build system type... i386-unknown-freebsd8.0 checking host system type... i386-unknown-freebsd8.0 checking whether make sets $(MAKE)... yes checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default
2010 Mar 06
5
unstable 4.0 config file/ build error
Hi,   The unstable repository seems to be quite unstable even building the image... !! I see:   make[4]: Entering directory `/foo/xen-unstable.hg/tools/libxl'' gcc -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -m64 -g -fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes -Wno-unused-value -Wdeclaration-after-statement  -D__XEN_TOOLS__ -MMD -MF .xl.o.d  -D_LARGEFILE_SOURCE