Accueil > > > WX_REVEIL
WX_REVEIL
Information sur la source
Description
Salut Pour mon initiation à wxpython j'ai décidé de reprendre un code. Ben j'attends vos commentaires.
Source
- #-*- coding: cp1252 -*-
-
- import sys
- import os
- import sys
- import time
- import wx
- import wx.gizmos as gizmos
- import pymedia
- import threading
- from wx.lib.wordwrap import wordwrap
- import glob
-
-
- ID_CONFIG=100
- ID_HELP=101
- ID_PROPOS=102
-
- reveil_actif=0
- time_ok=0
- image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
- son="Angel.mp3"#fichier audio par defaut
- n=0
- nb=0
-
- class MyThread(threading.Thread):
- def __init__(self,function=""):
- threading.Thread.__init__(self)
- self.function=function
- self.go=threading.Event()
-
- def run(self):
- global time_ok
- while not self.go.isSet():
- if time_ok: self.function()
- else: pass
-
- def arret(self):
- self.go.set()
-
- class Fen(wx.Frame):
- def __init__(self):
- wx.Frame.__init__(self,None,-1,size=(300,150),style=wx.DEFAULT_FRAME_STYLE^(wx.RESIZE_BORDER
- |wx.MAXIMIZE_BOX
- |wx.MINIMIZE_BOX))
- frameicon = wx.Icon("./côte d'ivoire.ico", wx.BITMAP_TYPE_ICO)
- self.SetIcon(frameicon)
- self.SetTitle("::.Reveil 2.::-By Kouakou021988")
- self.panel = wx.Panel(self, -1)
- self.builder()
-
- def builder(self):
- wx.StaticText(self.panel,-1,"Fichier Audio: ",style=wx.ALIGN_LEFT,pos=(15,15))
- self.p_audio=wx.TextCtrl(self.panel,-1,"Angel.mp3", size=(150,-1),pos=(100,10))
- b_audio=wx.Button(self.panel,-1,"...",pos=(250,8),size=(25,25))
- wx.StaticText(self.panel,-1,"Dossier Image: ",style=wx.ALIGN_LEFT,pos=(15,50))
- self.p_image=wx.TextCtrl(self.panel,-1,"C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images",
- size=(150,-1),pos=(100,45))
- b_image=wx.Button(self.panel,-1,"...",pos=(250,43),size=(25,25))
- b_Ok=wx.Button(self.panel,-1,"OK",pos=(60,80),size=(80,25))
- b_Annuler=wx.Button(self.panel,-1,"Annuler",pos=(150,80),size=(100,25))
- self.Bind(wx.EVT_BUTTON,self.open_image,b_image)
- self.Bind(wx.EVT_BUTTON,self.open_audio,b_audio)
- self.Bind(wx.EVT_BUTTON,self.close,b_Annuler)
- self.Bind(wx.EVT_BUTTON,self.reception,b_Ok)
- self.Bind(wx.EVT_CLOSE,self.close)
-
- def open_audio(self,event):
- global son
- wildcard = "Fichier Audio (*.mp3)|*.mp3|"
- dialog = wx.FileDialog(self, "Audio", os.getcwd(),"", wildcard, wx.OPEN)
- if dialog.ShowModal() == wx.ID_OK:
- self.p_audio.SetValue(dialog.GetPath())
- else: son="angel.mp3"
- dialog.Destroy()
-
- def open_image(self,event):
- global image
- dialog = wx.DirDialog(self, "Choisir un repertoire photo:",style=wx.DD_DEFAULT_STYLE ^ (wx.DD_NEW_DIR_BUTTON
- |wx.RESIZE_BORDER))
- if dialog.ShowModal() == wx.ID_OK:
- self.p_image.SetValue(dialog.GetPath())
- else: image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
- dialog.Destroy()
-
- def reception(self,event):
- global son,image
- son=self.p_audio.GetValue()
- image=self.p_image.GetValue()
- if not son or not os.path.exists(son): son="angel.mp3"
- if not image or not os.path.exists(image): image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
- c=glob.glob(os.path.abspath(image)+"\*.jpg")
- if len(c)==0: image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
- self.close(None)
-
- def close(self,event):
- self.MakeModal(False)
- self.Destroy()
-
- class Reveil(wx.Frame):
- def __init__(self):
- wx.Frame.__init__(self,None,-1,size=(225,450),title="::.Reveil 2.::-By Kouakou021988",
- style=wx.DEFAULT_FRAME_STYLE ^ (wx.RESIZE_BORDER|wx.MAXIMIZE_BOX))
- frameicon = wx.Icon("./côte d'ivoire.ico", wx.BITMAP_TYPE_ICO)
- self.SetIcon(frameicon)
- self.text=""
- try:
- os.unlink("florent.exe.txt")
- except: pass
- self.build()
-
- def build(self):
- self.menuFichier=wx.Menu()
- self.menuFichier.Append(ID_CONFIG, "Configuration")
- self.menuFichier.Append(wx.ID_CLOSE, "Quitter")
- menuAide=wx.Menu()
- menuAide.Append(ID_HELP, "Aide")
- menuAide.Append(ID_PROPOS, "A Propos")
- menuBarre=wx.MenuBar()
- menuBarre.Append(self.menuFichier,"Fichier")
- menuBarre.Append(menuAide,"?")
- self.SetMenuBar(menuBarre)
- wx.EVT_MENU(self,wx.ID_CLOSE,self.fermer)
- wx.EVT_MENU(self,ID_CONFIG,self.configure)
- wx.EVT_MENU(self,ID_HELP,self.aide)
- wx.EVT_MENU(self,ID_PROPOS,self.a_propos)
- self.conteneur=wx.Panel(self,-1)
- wx.StaticText(self.conteneur,-1,"Reveil: ",style=wx.ALIGN_LEFT,pos=(10,15))
- self.r_time=wx.TextCtrl(self.conteneur,-1,size=(60,-1),pos=(50,10))
- self.active= wx.CheckBox(self.conteneur, -1, " Activer ",pos=(150,15))
- led = gizmos.LEDNumberCtrl(self.conteneur, -1, (0,50), (230,50),gizmos.LED_ALIGN_CENTER)
- self.clock = led
- self.clock.SetForegroundColour("red")
- self.onTimer(None)
- self.timer = wx.Timer(self)
- self.timer.Start(1000)
- self.Bind(wx.EVT_TIMER, self.onTimer)
- self.Bind(wx.EVT_CHECKBOX, self.r_active, self.active)
- self.Bind(wx.EVT_CLOSE, self.fermer)
- self.photo("ntic2.jpg")
-
- def onTimer(self, evt):
- global image,time_ok,reveil_actif,n
- t = time.localtime(time.time())
- st = time.strftime("%H-%M-%S", t)
- self.clock.SetValue(st)
- n+=1
- if n>10:
- self.onTof()
- n=0
- if st==self.text:
- if reveil_actif:
- time_ok=1
- self.re.start()
-
- def onTof(self):
- global image,nb
- image_path=glob.glob(os.path.abspath(image)+"\*.jpg")
- self.p.Destroy()
- last=image_path[nb-1]
- try:
- self.photo(image_path[nb])
- except:
- image_path=glob.glob(os.path.abspath(image)+"\*.jpg")
- self.photo(last)
- nb=0
- else: nb+=1
-
- def shutdown(self):
- self.timer.Stop()
- del self.timer
-
- def r_active(self,event):
- global reveil_actif
- if self.active.IsChecked():
- self.text=self.r_time.GetValue()
- self.r_time.Enable(False)
- if not self.controle(self.text):
- dlg=wx.MessageDialog(self, "Format d'heure accepté: hh-mn-ss\n hh=heure(<=23)\nmn=minutes(<=60)\nss=sécondes(<=60)",
- caption="::.Reveil 2.::-By Kouakou021988",style=wx.OK|wx.ICON_ERROR,pos=wx.DefaultPosition)
- result=dlg.ShowModal()
- dlg.Destroy()
- self.active.SetValue(False)
- self.r_time.Enable(True)
- else:
- self.menuFichier.Enable(ID_CONFIG,False)
- reveil_actif=1
- self.re=MyThread(self.play_music)
- else:
- self.r_time.Enable(True)
- self.menuFichier.Enable(ID_CONFIG,True)
- try:
- time_ok=0
- self.player.stop()
- try:
- self.re.arret()
- del self.player
- del self.re
- except: pass
- except: pass
- reveil_actif=0
-
- def controle(self,txt=""):
- """Controle du format attendu: hh-mn-ss"""
- lst=txt.split("-")
- if len(lst)==3:
- if int(lst[0])>23 or int(lst[1])>60 or int(lst[2])>60: return 0
- else: return 1
- else:
- return 0
-
- def photo(self,path):
- jpg = wx.Image(path, wx.BITMAP_TYPE_ANY)
- tof=jpg.Scale(225,300)
- self.p=wx.StaticBitmap(self.conteneur, -1, wx.BitmapFromImage(tof), pos=(0,100))
- self.Refresh()
-
- def fermer(self,event):
- try:
- self.shutdown()
- time_ok=0
- self.player.stop()
- del self.player
- del self.re
- self.re.arret()
- self.chargeur.stop()
- del self.chargeur
- except: pass
- try:
- os.unlink("florent.exe.txt")
- except: pass
- self.Destroy()
- sys.exit(0)
-
- def configure(self,event):
- fram=Fen()
- fram.CenterOnParent(wx.BOTH)
- fram.Show(True)
- fram.MakeModal(True)
-
- def aide(self,event):
- import webbrowser
- webbrowser.open('Reveil.html')
-
- def a_propos(self,event):
- info = wx.AboutDialogInfo()
- info.Name = "Reveil"
- info.Version = "II"
- info.Copyright = "(C) 2008 Itech"
- info.Description = wordwrap(
- "Cette application \" Reveil II \" est une nette amélioration du précédent "
- "\" Reveil II(bis) \" a été réalisée avec wxpython. "
- "Je débute avec wxpython et pour mon apprentissage j'ai décidé de refaire mon reveil"
- " précédement réaliser avec Tkinter."
- " J'attends vos critiques parceque j'aimerai m'amélioré.\n"
- " Merci pour tout et VIVE PYTHON.",
- 400, wx.ClientDC(self))
- info.Developers = [ "Kouakou021988"]
- licenseText="GNL"
- info.License = wordwrap(licenseText, 400, wx.ClientDC(self))
- wx.AboutBox(info)
-
- def play_music(self):
- global son,time_ok
- print son
- media=os.path.splitext(son)[1]
- if media==".mp3":
- self.player= pymedia.Player()
- self.player.setVolume(65000)
- self.player.start()
- while 1:
- self.player.startPlayback(son)
- while self.player.isPlaying():
- time.sleep(0.01)
- try:
- if not self.player.isPlaying(): break
- except: pass
- if time_ok==0:
- break
- del self.player
- else: self.audio_secour()
-
- def audio_secour(self):
- global time_ok
- self.player= pymedia.Player()
- self.player.setVolume(65000)
- self.player.start()
- while 1:
- self.player.startPlayback("Angel.mp3")
- while self.player.isPlaying():
- time.sleep(0.01)
- try:
- if not self.player.isPlaying(): break
- except: pass
- if time_ok==0:
- break
- del self.player
-
-
- if __name__ == '__main__':
- app = wx.PySimpleApp()
- Reveil().Show()
- app.MainLoop()
#-*- coding: cp1252 -*-
import sys
import os
import sys
import time
import wx
import wx.gizmos as gizmos
import pymedia
import threading
from wx.lib.wordwrap import wordwrap
import glob
ID_CONFIG=100
ID_HELP=101
ID_PROPOS=102
reveil_actif=0
time_ok=0
image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
son="Angel.mp3"#fichier audio par defaut
n=0
nb=0
class MyThread(threading.Thread):
def __init__(self,function=""):
threading.Thread.__init__(self)
self.function=function
self.go=threading.Event()
def run(self):
global time_ok
while not self.go.isSet():
if time_ok: self.function()
else: pass
def arret(self):
self.go.set()
class Fen(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,-1,size=(300,150),style=wx.DEFAULT_FRAME_STYLE^(wx.RESIZE_BORDER
|wx.MAXIMIZE_BOX
|wx.MINIMIZE_BOX))
frameicon = wx.Icon("./côte d'ivoire.ico", wx.BITMAP_TYPE_ICO)
self.SetIcon(frameicon)
self.SetTitle("::.Reveil 2.::-By Kouakou021988")
self.panel = wx.Panel(self, -1)
self.builder()
def builder(self):
wx.StaticText(self.panel,-1,"Fichier Audio: ",style=wx.ALIGN_LEFT,pos=(15,15))
self.p_audio=wx.TextCtrl(self.panel,-1,"Angel.mp3", size=(150,-1),pos=(100,10))
b_audio=wx.Button(self.panel,-1,"...",pos=(250,8),size=(25,25))
wx.StaticText(self.panel,-1,"Dossier Image: ",style=wx.ALIGN_LEFT,pos=(15,50))
self.p_image=wx.TextCtrl(self.panel,-1,"C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images",
size=(150,-1),pos=(100,45))
b_image=wx.Button(self.panel,-1,"...",pos=(250,43),size=(25,25))
b_Ok=wx.Button(self.panel,-1,"OK",pos=(60,80),size=(80,25))
b_Annuler=wx.Button(self.panel,-1,"Annuler",pos=(150,80),size=(100,25))
self.Bind(wx.EVT_BUTTON,self.open_image,b_image)
self.Bind(wx.EVT_BUTTON,self.open_audio,b_audio)
self.Bind(wx.EVT_BUTTON,self.close,b_Annuler)
self.Bind(wx.EVT_BUTTON,self.reception,b_Ok)
self.Bind(wx.EVT_CLOSE,self.close)
def open_audio(self,event):
global son
wildcard = "Fichier Audio (*.mp3)|*.mp3|"
dialog = wx.FileDialog(self, "Audio", os.getcwd(),"", wildcard, wx.OPEN)
if dialog.ShowModal() == wx.ID_OK:
self.p_audio.SetValue(dialog.GetPath())
else: son="angel.mp3"
dialog.Destroy()
def open_image(self,event):
global image
dialog = wx.DirDialog(self, "Choisir un repertoire photo:",style=wx.DD_DEFAULT_STYLE ^ (wx.DD_NEW_DIR_BUTTON
|wx.RESIZE_BORDER))
if dialog.ShowModal() == wx.ID_OK:
self.p_image.SetValue(dialog.GetPath())
else: image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
dialog.Destroy()
def reception(self,event):
global son,image
son=self.p_audio.GetValue()
image=self.p_image.GetValue()
if not son or not os.path.exists(son): son="angel.mp3"
if not image or not os.path.exists(image): image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
c=glob.glob(os.path.abspath(image)+"\*.jpg")
if len(c)==0: image="C:\Documents and Settings\All Users\Documents\Mes images\Échantillons d'images"
self.close(None)
def close(self,event):
self.MakeModal(False)
self.Destroy()
class Reveil(wx.Frame):
def __init__(self):
wx.Frame.__init__(self,None,-1,size=(225,450),title="::.Reveil 2.::-By Kouakou021988",
style=wx.DEFAULT_FRAME_STYLE ^ (wx.RESIZE_BORDER|wx.MAXIMIZE_BOX))
frameicon = wx.Icon("./côte d'ivoire.ico", wx.BITMAP_TYPE_ICO)
self.SetIcon(frameicon)
self.text=""
try:
os.unlink("florent.exe.txt")
except: pass
self.build()
def build(self):
self.menuFichier=wx.Menu()
self.menuFichier.Append(ID_CONFIG, "Configuration")
self.menuFichier.Append(wx.ID_CLOSE, "Quitter")
menuAide=wx.Menu()
menuAide.Append(ID_HELP, "Aide")
menuAide.Append(ID_PROPOS, "A Propos")
menuBarre=wx.MenuBar()
menuBarre.Append(self.menuFichier,"Fichier")
menuBarre.Append(menuAide,"?")
self.SetMenuBar(menuBarre)
wx.EVT_MENU(self,wx.ID_CLOSE,self.fermer)
wx.EVT_MENU(self,ID_CONFIG,self.configure)
wx.EVT_MENU(self,ID_HELP,self.aide)
wx.EVT_MENU(self,ID_PROPOS,self.a_propos)
self.conteneur=wx.Panel(self,-1)
wx.StaticText(self.conteneur,-1,"Reveil: ",style=wx.ALIGN_LEFT,pos=(10,15))
self.r_time=wx.TextCtrl(self.conteneur,-1,size=(60,-1),pos=(50,10))
self.active= wx.CheckBox(self.conteneur, -1, " Activer ",pos=(150,15))
led = gizmos.LEDNumberCtrl(self.conteneur, -1, (0,50), (230,50),gizmos.LED_ALIGN_CENTER)
self.clock = led
self.clock.SetForegroundColour("red")
self.onTimer(None)
self.timer = wx.Timer(self)
self.timer.Start(1000)
self.Bind(wx.EVT_TIMER, self.onTimer)
self.Bind(wx.EVT_CHECKBOX, self.r_active, self.active)
self.Bind(wx.EVT_CLOSE, self.fermer)
self.photo("ntic2.jpg")
def onTimer(self, evt):
global image,time_ok,reveil_actif,n
t = time.localtime(time.time())
st = time.strftime("%H-%M-%S", t)
self.clock.SetValue(st)
n+=1
if n>10:
self.onTof()
n=0
if st==self.text:
if reveil_actif:
time_ok=1
self.re.start()
def onTof(self):
global image,nb
image_path=glob.glob(os.path.abspath(image)+"\*.jpg")
self.p.Destroy()
last=image_path[nb-1]
try:
self.photo(image_path[nb])
except:
image_path=glob.glob(os.path.abspath(image)+"\*.jpg")
self.photo(last)
nb=0
else: nb+=1
def shutdown(self):
self.timer.Stop()
del self.timer
def r_active(self,event):
global reveil_actif
if self.active.IsChecked():
self.text=self.r_time.GetValue()
self.r_time.Enable(False)
if not self.controle(self.text):
dlg=wx.MessageDialog(self, "Format d'heure accepté: hh-mn-ss\n hh=heure(<=23)\nmn=minutes(<=60)\nss=sécondes(<=60)",
caption="::.Reveil 2.::-By Kouakou021988",style=wx.OK|wx.ICON_ERROR,pos=wx.DefaultPosition)
result=dlg.ShowModal()
dlg.Destroy()
self.active.SetValue(False)
self.r_time.Enable(True)
else:
self.menuFichier.Enable(ID_CONFIG,False)
reveil_actif=1
self.re=MyThread(self.play_music)
else:
self.r_time.Enable(True)
self.menuFichier.Enable(ID_CONFIG,True)
try:
time_ok=0
self.player.stop()
try:
self.re.arret()
del self.player
del self.re
except: pass
except: pass
reveil_actif=0
def controle(self,txt=""):
"""Controle du format attendu: hh-mn-ss"""
lst=txt.split("-")
if len(lst)==3:
if int(lst[0])>23 or int(lst[1])>60 or int(lst[2])>60: return 0
else: return 1
else:
return 0
def photo(self,path):
jpg = wx.Image(path, wx.BITMAP_TYPE_ANY)
tof=jpg.Scale(225,300)
self.p=wx.StaticBitmap(self.conteneur, -1, wx.BitmapFromImage(tof), pos=(0,100))
self.Refresh()
def fermer(self,event):
try:
self.shutdown()
time_ok=0
self.player.stop()
del self.player
del self.re
self.re.arret()
self.chargeur.stop()
del self.chargeur
except: pass
try:
os.unlink("florent.exe.txt")
except: pass
self.Destroy()
sys.exit(0)
def configure(self,event):
fram=Fen()
fram.CenterOnParent(wx.BOTH)
fram.Show(True)
fram.MakeModal(True)
def aide(self,event):
import webbrowser
webbrowser.open('Reveil.html')
def a_propos(self,event):
info = wx.AboutDialogInfo()
info.Name = "Reveil"
info.Version = "II"
info.Copyright = "(C) 2008 Itech"
info.Description = wordwrap(
"Cette application \" Reveil II \" est une nette amélioration du précédent "
"\" Reveil II(bis) \" a été réalisée avec wxpython. "
"Je débute avec wxpython et pour mon apprentissage j'ai décidé de refaire mon reveil"
" précédement réaliser avec Tkinter."
" J'attends vos critiques parceque j'aimerai m'amélioré.\n"
" Merci pour tout et VIVE PYTHON.",
400, wx.ClientDC(self))
info.Developers = [ "Kouakou021988"]
licenseText="GNL"
info.License = wordwrap(licenseText, 400, wx.ClientDC(self))
wx.AboutBox(info)
def play_music(self):
global son,time_ok
print son
media=os.path.splitext(son)[1]
if media==".mp3":
self.player= pymedia.Player()
self.player.setVolume(65000)
self.player.start()
while 1:
self.player.startPlayback(son)
while self.player.isPlaying():
time.sleep(0.01)
try:
if not self.player.isPlaying(): break
except: pass
if time_ok==0:
break
del self.player
else: self.audio_secour()
def audio_secour(self):
global time_ok
self.player= pymedia.Player()
self.player.setVolume(65000)
self.player.start()
while 1:
self.player.startPlayback("Angel.mp3")
while self.player.isPlaying():
time.sleep(0.01)
try:
if not self.player.isPlaying(): break
except: pass
if time_ok==0:
break
del self.player
if __name__ == '__main__':
app = wx.PySimpleApp()
Reveil().Show()
app.MainLoop()
Conclusion
Merci
Sources du même auteur
Sources de la même categorie
Commentaires et avis
|
Derniers Blogs
[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA par cyril
Le deuxième keynote du mix fut très riche en contenu. Internet Explorer 9 Juste un après le lancement de Internet Explorer 8, Microsoft a dévoilé les nouveautés de Internet Explorer 9. Désormais, IE supportera HTML5, SVG et CSS3. L'élément ...
Cliquez pour lire la suite de l'article par cyril CERTIFICATIONS BETA .NET 4CERTIFICATIONS BETA .NET 4 par KooKiz
Les inscriptions pour les certifications beta .NET 4 ont commencé. L'inscription est offerte pour les examens suivants : - 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 71-515, TS: Web Applications Development with...
Cliquez pour lire la suite de l'article par KooKiz [MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2[MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2 par redo
J'imagine que la plupart d'entre vous connaissent bien et utilisent le service de traduction de Google, mais connaissez-vous celui de Microsoft . Microsoft Translator ? Effectivement, Microsoft nous annoncé le lancement version 2 de la Technologie Preview...
Cliquez pour lire la suite de l'article par redo LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010!LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010! par MPOWARE
Toutes les vidéos de ce lancement sont en ligne!
Partie I - Intro
http://www.youtube.com/watch?v=LkQzTQ8T6CA
Partie II - Démo 1
http://www.youtube.com/watch?v=drAhYQ7lqvo
Partie III - Démo 2
http://www.youtube.com/watch?v=c8KM_1Gqybc...
Cliquez pour lire la suite de l'article par MPOWARE [WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE[WP7] JE NE VEUX PAS D'UN NOUVEL IPHONE par FREMYCOMPANY
Je pense qu'ils ont besoin d'une piqure de rappel chez Microsoft : c'est bien gentil d'avoir une interface jolie, mais si c'est pour avoir un truc qui ne convainct pas dedans, c'est peine perdue.
---->
Système ouvert ----> Fermé ?
P...
Cliquez pour lire la suite de l'article par FREMYCOMPANY
Logiciels
Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods Konvertor (4.00)KONVERTOR (4.00)Le logiciel est un gestionnaire multimedia affichant, jouant et convertissant plus de 2000 format... Cliquez pour télécharger Konvertor
|