
Recherche avancée
Autres articles (111)
-
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (11431)
-
Anomalie #3614 (Fermé) : Erreur d’affichage d’icone en RTL
8 décembre 2015, par George KandalaftCertaines icones chevauchent le texte dans l’espace prive en RTL comme dans la page de gestion des forums. Ca vient de :
.onglets_simple ul li strong,.onglets_simple ul li a display:block ;float :#ENVleft ;padding:4px 7px ;border:1px solid #ENVfoncee ;margin-#ENVleft:5px ;background-color :#eee ;background-position:center left ;background-repeat:no-repeat ;
qu’il faut remplacer par :
.onglets_simple ul li strong,.onglets_simple ul li a display:block ;float :#ENVleft ;padding:4px 7px ;border:1px solid #ENVfoncee ;margin-#ENVleft:5px ;background-color :#eee ;background-position:center #ENVleft ;background-repeat:no-repeat ;
dans /prive/themes/spip/icons.css.html
-
Creating dnxhd mov with ffmpeg giving errors
26 juillet 2012, par Jared GlassI'm trying to make a create a dnxhd mov with ffmpeg but can't seem to get the codec working.
I've created a 1920x1080 .png to convert into .mov format
My code : (python)
ffmpeg = "C:\\Users\\jared.glass\\Desktop\\mov_test\\ffmpeg_2012_04_02.exe"
images = "C:\\Users\\jared.glass\\Desktop\\mov_test\\Untitled.png"
output = "C:\\Users\\jared.glass\\Desktop\\mov_test\\dnx_hd_test.mov"
os.system(ffmpeg + " -i " + images + " -r 24 -s 1920x1080 -vcodec dnxhd -b:v 120m -an -y " + output )I get the following error :
Incompatible pixel format 'rgb24' for codec 'dnxhd', auto-selecting format 'yuv4
22p10le'
[buffer @ 0000000001D0D950] w:1920 h:1080 pixfmt:rgb24 tb:1/1000000 sar:0/1 sws_
param :
[buffersink @ 0000000001D0DB50] auto-inserting filter 'auto-inserted scale 0' be
tween the filter 'src' and the filter 'out'
[scale @ 0000000001D0DDE0] w:1920 h:1080 fmt:rgb24 sar:0/1 -> w:1920 h:1080 fmt :
yuv422p10le sar:0/1 flags:0x4
[dnxhd @ 0000000001D14740] video parameters incompatible with DNxHD
Output #0, mov, to 'C :\Users\jared.glass\Desktop\mov_test\dnx_hd_test.mov' :
Stream #0:0 : Video : dnxhd, yuv422p10le, 1920x1080, q=2-1024, 90k tbn, 24 tbcStream mapping :
Stream #0:0 -> #0:0 (png -> dnxhd)
Error while opening encoder for output stream #0:0 - maybe incorrect parameters
such as bit_rate, rate, width or heightAnyone have any ideas how to get this working ?
-
Ffprobe with print json doesn't print anything
10 septembre 2012, par Richard KnopI am trying to get information about a movie (resolution, frame rate, bit rate, codecs, duration etc) in a human readable way. I found this commnad :
ffprobe -v quiet -print_format json -show_format -show_streams somefile.asf
In this Stack Overflow question : Get ffmpeg information in friendly way
But it doesn't work for me. When I try it in a terminal, the output is empty :
richard@richard-desktop:~/projects/hello-python$ ffprobe -v quiet -print_format json -show_format -show_streams tests/test_1.mpg
richard@richard-desktop:~/projects/hello-python$