Recherche avancée

Médias (91)

Autres articles (103)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin 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 (...)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9036)

  • FFMPEG : FFPLAY binary not getting generated on compilation

    22 juillet 2019, par Zax

    I have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay

    I use the following command to configure and make the package :

    ./configure --enable-ffplay
    make

    Here it shows that :
    SDL support               no
    as one of the outputs. But i have sdl packages installed in my system.

    However, the packages created are :

    ffmpeg
    ffmpeg_g
    ffserver
    ffserver_g
    ffprobe
    ffprobe_g

    I have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.

    I checked my config.log, it has the below lines :

    ffplay='yes'
    ffplay_deps='avcodec avformat swscale swresample sdl'
    ffplay_select='rdft crop_filter'

    I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.

  • FFMPEG : FFPLAY binary not getting generated on compilation

    2 avril 2017, par Zax

    I have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay

    I use the following command to configure and make the package :

    ./configure --enable-ffplay
    make

    Here it shows that :
    SDL support               no
    as one of the outputs. But i have sdl packages installed in my system.

    However, the packages created are :

    ffmpeg
    ffmpeg_g
    ffserver
    ffserver_g
    ffprobe
    ffprobe_g

    I have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.

    I checked my config.log, it has the below lines :

    ffplay='yes'
    ffplay_deps='avcodec avformat swscale swresample sdl'
    ffplay_select='rdft crop_filter'

    I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.

  • Setting dpi flag in image files generated using ffmpeg

    17 mars 2023, par jim_e_jib

    We're using ffmpeg to batch out some TIFF images that are being resized and having white borders created to fit specific paper sizes.

    


    The resulting images default to 72dpi, even when the source is 300dpi. Is there a way to set the dpi flag in the output file ?

    


    Many thanks :-)

    


    The command we're using :

    


    for %%a in ("*.tif") do ffmpeg -i "%%a" -vf "scale=6974:4919:force_original_aspect_ratio=decrease,pad=7016:4961:(ow-iw)/2:(oh-ih)/2:color=white, format=rgb24" "%%~na A2 poster 594x420mm-Border.tif"


    


    We have tried using -dpi 300 in the code but get the error that this is not a recognised.

    


    Edit :

    


    I have just managed to answer my own question :

    


    for %%a in ("*.tif") do ffmpeg -i "%%a" -vf "scale=6974:4919:force_original_aspect_ratio=decrease,pad=7016:4961:(ow-iw)/2:(oh-ih)/2:color=white,format=rgb24" -dpi 300 "%%~na A2 poster 594x420mm-Border.tif"


    


    I had been placing the -dpi 300 in the wrong place when I'd tried it...