
Recherche avancée
Autres articles (26)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (7894)
-
Compile FFmpeg with openssl for macOS
23 juin 2017, par H. WilsonHi I would like to ask how to compile ffmpeg with openssl for macOS.
When I type https in ffmpeg to download / encode webstream from the website I always get an error
"https protocol not found, recompile FFmpeg with openssl, guntls. or securetransport enabled"
whilst http does work (some websites didn’t allow http as I got an error "HTTP error 403 Forbidden though)
https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX
I have read the link above but I am unsure about the process as I don’t use homebrew to install ffmpeg but built myself.
I am the very beginner using ffmpeg and any help would be appreciated..
I hope somebody could show me its process to compile ffmpeg with openssl.For further advice, I am wondering if the function of ffmpeg I built myself is same as the static one here : ttps ://ffmpeg.zeranoe.com/builds/
I built ffmpeg for mac by this website : http://ericholsinger.com/install-ffmpeg-on-a-mac
Thanks in advance
-
Using ffmpeg to encode web dash and audio drift
1er octobre 2016, par John JoskeI’m trying to use ffmpeg to create webm-dash encoded files from a usb web cam. Adapted from this example http://wiki.webmproject.org/adaptive-streaming/instructions-to-do-webm-live-streaming-via-dash
I have managed to get something nearly works with the following command :
ffmpeg -f video4linux2 -framerate 30 -s 640x360 -i /dev/video0
-thread_queue_size 512 -f alsa -ar 44100 -ac 2 -i hw:2 -map 0:0 -pix_fmt yuv420p -c:v libvpx-vp9 -s 640x360 -keyint_min 60 -g 60 -speed 6 -tile-columns 4 -frame-parallel
1 -threads 8 -static-thresh 0 -max-intra-rate 300 -deadline realtime
-lag-in-frames 0 -error-resilient 1 -f webm_chunk -header video_360.hdr" -chunk_start_index 1 video_360_%d.chk -map 1:0 -c:a libvorbis -b:a 128k -ar 44100
-f webm_chunk -copytb 1 -audio_chunk_duration 2000 -header video_171.hdr -chunk_start_index 1 video_171_%d.chkHowever over a period of time the audio chunks slowly get behind the video chunks, can anyone suggest a way to ensure they stay the same.
-
can't install libvorbis on centos 7, fatal error : ogg/ogg.h : No such file or directory
14 octobre 2019, par Abdalla Mohamed Aly IbrahimHello I’ve been trying to install FFmpeg with some libraries using this tutorial
https://trac.ffmpeg.org/wiki/CompilationGuide/Centos?version=85using this command to install the libvorbis
cd ~/ffmpeg_sources
curl -O -L http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.tar.gz
tar xzvf libvorbis-1.3.5.tar.gz
cd libvorbis-1.3.5
./configure --prefix="$HOME/ffmpeg_build" --with-ogg="$HOME/ffmpeg_build" --disable-shared
make
make installi get this error with command make
../include/vorbis/codec.h:26:21: fatal error: ogg/ogg.h: No such file or directory
#include <ogg></ogg>ogg.h>
compilation terminated.and when i install ffmpeg i get this error
ERROR: vorbis not found using pkg-config
Thanks