search for: lino

Displaying 20 results from an estimated 37 matches for "lino".

Did you mean: line
2007 Nov 28
3
overriding rest show route but not delete
hi, lets say routes.rb has map.resources :foo and I want the show action to have a diffent url, so I add (after the above line) map.foo ''/bar/:id'', :controller => ''foo'', :action => ''show'' this works fine, including foo_path( :id => "1") => /bar/1 and <%= link_to ''Show'', foo %>
2009 May 28
1
Update on HTML5 video support in browsers and websites
...ttp://annevankesteren.nl/2009/05/web-video Two bits from the post: 1) the YouTube demo uses the H.264 codec, but I guess this will change if they want compatibility with Firefox 3.5; 2) Chrome uses FFmpeg for the decoding; can this cause bugs in the decoding of Ogg/Theora+Vorbis videos? -- Lino Mastrodomenico
2007 Mar 25
1
RFC: I would like to contribute with SoC
...ork on them? Since (again, if accepted) I will be getting paid, I'm not afraid of doing hard work and searching and studying documentation for things that I need to know. And, if everything goes well, I would love to keep contributing even after SoC. Thanks in advance for any suggestion. -- Lino Mastrodomenico E-mail: l.mastrodomenico@gmail.com
2009 Aug 05
3
Google is acquiring On2
...knows what, if anything, this means for Theora, open video and/or the Xiph.Org Foundation? Wild speculation: considering that they complained about the bitrate/quality of Theora for Youtube and they are supposed to be "not evil", maybe Google wants to free one of the new On2 codecs? -- Lino Mastrodomenico
2013 Dec 09
5
Btrfs questions
...address these and integrate Btrfs in to Lustre     * any plans to support native clustering on Btrfs     * on ZFS the ZIL is a separate device, any plans to implement a the B-Tree log on a separate device?     * any plans to allow to have a file system metadata be placed on a separate device thanks lino -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2007 May 28
2
helper with block compile error
HI, i''m trying to write a helper that replaces link_to_remote that accepts a block but it gets a compile error in the template: I don''t know what I''m doing wrong... TIA # application_helper.rb def link_block_to_remote( options = {}, html_options = {}, &block) concat(link_to_remote(capture(&block), options, html_options), block.binding) end # in
2007 Mar 19
1
wine and bluetooth
...the bluetooth or linux but something in wine that isn't requesting this or some such does wine have bluetooth covered? is there a command/argument I need to give it? if not then oh well have tried different btooth devices now and just thought I'd check before I went any further (eg, diff lino distro)
2009 May 16
1
Error 3: path not found
...ror msg: "Not possible to create folder "C:/windows/is-7DK.tmo Error 3: path not found" I guess there is something wrong in the Wine configuration, I tried but I can not find how and where I should direct the installation to a different path. Many thanks in advance for your help. Lino
2007 Sep 18
1
libtheora 1.0 alpha8 released, beta1 imminent
Hello, it's a great pleasure for me to announce the availability of libtheora alpha8 and the imminent availability of beta1. http://downloads.xiph.org/releases/theora/libtheora-1.0alpha8.tar.gz alpha8 brings a completely new decoder (feature complete, lifted from derf's theora-exp) and additional control over the encoder (applications now can specify their own set of quantization
2009 May 27
2
libtheora 1.1alpha2 (thusnelda) release
I'm pleased to announce the second alpha release of our next generation encoder for the free Theora video format, codename "thusnelda". The second release incorporates a number of changes which improve both compression efficiency and execution speed. This release includes working MSVC project files, but the assembly optimization hasn't yet been ported, so performance there will
2010 Apr 17
1
Ogg is great!! Tools: ffmpeg2theora, oggz
Hi, I just wanted to say that I've recently become a fan off the ogg movie format. I haven't really done much with video before, but I recently got a Canon DSLR which can record HD movies at 30 fps, 720p. The resulting files are great, but too large to share over the web. After trying a few different encoding tools, I quickly found that ffmpeg2theora is super easy to use, gives good
2007 Sep 18
1
libtheora 1.0 alpha8 released, beta1 imminent
Hello, it's a great pleasure for me to announce the availability of libtheora alpha8 and the imminent availability of beta1. http://downloads.xiph.org/releases/theora/libtheora-1.0alpha8.tar.gz alpha8 brings a completely new decoder (feature complete, lifted from derf's theora-exp) and additional control over the encoder (applications now can specify their own set of quantization
2008 Nov 04
1
Article on Slashdot (was: Theora 1.0 final release!)
We have an article right now on the Slashdot main page: http://slashdot.org/news/08/11/04/136220.shtml -- Lino Mastrodomenico
2008 Nov 04
1
Article on Slashdot (was: Theora 1.0 final release!)
We have an article right now on the Slashdot main page: http://slashdot.org/news/08/11/04/136220.shtml -- Lino Mastrodomenico
2009 May 27
2
libtheora 1.1alpha2 (thusnelda) release
I'm pleased to announce the second alpha release of our next generation encoder for the free Theora video format, codename "thusnelda". The second release incorporates a number of changes which improve both compression efficiency and execution speed. This release includes working MSVC project files, but the assembly optimization hasn't yet been ported, so performance there will
2007 Oct 10
1
form builder
hi, I''m creating a custom form_builder and i''m trying to figure out how would helpers like text_field know if the field has an error message so I can highlight it and show the message text thanks linoj --~--~---------~--~----~------------~-------~--~----~ 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 unsubscribe from this group, sen...
2010 May 26
2
Windows command-line transcoder for Theora
Hi All, Should anyone be looking for one, here's a DirectShow-based command-line transcoder for Theora: http://www.eddiana.com/?totheora.html It can do basic video transcoding, as well as scale video, watermark video with a graphic, grab frame stills, capture from video sources, and perform a couple color transformations. Ed
2007 Nov 20
5
yuv - rgb conversion without contrast decrease.
Hello list, When I convert an yuv pixel into rgb using the recipies in http://www.fourcc.org/fccyvrgb.php I get an accurate color conversion but the contrast seems to be decreased. If i write, e.g., the pixel directly into an sdl yuv_overlay, I get a well-contrasted frame, however, if I convert the pixel to rgb and call SDL_MapRGB, I get a contrast-decreased frame. Thanks, Ribamar
2010 May 05
9
Freedom-friendly video hardware community
Our discussion in the "Theora Camcorder" thread has been great, but I didn't see a direction evolve for action yet. So, I'd like to propose the creation of a community website that will be focused specifically on this kind of thing, partnered with the Xiph Foundation. I'm also more than happy to host said website, as I have more than ample server capacity for that. I just
2008 Dec 09
4
Slideshow with Ken-Burns Effect
Hi everybody, I've had some time and so I added a slideshow creator with the Ken-Burns-Effect to the Ogg Video Tools. Feel free to visit the following page: http://www.server.streamnik.de:88/test.html It's best viewed with the Mozilla Firefox 3.1 Beta 2, but a Cortado Player is also available for the other browsers. The code is actually not publically available, as I would like to add