Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (71)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour 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, par

    Le 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 2013

    Puis-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
    doc : cosmetics : Consistently format list and table items
    
    • [DBH] doc/developer.texi
    • [DBH] doc/fate.texi
  • configure : Allow mixing declarations and statements

    30 mars, par Andreas Rheinhardt
    configure : 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>

    • [DH] configure
    • [DH] doc/developer.texi
  • Unable to connect pyqt5 ui and Python file

    7 janvier 2021, par Education 4Fun

    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

    &#xA;

    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

    &#xA;

    Python code

    &#xA;

    import sys&#xA;from PyQt5 import QtWidgets&#xA;from PyQt5.QtWidgets import QDialog, QApplication, QFileDialog&#xA;from PyQt5.uic import loadUi&#xA;&#xA;class MainWindow(QDialog):&#xA;    def __init__(self):&#xA;        super(MainWindow,self).__init__()&#xA;        loadUi("lolol.ui",self)&#xA;        self.browse.clicked.connect(self.browsefiles)&#xA;&#xA;    def browsefiles(self):&#xA;        fname=QFileDialog.getOpenFileName(self, &#x27;Open file&#x27;, &#x27;D:\Videos&#x27;, &#x27;Images (*.png, *.xmp *.jpg)&#x27;)&#xA;        self.filename.setText(fname[0])&#xA;&#xA;app=QApplication(sys.argv)&#xA;mainwindow=MainWindow()&#xA;widget=QtWidgets.QStackedWidget()&#xA;widget.addWidget(mainwindow)&#xA;widget.setFixedWidth(400)&#xA;widget.setFixedHeight(300)&#xA;widget.show()&#xA;sys.exit(app.exec_())&#xA;

    &#xA;

    lolol.ui file

    &#xA;

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

    &#xA;

    Error

    &#xA;

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

    &#xA;

    Files location&#xA;enter image description here

    &#xA;