Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (10355)

  • Encoding IPIPIP Frames from x264 baseline 420 profile [duplicate]

    5 août 2015, par Codec Guy

    This question already has an answer here :

    I am new to FFMPEG. I am trying encode a stream in alternate I-Frames and P-Frames for the baseline profile IPIPIPIPIP.

    I searched FFMPEG forums but was not able to get the required output

    My script file :

    export LD_LIBRARY_PATH=:./FFMPEGEncLibs
    ./ffmpegEnc -f rawvideo -r 25 -s 176x144 -vcodec rawvideo -i ./encIn/akiyo_qcif.yuv -c:v libx264 -x264-params cabac=0:8x8dct=0 -pix_fmt yuv420p -profile:v baseline -level 4.1 -psnr -intra -qp 9 -vframes 10 ./encOut/akiyo_cif.h264

    Can someone suggest me changes to my script file, so that i would be able to encode in stream in IPIPIP format

    Thanks in advance

  • Encoding IPIPIP Frames from x264 baseline 420 profile [duplicate]

    5 août 2015, par Codec Guy

    This question already has an answer here :

    I am new to FFMPEG. I am trying encode a stream in alternate I-Frames and P-Frames for the baseline profile IPIPIPIPIP.

    I searched FFMPEG forums but was not able to get the required output

    My script file :

    export LD_LIBRARY_PATH=:./FFMPEGEncLibs
    ./ffmpegEnc -f rawvideo -r 25 -s 176x144 -vcodec rawvideo -i ./encIn/akiyo_qcif.yuv -c:v libx264 -x264-params cabac=0:8x8dct=0 -pix_fmt yuv420p -profile:v baseline -level 4.1 -psnr -intra -qp 9 -vframes 10 ./encOut/akiyo_cif.h264

    Can someone suggest me changes to my script file, so that i would be able to encode in stream in IPIPIP format

    Thanks in advance

  • aacenc : implement the complete AAC-Main profile

    21 août 2015, par Rostislav Pehlivanov
    aacenc : implement the complete AAC-Main profile
    

    This commit finalizes AAC-Main profile encoding support
    by implementing all mandatory and optional tools available
    in the specifications and current decoders.

    The AAC-Main profile reqires that prediction support be
    present (although decoders don’t require it to be enabled)
    for an encoder to be deemed capable of AAC-Main encoding,
    as well as TNS, PNS and IS, all of which were implemented
    with previous commits or earlier of this year.

    Users are encouraged to test the new functionality using either
    - profile:a aac_main or -aac_pred 1, the former of which will enable
    the prediction option by default and the latter will change the
    profile to AAC-Main. No other options shall be changed by enabling
    either, it’s currently up to the users to decide what’s best.

    The current implementation works best using M/S and/or IS,
    so users are also welcome to enable both options and any
    other options (TNS, PNS) for maximum quality.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac.h
    • [DH] libavcodec/aaccoder.c
    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacenc_pred.c
    • [DH] libavcodec/aacenc_pred.h