Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (91)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (4910)

  • avcodec : add common fflcms2 boilerplate

    28 juin 2022, par Niklas Haas
    avcodec : add common fflcms2 boilerplate
    

    Handling this in general code makes more sense than handling it in
    individual codec files, because it would be a lot of unnecessary code
    duplication for the plenty of formats that support exporting ICC
    profiles (jpg, png, tiff, webp, jxl, ...).

    encode.c and decode.c will be in charge of initializing this state as
    needed, so we merely need to make sure to uninit it afterwards from the
    common destructor path.

    Signed-off-by : Niklas Haas <git@haasn.dev>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/avcodec.c
    • [DH] libavcodec/decode.c
    • [DH] libavcodec/internal.h
  • ffmpeg - convert movie AND show original input (as a resized picture-in-picture, e.g., bottom-right corner) in the final output file

    3 octobre 2019, par raven

    this is my first post on this forum, so please be gentle in case I accidentally do trip over any forum rules that I would not know of yet :).

    I would like to apply some color-grading to underwater GoPro footage. To quicker gauge the effect of my color settings (trial-and-error, as of yet), would like to see the original input video stream as a PIP (e.g., scaled down to 50% or even 30%), in the bottom-right corner of the converted output movie.

    I have one input movie that is going to be color graded. The PIP should use the original as an input, just a scaled-down version of it.

    I would like to use ffmpeg’s "-filter_complex" option to do the PIP, but all examples I can find on "-filter_complex" would use two already existing movies. Instead, I would like to make the color-corrected stream an on-the-fly input to "-filter_complex", which then renders the PIP.

    Is that doable, all in one go ?

    Both the individual snippets below work fine, I now would like to combine these and skip the creation of an intermediate color-graded TMP output which then gets combined, with the original, in a final PIP creation process.
    Your help combining these two separate steps into one single "-filter_complex" action is greatly appreciated !

    Thanks in advance,
    raven.

    [existing code snippets (M$ batch files)]

    ::declarations/defines::
    set "INPUT="
    set "TMP="
    set "OUTPUT="
    set "FFMPG="
    set "QU=9" :: quality settings

    set "CONV='"0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1
    0 -1 0:0 -1 0 -1 5 -1 0 -1 0'"" :: sharpening convolution filter

    ::color-grading part::
    %FFMPG% -i %INPUT% -vf convolution=%CONV%,colorbalance=rs=%rs%:gs=%gs%:bs=%bs%:rm=%rm%:gm=%gm%:bm=%bm%:rh=%rh%:gh=%gh%:bh=%bh% -q:v %QU% -codec:v mpeg4 %TMP%

    ::PIP part::
    %FFMPG% -i %TMP% -i %INPUT% -filter_complex "[1]scale=iw/3:ih/3
    [pip]; [0][pip] overlay=main_w-overlay_w-10:main_h-overlay_h-10" -q:v
    %QU% -codec:v mpeg4 %OUTPUT%

    [/existing code]
  • Can't split 24bit flac files on the command line [closed]

    21 mars 2023, par Martin

    I am trying to export a 24bit flac file in my ubuntu terminal. I've tried two different methods, but neither work.

    &#xA;

    Method 1 : shntool

    &#xA;

    when I run this command :&#xA;shntool split -f times.cue -O always -o lowq_full_silence.flac

    &#xA;

    where lowq_full_silence.flac was rendered in audacity as a flac file with level=0 and bit depth=16 bit, my command works.

    &#xA;

    but if i run this command :

    &#xA;

    shntool split -f times.cue -O always -o full_hq.flac

    &#xA;

    where full_hq.flac has level=8 and bit depth=24 bit&#xA;The command fails :

    &#xA;

    shntool [split]: warning: unsupported format 0xfffe (Unknown) while processing file: [full_hq.flac]&#xA;shntool [split]: error: cannot continue due to error(s) shown above&#xA;

    &#xA;

    https://bugs.launchpad.net/ubuntu/+source/shntool/+bug/2000794

    &#xA;

    Method 2 : ffmpeg

    &#xA;

    Trying to split the flac file with comma separated 'split points' input

    &#xA;

    ffmpeg -i "full_hq.flac" -c copy -map 0 -f segment -segment_times "22,441,556,559" "%d_output.flac"

    &#xA;

    But the output from this ffmpeg command has broken length metadata :

    &#xA;

    https://trac.ffmpeg.org/ticket/4905

    &#xA;

    Is there a better way to split a high quality 24bit flac file into individual segments, where each exported segment file has correct length metadata ?

    &#xA;

    Files :&#xA;https://file.io/lvGTUEgQArb7

    &#xA;