Firefox HTML5 player do YouTube

Instale gst-libav. Em about: config , verifique se as seguintes sinalizações estão definidas como verdadeiras : media.gstreamer.enabled media.mediasource.enabled media.mediasource.webm.enabled media.fragmented-mp4.enabled media.fragmented-mp4.exposed media.fragmented-mp4.ffmpeg.enabled Vá para http://www.youtube.com/html5 e habilite o player HTML5. …

Continuar lendo

Como desativar o Z-index do Youtube iFrame no IE

O código original: <iframe width=”640″ height=”360″ src=”//www.youtube.com/embed/GfX0753bUEE?rel=0″ frameborder=”0″ allowfullscreen></iframe> O código com “a mágica”: <iframe width=”640″ height=”360″ src=”//www.youtube.com/embed/GfX0753bUEE?wmode=transparent” frameborder=”0″ allowfullscreen></iframe> Você deve alterar ? Rel = 0 para ? Wmode …

Continuar lendo

Buscar links do youtube no código HTML

Para obter links do YouTube em código HTML, escrevi um código simples com Python que pode recuperar todos os links de códigos HTML. #!/usr/bin/env pythonimport repattern = ‘.*<(iframe|param).*(src|value)=”(?P<link>http://www.youtube.com/(embed|v)/[a-zA-Z0-9/.?&;=+_-]+);?.*”.*>.*</(iframe|param)>.*’action = re.compile(pattern)result …

Continuar lendo