
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (31)
-
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 ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (6389)
-
YouTube_dl doesn't find ffmpeg
10 octobre 2019, par user702846I would like to download a set of youtube file as audio, mp3.
import youtube_dl
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'mp3',
'preferredquality': '192',
}],
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(['https://www.youtube.com/watch?v=cmNEDz7YZSw'])It successfully download the file as m4a - however complains about ffmpeg installation.
ERROR: ffprobe/avprobe and ffmpeg/avconv not found. Please install one.
I do have ffmpeg installed and located at /usr/local/bin/ffmpeg and also have added to my PATH using
os.environ["PATH"] += '/usr/local/bin/ffmpeg'
but still the error is there. I am using MacOS Mojave and my ffmpeg specification are as following,
fmpeg version 4.1.3 Copyright (c) 2000-2019 the FFmpeg developers
built with Apple LLVM version 10.0.1 (clang-1001.0.46.4)
configuration: --disable-encoder=vorbis --enable-libvorbis --enable-libmp3lame --disable-x86asm -
How to add filters to ffmpeg, mp
20 novembre 2014, par CoderzelfI tried to use ffmpeg filter ’mp’ but it reports there is no such filter.
what I tried :
'ffmpeg -i input.avi -vf mp=ep2=xxx output.avi'
And I build ffmpeg from this link :
-
ffmpeg install on my machine but not display in phpinfo()
17 février 2017, par Pratik Bachchheffmpeg extension not loaded in
phpinfo()
when I follow the steps below :- Download ffmpeg from here : https://ffmpeg.org/download.html
- Copy
php_ffmpeg.dll
from thephp5
folder to theC:\wamp\bin\php\php5.2.9-2\ext
- Copy files from
common
to thewindows/system32
folder - Add
extension=php_ffmpeg.dll
tophp.ini
file (\apache...php.ini
) - Restart all services (Apache, PHP...)
- Enable
extension=php_ffmpeg.dll
directive in yourphp.ini
.