
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (33)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe 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" ; -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (5045)
-
ffmpeg error convertimg mkv to mp4
11 janvier 2018, par Blurry ScriptI do this :
ffmpeg -i "film.mkv" -strict experimental film.mp4
I get this :
[matroska,webm @ 0x29fb0e0] Read error at pos. 93417 (0x16ce9)
the file itself is playable and ok, but how can I fix this ? or at least see the reason why it is reporting this, any clues ?
-
OpenAI Whisper : FileNotFoundError : [WinError 2] The system cannot find the file specified
16 décembre 2023, par AlexI'm not the first to get this error, however, all previous answers relate to ffmpeg not installed. As you can see, I installed ffmpeg so not sure why i still get this error. Moreover, this code works perfectly fine in Google Colab but not in Spyder.


pip install tiktoken

pip install -U openai-whisper

pip install ffmpeg

pip install setuptools-rust

import whisper

model = whisper.load_model("medium")

result = model.transcribe("F:/iim/dahl/01.Projects/20231215_Schlueter/02.Code/01.Data/The Investors Everybody Ignored ft Sallie Krawcheck Whats Your Problem Jacob Goldstein.mp3")
print(result["text"])



 Cell In[13], line 1
 result = model.transcribe("F:/iim/dahl/01.Projects/20231215_Schlueter/02.Code/01.Data/The Investors Everybody Ignored ft Sallie Krawcheck Whats Your Problem Jacob Goldstein.mp3/")

 File F:\iim\dahl\00.Anaconda\Lib\site-packages\whisper\transcribe.py:122 in transcribe
 mel = log_mel_spectrogram(audio, model.dims.n_mels, padding=N_SAMPLES)

 File F:\iim\dahl\00.Anaconda\Lib\site-packages\whisper\audio.py:140 in log_mel_spectrogram
 audio = load_audio(audio)

 File F:\iim\dahl\00.Anaconda\Lib\site-packages\whisper\audio.py:58 in load_audio
 out = run(cmd, capture_output=True, check=True).stdout

 File F:\iim\dahl\00.Anaconda\Lib\subprocess.py:548 in run
 with Popen(*popenargs, **kwargs) as process:

 File F:\iim\dahl\00.Anaconda\Lib\site-packages\spyder_kernels\customize\spydercustomize.py:109 in __init__
 super(SubprocessPopen, self).__init__(*args, **kwargs)

 File F:\iim\dahl\00.Anaconda\Lib\subprocess.py:1026 in __init__
 self._execute_child(args, executable, preexec_fn, close_fds,

 File F:\iim\dahl\00.Anaconda\Lib\subprocess.py:1538 in _execute_child
 hp, ht, pid, tid = _winapi.CreateProcess(executable, args,

FileNotFoundError: [WinError 2] Das System kann die angegebene Datei nicht finden




-
I am trying to use ffmpeg with CodeRunner, but it isn't working
8 juillet 2021, par Michael RajaI'm new to coding and I'm using a mac. I used the command conda install -c conda-forge ffmpeg to install the package for use with anaconda. I use Coderunner 4 as well, but Coderunner doesn't seem like it can access ffmpeg from this installation. Since Coderunner isn't as popular as anaconda, I'm having trouble locating a workaround. So, my questions are :


Why can't coderunner use this package installation and how can I get coderunner to be able to access ffmpeg ?


Thanks !