
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (79)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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" ; -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5536)
-
Cannot get ffmpeg to work after installing from homebrew
14 avril 2024, par phizzyI installed ffmpeg through homebrew but when I try to run it, even just typing in
ffmpeg
I get the following error message :


dyld: Library not loaded: /usr/local/lib/liblzma.5.dylib
 Referenced from: /usr/local/bin/ffmpeg
 Reason: Incompatible library version: ffmpeg requires version 8.0.0 or later, but liblzma.5.dylib provides version 6.0.0
Trace/BPT trap: 5




I've tried running
brew update
andbrew upgrade
but that didn't change anything. Runningbrew doctor
the only error I get is :


Warning: You have a curlrc file
If you have trouble downloading packages with Homebrew, then maybe this
is the problem? If the following command doesn't work, then try removing
your curlrc:
 curl http://github.com




New at doing things in the terminal, what to do next ?


-
Cannot get ffmpeg to work after installing from homebrew
24 juillet 2015, par phizzyI installed ffmpeg through homebrew but when I try to run it, even just typing in
ffmpeg
I get the following error message :dyld: Library not loaded: /usr/local/lib/liblzma.5.dylib
Referenced from: /usr/local/bin/ffmpeg
Reason: Incompatible library version: ffmpeg requires version 8.0.0 or later, but liblzma.5.dylib provides version 6.0.0
Trace/BPT trap: 5I’ve tried running
brew update
andbrew upgrade
but that didn’t change anything. Runningbrew doctor
the only error I get is :Warning: You have a curlrc file
If you have trouble downloading packages with Homebrew, then maybe this
is the problem? If the following command doesn't work, then try removing
your curlrc:
curl http://github.comNew at doing things in the terminal, what to do next ?
-
Idea on how to make video maker website ?
13 octobre 2015, par Gulam GajaniI want to create website that create video and user can share that website in any social site.
(example sites :
- flixpress.com
- studio.stupeflix.com
- www.photodex.com
- www.picovico.com )
this type of website i want to create.After long research and come to conclusion to use imagemagick and ffmpeg for my website.I learn the basic of the ffmpeg and imagemagick.
SO I create code like this
for text overlay in ffmpeg i create code like thisffmpeg -i input.mp4 -vf drawtext="fontfile=/usr/share/fonts/TTF/Vera.ttf: \
text='Stack Overflow': fontcolor=white: fontsize=24: box=1: boxcolor=black: \
x=(w-text_w)/2: y=(h-text_h-line_h)/2" -codec:a copy output.flvand for imagemagick use convert to make pics and make slideshow with ffmpeg code.
shell_exec(" ffmpeg -framerate 1*10 -i %d.png -c:v libx264 -r 30 -pix_fmt yuv420p out1.mp4");
This code works fine.No error, nothing.
But the output video does not have the quality that i wanted.
My question is that for create website like i mentioned above.Am i using the right software (ffmpeg and imagemagick).what software or code this type of website used ? Any idea ? any opensource software or program for this ?
I am just newbie and try to learn the things.
Please provide guidance on this what i am doing wrong.Just give the software name of programe which is used for this type of website. I can go through by myself. Please Give some idea on this.