Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (11468)

  • utvideoenc : Enable support for multiple slices and use them

    14 février 2014, par Jan Ekström
    utvideoenc : Enable support for multiple slices and use them
    

    The official Ut Video decoder only threads with slices, thus until
    now any files encoded by the libavcodec encoder have only been
    decodable with a single thread. The default slice count is now
    set to subsampled_height / 120.

    Also sets slices to 1 for the Ut Video encoder tests to keep them
    green.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/utvideoenc.c
    • [DH] tests/fate/utvideo.mak
  • c# NReco.VideoConverter Ubuntu 16.04

    19 septembre 2018, par Neyt Chi

    I’m trying to use the functionality of the NReso library. VideoConverter. The program is launched from Ubuntu OS 16.04 in the MonoDevelopment environment. The operating system is 64 charging. I installed the application FFMpeg and it works fine.
    And I have a problem that does not make a lot of sense. I’m trying to use code NReso.VideoConveter from the site official site https://www.nrecosite.com/video_converter_net.aspx :

    try
    {
        string [] paths = {"1.mp4",
        "1.mp4",
        "1.mp4"};
        ConcatSettings concatSettings = new ConcatSettings ();
        concatSettings.ConcatAudioStream = false;
        concatSettings.ConcatVideoStream = true;
        FFMpegConverter ffMpegConvert = new FFMpegConverter ();
        Console.WriteLine ("Converting ... \ r \ n");
        ffMpegConvert.ConcatMedia (paths, "3.mp4", Format.mp4, concatSettings);
        Console.WriteLine ("Complete!");
    }
    catch (Exception e)
    {
    Console.WriteLine (e.Message);
    }

    The code produces an error of type

    "ApplicationName = ’/ home / neytchi / Projects / testVE / testVE /
    bin / Debug / ffmpeg.exe’, CommandLine = ’- y -loglevel info -i
    "1.mp4" -i "1.mp4" -i "1. mp4 "-f mp4 -filter_complex" concat = n = 3 :
    v = 1 [v] "-map" [v] "" 3.mp4 "’, CurrentDirectory =’ / home / neytchi
    / Projects / testVE / testVE / bin / Debug ’, Native error = Access
    denied" or so "Unhandled Exception : Systems
    .ComponentModel.Win32Exception"

    I can not understand the cause of problem, but I’m assuming that the library starts the process as 32-bit, when everything else is 64-bit.
    Any ideas ? Perhaps someone met with a similar on Ubuntu.

  • Compiling FFmpeg with option —enable-libass on CentOS 5 32bit [closed]

    26 mai 2012, par whatUwant

    I have already installed libass and libass-devel

    yum install libass libass-devel
    ...
    Package libass-0.9.11-1.el5.rf.i386 already installed and latest version
    Package libass-devel-0.9.11-1.el5.rf.i386 already installed and latest version
    Nothing to do

    The source code of ffmpeg is from official git.
    I try to compile ffmpeg with the option —enable-libass. But it prompts "ERROR : libass not found" every time.

    ./configure --enable-version3 \
    --enable-libvorbis \
    --enable-libx264 \
    --enable-libxvid \
    --disable-ffplay \
    --enable-shared \
    --enable-libmp3lame \
    --enable-gpl \
    --enable-pthreads \
    --enable-postproc \
    --enable-x11grab \
    --enable-libgsm  \
    --enable-swscale \
    --enable-nonfree \
    --enable-avfilter \
    --enable-libass

    In config.log it says

    check_pkg_config libass ass/ass.h ass_library_init
    ERROR: libass not found

    I've checked

    /usr/local/include/ass/ass.h

    and

    /usr/include/ass/ass.h

    this ass.h does exist in both places.

    "pkg-config —cflags —libs libass" says

    Package enca was not found in the pkg-config search path.
    Perhaps you should add the directory containing `enca.pc&#39;
    to the PKG_CONFIG_PATH environment variable
    Package &#39;enca&#39;, required by &#39;libass&#39;, not found

    "yum install enca" says

    Package enca-1.10-1.el5.rf.i386 already installed and latest version