I get a string back from ffmpeg : "00:00:03.10" ( "hh:mm:ss" ) which class should I use to get it converted into 3.10 sec ( float) thanks for your feedback -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Erwin
2011-Jul-10 15:47 UTC
Re: is there any Time function to gat a duration from string ?
I tried : output = "00:00:03.10" output.split('':'').inject(0){|a, m| a = a * 60 + m.to_f} => 3.1 is there any better way ? On Jul 10, 5:37 pm, Erwin <yves_duf...-ee4meeAH724@public.gmane.org> wrote:> I get a string back from ffmpeg : "00:00:03.10" ( "hh:mm:ss" ) > which class should I use to get it converted into 3.10 sec ( float) > > thanks for your feedback-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
AGoofin
2011-Jul-11 02:17 UTC
Re: is there any Time function to gat a duration from string ?
You could convert the string to a time object and pick out the specific parts you want. This might come in handy if you want to store the time in the database at some point. http://api.rubyonrails.org/classes/Time.html On Jul 10, 11:47 am, Erwin <yves_duf...-ee4meeAH724@public.gmane.org> wrote:> I tried : > output = "00:00:03.10" > > output.split('':'').inject(0){|a, m| a = a * 60 + m.to_f} > => 3.1 > > is there any better way ? > > On Jul 10, 5:37 pm, Erwin <yves_duf...-ee4meeAH724@public.gmane.org> wrote: > > > > > > > > > I get a string back from ffmpeg : "00:00:03.10" ( "hh:mm:ss" ) > > which class should I use to get it converted into 3.10 sec ( float) > > > thanks for your feedback-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.