Recherche avancée

Médias (91)

Autres articles (54)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6793)

  • Revision 675ec943db : Fix including test file twice. The test file niklas_1280_720_30.yuv may be incl

    19 décembre 2014, par Frank Galligan

    Changed Paths :
     Modify /test/test-data.mk



    Fix including test file twice.

    The test file niklas_1280_720_30.yuv may be included twice.

    Change-Id : I44512073e9e430a8e10fbce5afd62041e0edea17

  • dnn : change .model file format to put layer number at the end of file

    29 août 2019, par Guo, Yejun
    dnn : change .model file format to put layer number at the end of file
    

    currently, the layer number is at the beginning of the .model file,
    so we have to scan twice in python script, the first scan to get the
    layer number. Only one scan needed after put the layer number at the
    end of .model file.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>
    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] libavfilter/dnn/dnn_backend_native.c
    • [DH] tools/python/convert_from_tensorflow.py
  • Pydub dir error . dynamic file path dosent play sound but with specific file path the code works fine

    20 avril 2021, par anshul raj

    hello developers idk whats wrong with this code it works fine when i give exact file path to the music file but if i pass it in dynamic way it doesnt work . actually my code is that user give a music file name it get downloaded then with the meta id it find the file in downloads dir then play it

    &#xA;

     def songplayer(self,meta):&#xA;        def playmmusic(name):&#xA;            from pydub.playback import play&#xA;            from pydub import AudioSegment&#xA;            AudioSegment.converter = "C:\\ffmpeg\\bin\\ffmpeg.exe"&#xA;            AudioSegment.ffmpeg = "C:\\ffmpeg\\bin\\ffmpeg.exe"&#xA;            AudioSegment.ffprobe = "C:\\ffmpeg\\bin\\ffprobe.exe"&#xA;            sound = AudioSegment.from_file(name)&#xA;            play(sound)&#xA;&#xA;        print(colored("Currently Playing : " &#x2B; meta[&#x27;title&#x27;],&#x27;yellow&#x27;))&#xA;        r=meta[&#x27;id&#x27;]&#xA;        tt=&#x27;./downloads/&#x27;&#x2B;r&#xA;        playmmusic(tt)&#xA;

    &#xA;