Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 23/03/2014, à 15:25

legluondunet

Point VLC dans trusty (Freebox, vlsub...)

Hello,

pour le moment, dans la dernière version de VLC, Ricewind, dispo dans trusty, il manque des fonctionnalités:

- l'icône Freebox a disparu de la playlist "Internet", pour regarder les chaînes il faut manuellement lancer l'adresse http://mafreebox.freebox.fr/freeboxtv/playlist.m3u
- les extensions vlsub et youtube ne fonctionnent plus. Ticket ouvert pour vlsub: https://trac.videolan.org/vlc/ticket/9495 https://github.com/exebetche/vlsub/issues/28
- la nouvelle version de subsonic n'est pas prise en charge

Dernière modification par legluondunet (Le 23/03/2014, à 15:32)

Hors ligne

#2 Le 23/03/2014, à 15:55

Vu

Re : Point VLC dans trusty (Freebox, vlsub...)

Bonjour,
Tu es sur que c'est lié qu'à la version proposé par Ubuntu ou bien c'est du à la version 2.1 de VLC: VIDEOLAN aurait retiré ces fonctions...


Ubuntu 12.04

Hors ligne

#3 Le 24/03/2014, à 00:01

legluondunet

Re : Point VLC dans trusty (Freebox, vlsub...)

Je viens de tester la version PPA de VLC, même constat.

Hors ligne

#4 Le 24/03/2014, à 10:52

moundi

Re : Point VLC dans trusty (Freebox, vlsub...)

Bonjour,
Après une recherche sur internet, pour le raccourci freebox, il semble que ce soit la même chose sur toute les plateformes.Le problème vient donc de vlc et n'est pas spécifique à Ubuntu. Je m'étais bien habitué à cette fonctionnalité

Hors ligne

#5 Le 26/04/2014, à 10:59

ivkub

Re : Point VLC dans trusty (Freebox, vlsub...)

Bonjour,

La solution au problème est ici : http://superuser.com/questions/736207/h … -and-above

Il faut télécharger une version de vlc antérieur à la 2.0.8 par exemple celle-ci http://download.videolan.org/pub/videol … 0.7.tar.xz
Dans l'archive récupérer le fichier vlc-2.0.7/share/lua/sd/ freebox.lua et le copier ici /usr/share/vlc/lua avec les droits root
Après il suffit de relancer VLC smile

Hors ligne

#6 Le 01/05/2014, à 03:24

legluondunet

Re : Point VLC dans trusty (Freebox, vlsub...)

Merci Ivkub pour cette astuce, je complète:

dans le répertoire /home/votre_profil/.local/share/vlc/lua/sd/ (créer le répertoire sd si nécessaire), créer un fichier texte nommé freebox.lua et y coller ce code:

--[[
 $Id$

 Copyright © 2010 VideoLAN and AUTHORS

 Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>

 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
--]]

function descriptor()
    return { title="Freebox TV" }
end

function main()
    local fd, msg = vlc.stream( "http://mafreebox.freebox.fr/freeboxtv/playlist.m3u" )
    if not fd then
        vlc.msg.warn(msg)
        return nil
    end
    local line=  fd:readline()
    if line ~= "#EXTM3U" then
        return nil
    end
    line = fd:readline()
    local duration, artist, name
    local options={"deinterlace=1"}
    while line ~= nil do
        if( string.find( line, "#EXTINF" ) ) then
            _, _, duration, artist, name = string.find( line, ":(%w+),(%w+)%s*-%s*(.+)" )
        elseif( string.find( line, "#EXTVLCOPT" ) ) then
            _, _, option = string.find( line, ":(.+)" )
            table.insert( options, option )
        else
            vlc.sd.add_item( {path=line,duration=duration,artist=artist,title=name,options=options} )
            duration = nil
            artist = nil
            name = nil
            options={"deinterlace=1"}
        end
        line = fd:readline()
    end
end

Lancer VLC, l'icône Freebox est de retour.

Pour que l'icône Freebox soit disponible pour tous les utilisateurs, il faut copier le fichier freebox.lua dans le répertoire  /usr/share/vlc/lua, comme indiqué par lvkub.

Dernière modification par legluondunet (Le 01/05/2014, à 03:25)

Hors ligne

#7 Le 01/05/2014, à 18:20

jajaX

Re : Point VLC dans trusty (Freebox, vlsub...)

salut,

merci pour la soluce wink


@+
jajaX
Asus X93SM-YZ157V / Asus X93SM-YZ065V sous KDE Neon
ASUS K95VB sous Kubuntu 22.04 Jammy Jellyfish (64 bits) / ACER Aspire 5612 WLMI sous Kubuntu 18.04 Bionic Beaver (32 bits)

Hors ligne

#8 Le 01/09/2014, à 12:34

alaineric13

Re : Point VLC dans trusty (Freebox, vlsub...)

Bonjour,
j'ai un probleme avec vlc et ufw , j'ai beau suivre le tuto http://www.leshirondellesdunet.com/pages/parefeu.php et http://www.leshirondellesdunet.com/pages/vlc.php mais vlc ne m'affiche pas de chaine, par contre si je desactive ufw ca marche nickel! je suis sous trusty et la version de GUFW n'est pas comme dans le tuto, j'aurais voulu savoir comment faire avec cette version de vlc ,ubuntu, et gufw? svp.

Merci.

Hors ligne

#9 Le 01/09/2014, à 12:35

alaineric13

Re : Point VLC dans trusty (Freebox, vlsub...)

re je suis connecté en wlan.

Hors ligne