Recherche avancée

Médias (91)

Autres articles (35)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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 ;

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (5542)

  • lavf/movenc : small cleanup for style

    21 mars 2024, par Jun Zhao
    lavf/movenc : small cleanup for style
    

    Small cleanup for style, indent, switch case lables.
    BTW, the preferred way to ease multiple indentation levels in a
    switch statement is to align the switch and its subordinate
    case labels in the same column

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/movenc.c
  • Revision 0607abc3dd : Stop partition checking when distortion is small If the current obtained distor

    7 septembre 2013, par Yunqing Wang

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Stop partition checking when distortion is small

    If the current obtained distortion is very small, which happens
    for static image case, we pick the current partition type without
    further split checking.

    This won't affect regular videos. For static videos, we got 10% 12%
    encoding speed gain. PSNR was better for some clips, and worse for
    others. Overall it was even.

    Change-Id : If787a57bedf46fc595ca4f5ded2b0c0a69e9fdef

  • libav / ffmpeg output optimisation for small file sizes

    21 avril 2016, par Claudia Rosso

    I am using the following command to take an audio mp3 file and make a video out of it (by using a static jpg picture). My aim is to get a mp3 audio that is as small as possible with still acceptable quality.

    frequency="11000"
    bitrate="45000"
    avconv -loop 1 -i a.jpg -i audio.mp3 -shortest -r 1 -metadata STEREO_MODE=mono -c:v libx264 -ar "$frequency" -b:a "$bitrate" -ac 0 result.mkv

    My questions are :
    1. how can I achieve that the resulting file is MONO ?
    2. is it possible to reduce the bitrate furthermore ? I would like to use values below 45000, too.
    3. My aim is to get control of the parameters that influence the file size most significantly. Presently I know that the frequency is quite important. Are there any other parameters that would help me to get a very small output file with still acceptable quality ?

    Thanks in advance.