
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (49)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5677)
-
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
-
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.
-
Unknown Codec error at ffserver
23 mai 2016, par PotatoI installed ffmpeg following this page, https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
As you see I enabled x264.
But when I run ffserver, I get/etc/ffserver.conf:16: Unknown VideoCodec: libx264
/etc/ffserver.conf:24: Unknown AudioCodec: libfaacMy conf file is
HTTPPort 8080
RTSPPort 8090
HTTPBindAddress 0.0.0.0
RTSPBindAddress 0.0.0.0
MaxClients 1000
MaxBandwidth 1000000
<feed>
Launch ffmpeg -f v4l2 -i /dev/video0 -f alsa -ac 1 -i hw:1
FileMaxSize 400K
</feed>
<stream>
Format rtp
Feed feed1.ffm
VideoCodec libx264
VideoFrameRate 24
VideoBitRate 100
VideoSize 320x240
#AVPresetVideo default
#AVPresetVideo baseline
AVOptionVideo flags +global_header
AudioCodec libfaac
AudioBitRate 32
AudioChannels 1
AudioSampleRate 22050
AVOptionAudio flags +global_header
</stream>Well, what can I do more.