Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (102)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (15345)

  • swscale/ppc/swscale_altivec.c : POWER LE support in yuv2planeX_8() delete macro GET_VF...

    27 avril 2015, par Rong Yan
    swscale/ppc/swscale_altivec.c : POWER LE support in yuv2planeX_8() delete macro GET_VF() it was wrong
    

    GCC tool had a bug of PPC intrinsic interpret, which has been fixed in GCC 4.9.1. This bug lead to
    errors in two of our previous patches. We found this when we update our GCC tools to 4.9.1 and by
    reading the related info on GCC website. We fix our previous error in two separate commits

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libswscale/ppc/swscale_altivec.c
  • Revision c222b96bfd : Merge "Change in rddiv parameter to make it a power of 2"

    11 octobre 2013, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Merge "Change in rddiv parameter to make it a power of 2"

  • Pydub dir error . dynamic file path doesn't play sound but with specific file path the code works fine

    20 avril 2021, par anshul raj

    I don't know what's wrong with this code - it works fine when I provide an exact file path to the music file, but if I pass it in a dynamic way, it doesn't work.

    &#xA;

    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;