Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (106)

  • 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

  • Problèmes fréquents

    10 mars 2010, par

    PHP 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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (12421)

  • Merge commit ’f73495686d109ffffaa8c0387e790e7997326229’

    7 avril 2014, par Michael Niedermayer
    Merge commit ’f73495686d109ffffaa8c0387e790e7997326229’
    

    * commit ’f73495686d109ffffaa8c0387e790e7997326229’ :
    adler32 : Fix doxy group definition

    See : 624672fcce84c41e9e2fe9ff3ec3fd56140b175f and others
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

  • linux write permission for multiple users [on hold]

    8 avril 2014, par Naveen Gamage

    I have a folder with these permissions 775 owner : user group : user

    I'm trying to convert files in above folder to MP4 using ffmpeg and write converted files back into above folder.

    ffmpeg use www-data to write so every time it gives me permission denied error.

    I tried adding www-data to group user and above folder has group write access (775) but I still getting the error. Error goes away when I chmod the folder to 777.

    Is there a way to give www-data write access to above folder without changing current ownership ?

  • Warning when streaming with vlc and x264 at a slow framerate

    24 octobre 2013, par jln611

    I am using libvlc and libx264 to stream images from a C++ program. It provides libvlc uncompressed images using the get and release callback. Everything seems to work ok at higher framerate (over 12 fps) but when I try slower framerates (from 1 to 10), I got the following warnings :

    [030d5c6c] mux_ts mux debug: adjusting rate at 0/500000 (3/0)
    [030d5c6c] main mux warning: late buffer for mux input (2127998)
    [030d5c6c] mux_ts mux debug: adjusting rate at 0/500000 (3/0)

    Over 4 fps, I am able to get the stream (for instance with vlc GUI) but under 4 fps, I got nothing, or sometimes a freeze image. The libvlc arguments are the following :

    --imem-get=15543672 --imem-release=15538482 --imem-data=0 --imem-codec=RV24 --imem-cookie=aCookie --imem-cat=2 --imem-height=960 --imem-width=1280 --verbose=2 --imem-id=1 --imem-group=1 --imem-fps=2.000000 -vvv --play-and-exit --no-audio --sout=#transcode{vcodec=h264, fps=2.000000, vb=200k,venc=x264{preset=ultrafast}}:standard{access=http,mux=ts,dst=0.0.0.0:8091/video}

    Any hints would be appreciated.