Category: Merged from w.corvera.eu

Posts that were published at my alternate blog w.corvera.eu

Descarga de vídeos Flash, Parte 3: El formato F4F

Parte 1: Descarga de vídeos Flash, Parte 1 (Marzo de 2011) Parte 2: Descarga de vídeos Flash, Parte 2: rtmpsuck (Abril de 2011) Y continuando con la serie, tenemos un nuevo formato que, de nuevo, viene a complicarnos la vida, aunque como de costumbre hay formas de descargarlo: El (relativamente) nuevo formato de Adobe "HTTP […]

Read More

Descarga de vídeos Flash, Parte 2: rtmpsuck

Parte 1: Descarga de vídeos Flash, Parte 1 (Marzo de 2011) Parte 3: Descarga de vídeos Flash, Parte 3: El formato F4F (Septiembre de 2012) Los métodos que comentaba en la primera parte no siempre funcionan, principalmente porque últimamente han proliferado las webs en que el archivo no se descarga por métodos tradicionales y por […]

Read More

Descarga de vídeos Flash, Parte 1

Parte 2: Descarga de vídeos Flash, Parte 2: rtmpsuck (Abril de 2011) Parte 3: Descarga de vídeos Flash, Parte 3: El formato F4F (Septiembre de 2012) Para guardar un vídeo flash, de una de esas webs estilo Youtube que se han multiplicado como conejos, una forma muy fácil y que ha funcionado durante mucho tiempo […]

Read More

Quick tip: Concatenating video files (with no quality loss)

Concatenation of video files can be done quickly from the command-line, video files must "match" (e.g. a movie formerly split into parts) i.e. they must use the same codec and parameters, this methods won't work as expected with random files. AVI files: Use mencoder with multiple inputs $ mencoder -oac copy -ovc copy -o output.avi […]

Read More

Teaser Trailer de Mass Effect 3. OMFG

Falta todo un año y ya nos están tentando… Genial teaser: http://www.ea.com/es/juegos/mass-effect-3

Read More

Native flash plugin in 64 bits, Debian package

Adobe has had an awful track record with their Flash plugin as far as 64bits support go, forcing us to use 32 bits plugins. But since some time ago they re-booted their efforts with the Flash Player "Square" project, gaining *native* 64bits support in Linux, Mac OS X and Windows, albeit in a parallel unofficial […]

Read More

La TDT en el futuro próximo

El despliegue de la TDT ha sido hasta ahora, cuanto menos, opaco y es difícil saber qué falta por completar y qué pasará con temas como la emisión en HD. Por eso quiero compartir esta web que encontré hace poco y que trae bastantes detalles de interés: Televisión Digital Terrestre [http://televisiondigitalterrestre.wordpress.com]. Ejemplo: Reorganización de los […]

Read More

Old code: CSS rules on the fly from JavaScript (2006)

Again, some old code I'm not using anymore since I switched to jQuery but that might be useful for someone: /* * Public Domain * Created by Toni Corvera <outlyer@outlyer.net> in September, 2006 * * Creates a new CSS ruleset, should work with multiple rules correctly * e.g.: * loadCssRules('body{font-family:sans-serif;}a:link{color:red;}'); */ // void function loadCssRules(String […]

Read More

Old code: DOM extensions (2004-2006)

Nowadays I'm using something more powerful like jQuery or base2.DOM, but if you don't, these might prove useful. /* * Copyright 2004-2006 Toni Corvera <outlyer@outlyer.net> * * License: http://www.gnu.org/copyleft/lgpl.html LGPL * * Extra DOM-like methods (Note that at the time of writing they can't be * bound to the Document prototype, so they are global […]

Read More

Old code: JavaScript x-browser arrays (2005, 2010)

Last update: 2010-12-09 This block of code is deprecated, I'm only keeping it for archival purposes, see below for a more up-to-date equivalent /* * Public Domain * * Created by Toni Corvera <outlyer@outlyer.net>, 2005 * * Defines Array.find, and Array.merge */ // int Array.find(Object) if (!Array.indexOf) {/*IE has no indexOf*/ Array.prototype.find = function(what) { […]

Read More