Como reproduzir vídeos do youtube no firefox 7.x

0

Estou tentando obter um vídeo do youtube do cache do Firefox.

Estou usando o Ubuntu 11.10 e o Firfox 7.0.1

Observe que o Firefox ainda está aberto e o vídeo está com o carregamento completo

Eu tentei ir para ~/.mozilla/firefox/9qhsyom8.default/Cache , mas a estrutura de diretórios mudou muito:

hewedy@compu10:~/.mozilla/firefox/9qhsyom8.default/Cache$ ls -l
total 32072
drwx------ 24 mhewedy mhewedy     4096 2012-02-24 09:30 0
drwx------ 32 mhewedy mhewedy     4096 2012-02-24 10:56 1
drwx------ 23 mhewedy mhewedy     4096 2012-02-24 10:57 2
drwx------ 26 mhewedy mhewedy     4096 2012-02-24 05:20 3
drwx------ 19 mhewedy mhewedy     4096 2012-02-24 10:57 4
drwx------ 28 mhewedy mhewedy     4096 2012-02-24 03:37 5
drwx------ 29 mhewedy mhewedy     4096 2012-02-24 10:43 6
drwx------ 29 mhewedy mhewedy     4096 2012-02-24 09:58 7
drwx------ 19 mhewedy mhewedy     4096 2012-02-24 10:56 8
drwx------ 24 mhewedy mhewedy     4096 2012-02-24 10:24 9
drwx------ 25 mhewedy mhewedy     4096 2012-02-24 07:46 A
drwx------ 25 mhewedy mhewedy     4096 2012-02-24 04:15 B
drwx------ 20 mhewedy mhewedy     4096 2012-02-24 10:42 C
-rw-------  1 mhewedy mhewedy  2093091 2012-02-24 10:58 _CACHE_001_
-rw-------  1 mhewedy mhewedy  5627862 2012-02-24 10:58 _CACHE_002_
-rw-------  1 mhewedy mhewedy 25042643 2012-02-24 10:58 _CACHE_003_
-rw-------  1 mhewedy mhewedy      276 2012-02-23 23:41 _CACHE_MAP_
drwx------ 22 mhewedy mhewedy     4096 2012-02-24 10:44 D
drwx------ 25 mhewedy mhewedy     4096 2012-02-24 09:57 E
drwx------ 19 mhewedy mhewedy     4096 2012-02-24 10:44 F

Eu então tentei copiar todos os arquivos em subdiretórios para outro diretório:

mkdir ~/tmp/dir2 ; cp 'find ./ -name "*"' ~/tmp/dir2

Depois de procurar em ~/tmp/dir2 , encontrei muito poucos arquivos do youtube, mas não consigo encontrar o arquivo de que preciso.

Eu também analisei: /tmp/mozilla-media-cache/ mas não encontrei arquivos!

Por favor, não sugira um gerenciador de downloads do youtube

    
por Muhammad Hewedy 24.02.2012 / 10:04

1 resposta

0

(Eu estou usando o Gentoo, com o firefox-10.0.1. As coisas podem ser significativamente diferentes em sua versão, eu não estou familiarizado o suficiente com o firefox para contar.)

Depois de carregar um vídeo no youtube, fiz isso:

eroen@falcon ~ $ du .mozilla/firefox/sqaml9dr.default/Cache/ | sort -n
[...]
512 .mozilla/firefox/sqaml9dr.default/Cache/B
532 .mozilla/firefox/sqaml9dr.default/Cache/2
1160    .mozilla/firefox/sqaml9dr.default/Cache/8
14668   .mozilla/firefox/sqaml9dr.default/Cache/7/40
14912   .mozilla/firefox/sqaml9dr.default/Cache/7
23040   .mozilla/firefox/sqaml9dr.default/Cache/
eroen@falcon ~ $ ls -lSr .mozilla/firefox/sqaml9dr.default/Cache/7/40
total 14664
-rw------- 1 eroen users 15014104 Feb 24 11:50 55A2Fd01
eroen@falcon ~ $ mplayer .mozilla/firefox/sqaml9dr.default/Cache/7/40/55A2Fd01

Fui então recompensado com um vídeo em uma pequena janela de um arco-íris duplo todo o caminho pelo céu.

Obviamente, os nomes serão diferentes para você e, a menos que seu cache esteja limpo antes de iniciar, você terá alguns problemas para encontrar os arquivos corretos. Você pode limpar seu cache com algo assim:

$ rm -r .mozilla/firefox/????????.default/Cache; \
mkdir .mozilla/firefox/????????.default/Cache

Para esclarecer, achei a pasta cache que ocupou mais espaço, olhei dentro dela e toquei o único arquivo lá.

    
por 24.02.2012 / 12:01