Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (100)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (9798)

  • avisynth : Bump minimum required version to interface version 6

    2 avril 2015, par Stephen Hutchinson
    avisynth : Bump minimum required version to interface version 6
    

    The AVSC_API changes in the new headers mean that the 2.6 alphas
    are just as incompatible as 2.5 is.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] doc/general.texi
    • [DH] libavformat/avisynth.c
  • Subtitles added to MKV with ffmpeg doesn't show

    15 avril 2023, par Efraín

    I've a weird problem, that I don't seem to understand what's happening. Basically, I've an MKV with 2 subtitle tracks, and I want to add a new one, so after searching a little, I worked this command

    &#xA;

    ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -map 1 -metadata:s:s:2 language=eng -metadata:s:s:2 handler_name=English -metadata:s:s:2 title=English-dl output.mkv&#xA;

    &#xA;

    But when I opened output.mkv, and selected the 3rd sub track, It doesn't show the subtitles. I used MKVExtract to extract the track, and it correctly is the same .ass file that I merged, so I don't know why they don't show.

    &#xA;

    I used this other command as example to make the previous one

    &#xA;

    ffmpeg -i "file v.mkv" -i "file s.ass" -c copy -map 0 -dn -map "-0:s" -map "-0:d" -map "1:0" "-metadata:s:s:0" "language=eng" "-metadata:s:s:0" "handler_name=English"  "-metadata:s:s:0" "title=English-dl" "output.mkv"&#xA;

    &#xA;

    And this one correctly show the subtitles, but it erase the 2 original tracks of the MKV(Which I don't want to happen). What is the difference here that makes the second one show the subtitles, but the first one don't ? Do I have to lose the original subs for this ?

    &#xA;

  • FFMPEG to remove audio but keeping background sound

    17 octobre 2022, par Sushil

    I am trying to add voice over to the existing video which has some audio in English and some background sound. I am trying to add other than English audio on top of it and keeping background sound. But when I add new audio it removes all the background sound and when it adds new audio which makes it robotic as original background sound is lost.&#xA;When I add new audio by using amix filter, it keeps all sound like English and new language both, and both plays together.

    &#xA;

      &#xA;
    1. Is there any way to separate background sound and speaking audio from video separately ?
    2. &#xA;

    3. Is it possible to mute or remove audio from only parts of video like offset between time frames ?
    4. &#xA;

    &#xA;

    Command that I am using for add new audio&#xA;ffmpeg  -i independance_speech.mp4  -i 01.mp3 -filter_complex "[1]adelay=10000[s1];[s1]amix=inputs=2[a]" -map 0:v  -map "[a]" -c:v copy result.mp4

    &#xA;