
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (74)
-
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 -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5489)
-
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.
-
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
-
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.