
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (112)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (14252)
-
Problem about get the video from webcam in julia
12 août 2020, par Wendy ChenI used this code to get the video from webcam in julia, but it was unstable when I setting the time exceed 4 and one half minutes(ex. -t 00:05:00). Why is that so ? And what should I do ?
Thanks.


using PyCall
run(`$(PyCall.python) -m pip install ffmpy`)
ffmpy = pyimport("ffmpy")
ff=ffmpy.FFmpeg(
 inputs=Dict("rtsp://......@....."=>nothing),
 outputs=Dict("./Video.mp4"=>"-t 00:01:00"))
println(ff.cmd)
ENV["PATH"]="PATH/TO/ffmpeg.executable;"*ENV["PATH"]
ff.run()



-
Revision 5c808ba13a : Add max burst bitrate control. Applies an upper limit on burst bitrate for any
10 janvier 2014, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_onyx_int.h
Modify /vp9/encoder/vp9_ratectrl.c
Add max burst bitrate control.Applies an upper limit on burst bitrate for any
frame. This is to insure that typical encodes for YT
do not produce frames that are so large that they
risk stalling HW implementations. Such frames
could also cause playback problems in SW.For now the limit is set at 250 bits per MB for 1080P
and larger (with the 1080P limit used for smaller frames).Setting maxQ, constant quality mode or targeting a
very high bandwidth will have precedence over this limit.Change-Id : Ie6f776c38b06ac7cec043d034085f4b79ee46a38
-
ffmpeg - compilation problem with g++
22 août 2014, par SunI am trying to run a program which uses ffmpeg libraries to decode a mp3 file. I am using following options for compiling the program :
g++ -c play.cpp -o play.o
g++ -o play play.o -L/usr/local/lib -lavutil -lavcodec -lavformat -lavdevice \
-lavfilter -ldl -lasound -L/usr/lib -lSDL -lpthread -lz -lswscale -lmBut while linking I am gettign following errors :
play.cpp:(.text+0x49): undefined reference to `av_dup_packet(AVPacket*)'
play.cpp:(.text+0x66): undefined reference to `av_malloc(unsigned int)'
play.cpp:(.text+0x324): undefined reference to `avcodec_decode_audio3(AVCodecContext*, short*, int*, AVPacket*)'
play.cpp:(.text+0x387): undefined reference to `av_free_packet(AVPacket*)'and so on...
These reported functions are available in the libavcodec.a etc. which i have already specified with the link options.
Can anyone please tell me what could be wrong here or suggest how to approach debugging this ?