Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (75)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

    5 mars 2010, par

    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 inscription3 (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (11518)

  • avutil/tests/channel_layout : make printing results part of the tests

    8 mars 2024, par Marton Balint
    avutil/tests/channel_layout : make printing results part of the tests
    

    Deduplicates a lot of code.

    Some minor differences (mostly white space and inconsistent use of quotes) are
    expected in the fate tests, there was no point aiming for exactly the same
    formatting.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/tests/channel_layout.c
    • [DH] tests/ref/fate/channel_layout
  • Split video stream with FFmpeg and play part with FFplay [closed]

    22 mars 2024, par Jan Hein

    I have a video stream send with FFmpeg to a other computer on my local network.&#xA;At the receiver computer I want to split the video stream in multiple parts and play them at the receiver computer. How can I do that ?

    &#xA;

    Example :&#xA;Stream send form sender to receiver is 1000x1000 pixels.&#xA;At the receiver split the 1000x1000 pixel stream into four parts of 500x500 pixels, and play them all four on the receiver in a separate player.

    &#xA;

    I have tryed it with a multicast stream to the receiver, and played it four times with FFplay, but that was not working correct.

    &#xA;

    I also hve looked for multiple outputs with FFmpeg and then multiple pipes to FFplay, but could not find a solution.

    &#xA;

  • Can anyone tell me ffmpeg.wasm command to converting 24-bit color image to 8-bit color image without affecting transparency part ?

    4 avril 2024, par Rohit Nayak

    I am a new developer and currently developing a png compressor to compress png image file using next.js 14 app directory and I found the right command to do so

    &#xA;

    ffmpeg -i input.png -c:v png -pix_fmt pal8 -vf "split[a][b];[a]alphaextract[am];[b]palettegen=stats_mode=diff[pl];[b][pl]alphamerge" output.png&#xA;

    &#xA;

    but i am unable to do so because I don't know how to convert that to ffmpeg.wash command.

    &#xA;

    I am using node.js v20.11.0, @ffmpeg/ffmpeg version 0.12.6 and @ffmpeg/util 0.12.1", alone with @ffmpeg/core@ version 0.12.2 which seems to work well.

    &#xA;

    My code is as following :

    &#xA;

        ffmpeg.exec([&#xA;      "-i",&#xA;      `${file.name}`,&#xA;      "-c:v",&#xA;      "png",&#xA;      "-pix_fmt",&#xA;      "pal8",&#xA;      "-vf",&#xA;      "split[a][b];",&#xA;      "[a]alphaextract[am];",&#xA;      "[b]palettegen=stats_mode=diff[pl];",&#xA;      "[b][pl]paletteuse=new=1:alpha_threshold=128",&#xA;      `output.png`,&#xA;    ]);&#xA;

    &#xA;

    Is there anyone who can solve this problem ?&#xA;An early action will highly be appreciated😊

    &#xA;

    Answer in the form of

    &#xA;

    ffmpeg.exec([...commands ]) &#xA;

    &#xA;