Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (8262)

  • ffmpeg объединить MP3 файлы и сделать между ними тишину или паузу [closed]

    1er avril 2024, par Макс Васильченко

    Подскажите пожалуйста как объединить несколько MP3 файлов в один файл. целый вечер ломаю голову не могу понять Как.
мне нужно объединить такие файлы с паузой или тишиной и вывести их в один файл через ffmpeg windows bat or cmd

    


    file1.mp3|silence 3s|file2.mp3|silence 5s|file2.mp3|silence 5s|file2.mp3|silence 5s


    


    file2 несколько раз

    


    перепробовал практически всё что смог найти в Интернете и всё что мне подсказывали GPT и gemini

    


  • Converting DPX to JPEG2k in RGB using FFMPEG

    28 juin 2017, par Alarmguy66

    I am attempting to use FFMPEG to convert a 2k DPX sequence that is 10 bit RGB into a Lossless JPEG2k wrapped in MXF, 10 bit with RGB colorspace, wrapped in MXF, Op1a. The following is my code -

    ffmpeg -y -i \PATH\test\0%05d.dpx -r 24 -c:v libopenjpeg -pred 1 c :\temp\123.mxf

    The conversion works in almost every fashion, the exception being the JPEG file is output as YUV with every conversion attempt. I have tried using the jpeg2000 library as well, that always gives an 8 bit output, YUV.

    FFMPEG -version responds - N-85179-gdc1a1b8

    There is no audio accompanying the video.

  • FFMPEG - Option to add or omit profiles if input is not conditional when encoding to HLS ?

    20 août 2022, par bui the vuong

    I want my ffmpeg statement to look like this :

    


    ffmpeg -i rtmp://localhost:1935/$app/$name -async 1 -vsync -1
                    if(gte(ih,240),'-c:v libx264 -c:a aac -b:v 256k -b:a 64k -g 2 -vf "scale=426:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_240','')
                    if(gte(ih,360),'-c:v libx264 -c:a aac -b:v 768k -b:a 128k -g 2 -vf "scale=720:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_360','')
                    if(gte(ih,480),'-c:v libx264 -c:a aac -b:v 1024k -b:a 128k -g 2 -vf "scale=960:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_480','')
                    if(gte(ih,720),'-c:v libx264 -c:a aac -b:v 1920k -b:a 128k -g 2 -vf "scale=1280:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -f flv rtmp://localhost:1935/show/$name_720','')
                    -c copy -f flv rtmp://localhost:1935/show/$name_src;


    


    Can I do the same with ffmpeg ?