
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (71)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12687)
-
doc : cosmetics : Consistently format list and table items
26 mars 2013, par Diego Biurrun -
configure : Allow mixing declarations and statements
30 mars, par Andreas Rheinhardtconfigure : Allow mixing declarations and statements
This C90 rule forces us to use a too big scope and should
therefore be dropped. Given that we already require C11,
all supported compilers can handle mixed declarations
and statements just fine.Reviewed-by : Zhao Zhili <quinkblack-at-foxmail.com@ffmpeg.org>
Reviewed-by : Marvin Scholz <epirat07@gmail.com>
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
Unable to connect pyqt5 ui and Python file
7 janvier 2021, par Education 4FunI followed some tutorials and its working for them but not for me the below code is the exact copy of one of their code giving same errors even when try to integrate int my application


I followed some tutorials and its working for them but not for me the below code is the exact copy of one of their code giving same errors even when try to integrate int my application


Python code


import sys
from PyQt5 import QtWidgets
from PyQt5.QtWidgets import QDialog, QApplication, QFileDialog
from PyQt5.uic import loadUi

class MainWindow(QDialog):
 def __init__(self):
 super(MainWindow,self).__init__()
 loadUi("lolol.ui",self)
 self.browse.clicked.connect(self.browsefiles)

 def browsefiles(self):
 fname=QFileDialog.getOpenFileName(self, 'Open file', 'D:\Videos', 'Images (*.png, *.xmp *.jpg)')
 self.filename.setText(fname[0])

app=QApplication(sys.argv)
mainwindow=MainWindow()
widget=QtWidgets.QStackedWidget()
widget.addWidget(mainwindow)
widget.setFixedWidth(400)
widget.setFixedHeight(300)
widget.show()
sys.exit(app.exec_())



lolol.ui file


<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
 <class>Dialog</class>
 <widget class="QDialog">
 <property>
 <rect>
 <x>0</x>
 <y>0</y>
 <width>400</width>
 <height>300</height>
 </rect>
 </property>
 <property>
 <string>Dialog</string>
 </property>
 <widget class="QLineEdit">
 <property>
 <rect>
 <x>20</x>
 <y>130</y>
 <width>211</width>
 <height>22</height>
 </rect>
 </property>
 </widget>
 <widget class="QPushButton">
 <property>
 <rect>
 <x>260</x>
 <y>130</y>
 <width>93</width>
 <height>28</height>
 </rect>
 </property>
 <property>
 <string>Browse</string>
 </property>
 </widget>
 </widget>
 <resources></resources>
 <connections></connections>
</ui>



Error


Traceback (most recent call last):
 File "c:/Users/thota/OneDrive/Desktop/VET/lolii.py", line 17, in <module>
 mainwindow=MainWindow()
 File "c:/Users/thota/OneDrive/Desktop/VET/lolii.py", line 9, in __init__
 loadUi("lolol.ui",self)
 File "C:\Users\thota\AppData\Local\Programs\Python\Python37\lib\site-packages\PyQt5\uic\__init__.py", line 238, in loadUi
 return DynamicUILoader(package).loadUi(uifile, baseinstance, resource_suffix)
 File "C:\Users\thota\AppData\Local\Programs\Python\Python37\lib\site-packages\PyQt5\uic\Loader\loader.py", line 66, in loadUi
 return self.parse(filename, resource_suffix)
 File "C:\Users\thota\AppData\Local\Programs\Python\Python37\lib\site-packages\PyQt5\uic\uiparser.py", line 1020, in parse
 document = parse(filename)
 File "C:\Users\thota\AppData\Local\Programs\Python\Python37\lib\xml\etree\ElementTree.py", line 1197, in parse
 tree.parse(source, parser)
 File "C:\Users\thota\AppData\Local\Programs\Python\Python37\lib\xml\etree\ElementTree.py", line 587, in parse
 source = open(source, "rb")
</module>