Advanced search

Medias (91)

Other articles (19)

  • Pas question de marché, de cloud etc...

    10 April 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Keeping control of your media in your hands

    13 April 2011, by

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 March 2010, by

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)

On other websites (4387)

  • After adding "qscale 0" option in ffmpeg convertation does't work [on hold]

    2 August 2014, by Lika Samsonia

    I want to convert an AVI video to MPEG-4 with ffmpeg and after adding option scale 0 the script doesn’t work.

    shell_exec("ffmpeg -i $temp_name -qscale 0 $upload_dir/jj.mp4");
  • Concatenation of files using ffmpeg does not work as I expected. Why?

    19 December 2018, by Peter Olson

    I execute the following command line

    ffmpeg.exe
       -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi
       -i C:\Beema\video-source\DO_U_BEEMA176x144short.avi
       -i C:\Beema\temp\9016730-51056331-stitcheds.avi  
       -i C:\Beema\video-source\GOTTA_BEEMA176x144short.avi
       -y -ac 1 -r 24 -b 25K
       C:\Beema\video-out\9a062fb6-d448-48fe-b006-a85d51adf8a1.mpg

    The output file in video-out ends up having a single copy of DO_U_BEEMA. I do not understand why ffmpeg is not concatenating.

    Any help is dramatically appreciated,

  • h264: make slice threading work with deblocking_filter=1

    13 April 2016, by Anton Khirnov
    h264: make slice threading work with deblocking_filter=1
    

    In such a case, decode the MBs in parallel without the loop filter, then
    execute the filter serially.

    The ref2frm array was previously moved to H264SliceContext. That was
    incorrect, since it applies to all the slices and should properly be in
    H264Context (it did not actually break decoding, since this distinction
    only becomes relevant with slice threading and deblocking_filter=1,
    which was not implemented before this commit). The ref2frm array is thus
    moved back to H264Context.

    • [DBH] libavcodec/h264.c
    • [DBH] libavcodec/h264.h
    • [DBH] libavcodec/h264_slice.c