
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (81)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque 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 (9896)
-
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>
 from ffprobe.exceptions import FFProbeError
 File "/Users/nikitamakarov/PycharmProjects/shazamMy/venv/lib/python3.10/site-packages/ffprobe/ffprobe.py", line 12, in <module>
 from ffprobe.exceptions import FFProbeError
ModuleNotFoundError: No module named 'ffprobe.exceptions'; 'ffprobe' is not a package
</module></module>


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


-
I want to code an android video editing API
11 mars 2017, par Jason DeruloI 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.
-
configure : allow mixed declarations and code for Objective-C
25 septembre 2024, par Marvin Scholzconfigure : allow mixed declarations and code for Objective-C
Mixing declarations and code is quite common in Objective-C (as can be
seen by the number of warnings we have for this in Objective-C files)
and forcing to not do it usually results in worse code, with unnecessary
widely scoped variables, which in turn makes variable shadowing and
accidentally using the wrong variable more common and harder to notice.Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>