Beiträge von fennec

    Hi


    i have 2 dm800 with hdd on the 2 dream


    First problem, i can't use nfs network the link is ok but i can't read movie from one dream to other dream enigma2 bug and i must kill enigma2, i use autofs but it's the same with command mount


    So i use cifs mount and it's ok


    Second problem when i record a hd movie on hdd, i can't see the hd movie on the other dream by network i have a freeze, i think it's my network but if i mount my hdd of my pc and i record hd movie on my hdd pc all it's ok no freeze on record and no freeze on watch movie on the 2 dreams 800


    Another test i mount a hdd of my dream 7025 it's the same all is ok record and watch hd movie, so only freeze when i watch hd movie from dm800 to dm800


    Do you know what is the problem


    Am i the only


    thanks

    lot of thanks i see that


    i wan't start the thread but with a different value


    with


    for ligne in self
    ligne=thread(ligne)
    ligne.start()


    and i wan't the script run all ligne in the same time


    you know how can i do


    thanks

    hi


    i make plugin and i wan't to use thread


    i do from threading import *


    for example


    class Affiche(threading.Thread):
    def __init__(self, nom = ''):
    threading.Thread.__init__(self)
    self.nom = nom
    self.Terminated = False
    def run(self):
    i = 0
    while not self.Terminated:
    print self.nom, i
    i += 1
    time.sleep(2.0)
    print "le thread "+self.nom +" s'est termine proprement"
    def stop(self):
    self.Terminated = True


    a = Affiche('Thread A')
    a.start()


    when i do that error threading is not defined


    Help me please


    thanks