Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (78)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (14126)

  • How to use x264 source code after compiling it

    8 mai 2016, par Zia Khattak

    I need to use the x264 code to compress and stream video from a camera in real time as part of my university project (first using computer and then dsp kit) (and vary quantization value when required). I am totally new to this domain and have absolutely no background.

    So far I have compiled the code using the given method in http://www.ayobamiadewole.com/Blog/How-to-build-x264-or-libx264.dll-in-Windows and created the x264.exe and libx264.dll

    I need help with what to do next in order to use the code for my purpose.

    All help is appreciated.

  • I want to code an android video editing API

    11 mars 2017, par Jason Derulo

    I want to delete segments of two videos and merge them together into one continuous video. With that resultant video, I want to remove segments of audio and then add another audio file. I am aware of FFMPEG but I haven’t found answers to a lot of my questions regarding it and the setup looks like a bit much. I was wondering if there was any way to code, with java, all of the features listed above. Thanks for any help.

  • Shazamio throws an error when running the code

    26 août 2023, par steilzz.

    I tried this code :

    


    import asyncio
from shazamio import Shazam
import ffprobe

async def main():
  shazam = Shazam()
  out = await shazam.recognize_song('Fluxxwave.m4a')
  print(out)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())


    


    but I got an error :

    


      File "/Users/nikitamakarov/PycharmProjects/shazamMy/venv/lib/python3.10/site-packages/ffprobe/ffprobe.py", line 12, in <module>&#xA;    from ffprobe.exceptions import FFProbeError&#xA;  File "/Users/nikitamakarov/PycharmProjects/shazamMy/venv/lib/python3.10/site-packages/ffprobe/ffprobe.py", line 12, in <module>&#xA;    from ffprobe.exceptions import FFProbeError&#xA;ModuleNotFoundError: No module named &#x27;ffprobe.exceptions&#x27;; &#x27;ffprobe&#x27; is not a package&#xA;</module></module>

    &#xA;

    The package is definitely installed, so why does this happen ?

    &#xA;