Recherche avancée

Médias (91)

Autres articles (19)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3653)

  • avfilter/vf_showinfo : small adjustments for the HDR10+ dump

    13 octobre 2021, par Limin Wang
    avfilter/vf_showinfo : small adjustments for the HDR10+ dump
    

    summary for the adjustments :
    1, remove the extra "," in the ,
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
    to
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013

    2, add "," between the and new field
    fraction_bright_pixels
    to
    , fraction_bright_pixels

    3, remove the extra space between " "
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,
    to
    ...0.2004,0.3001,0.4008,0.5005,0.6002,0.7009,0.8006,0.9013,

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavfilter/vf_showinfo.c
  • How to batch convert mp4 files to ogg with ffmpeg using a bash command or Ruby

    3 avril 2013, par TJ Sherrill

    I am running a OSX, don't know tons about video conversions. But I have like 200 videos that are all in mp4 format and won't play in Firefox. I need to convert them to ogg to use the html5 video tag.

    These files live in a folder structure that makes it hard to do files one at a time. I would like the bash command or Ruby command to go through all child folders and find all .mp4's and convert them.

    I found one reference of how to do this with Google : http://athmasagar.wordpress.com/2011/05/12/a-bash-script-to-convert-mp4-files-to-oggogv/

    #!/bin/bash
    for f in $(ls *mp4 | sed ‘s/\(.*\)\..*/\1/’)
    do
    ffmpeg -i $f.mp4 -acodec vorbis -vcodec libtheora $f.ogg
    done

    But have no idea how to convert this from linux to osx.

  • Revision 422d7bc918 : Relax maximum Q for extreme overshoot. Added code to relax the active maximum Q

    28 octobre 2014, par Paul Wilkins

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



    Relax maximum Q for extreme overshoot.

    Added code to relax the active maximum Q in response
    to extreme local overshoot to reduce bandwidth peaks.

    The impact is small in metrics terms, but it this helps reduce
    bandwidth spikes and overall overshoot in a number of
    clips in our tests sets (especially the YT test set).

    In particular this should help prevent very big spikes where a clip
    is mainly easy but has a short hard section. In such a case a choice
    of maximum Q for the clip as a whole may allow us to hit the overall
    target rate but give some extreme spikes. The chunked encoding in YT
    mitigates this problem but it can show up where a longer clip is
    coded as a single chunk.

    Change-Id : I213d09950ccb8489d10adf00fda1e53235b39203