
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (34)
-
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (5950)
-
I got a message "using Plots" in Julia and I do no how to resolve it
7 septembre 2020, par EhsanI am a new in Julia and after adding the Plots package I tried to use Plots and I got this Error message :


julia> using Plots
[ Info: Precompiling Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80]
ERROR: LoadError: InitError: could not load library "C:\Users\niri.julia\artifacts\7350a6401f1c0d38cc3518193083bc4f83adfe99\bin\avcodec-58.dll"
The specified module could not be found.
Stacktrace:

ERROR: LoadError: Failed to precompile FFMPEG [c87230d0-a227-11e9-1b43-d7ebe4e7570a] to C:\Users\niri.julia\compiled\v1.5\FFMPEG\TGvga_Ik59J.ji.

ERROR: Failed to precompile Plots [91a5bcdd-55d7-5caf-9e0b-520d859cae80] to 



can someone help me to resolve the problem


-
Added support for X-Sendfile and X-Accel-Redirect headers for file downloads via PHP.
6 juin 2013, par blueimpAdded support for X-Sendfile and X-Accel-Redirect headers for file downloads via PHP.
-
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()