Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (9070)

  • Text Watermarking on video without loss of audio and video quality

    8 janvier 2021, par Aditya Kumar

    I am using following command to add text watermark on a video file(for mp4, mpg,m4v,flv,mov etc..) :

    


    ffmpeg -i input.mp4 -vf "drawtext=text='Opentext':x=(w-text_w)/2:y=(h-text_h)/2:fontsize=24:fontcolor=white" TextOutput.mp4


    


    For some of the file transformation the property of video file changes. for example- When I tried to add text watermark on a mkv file I got this message :

    


    


    [matroska @ 0000001867d36ec0] Non-monotonous DTS in output stream 0:1 ;
previous : 2273, current : 1596 ; changing to 2273. This may result in
incorrect timestamps in the output file.

    


    


    This is one of the issues, i have mentioned here. There are others as well, such as :

    


      

    • video quality is reduced
    • 


    • video file size is changed(increses/decreases drastically)
    • 


    • Audio lagging occurs etc...
    • 


    


    So, I want to preserve the quality of video after adding the text watermark. How can I do that ?

    


  • Is there a way to extract every nth frame from an online video without downloading the entire video ?

    13 avril 2018, par Arif

    I’m looking for a website or app that lets you to download individual frames from a video as jpg without downloading the full thing. If there is no such website or app, is it possible via ffmpeg ?

  • FFMPEG - create video in with images and video file

    15 novembre 2018, par Pramod Gehlot

    I am creating video using ffmpeg
    I have some images and video so i want to create video with images and also video
    in node js

    my code

    ffmpeg()  .addInput(__dirname + '/test/fixtures/step_%1d.png')
    // .outputOptions(['[0:v]scale=200x200'])

    .complexFilter([
        // 'scale=640:480[rescaled]',

        {
            filter: 'zoompan',
            options: {
               x: '200',
                y: 'ih/2-(ih/zoom/2)',
                z: 'min(zoom+0.0005,1.5)',
               d: '125',
                s: "200x200",

            },
            // "inputs":'[0:v]scale=200x200'
        },
    ])

    .format('mp4')
    .videoBitrate('1024k')
    .videoCodec('mpeg4')
    .output(finalVideoPath)
    .on("error", function (er) {
        console.log("error occured: " + er.message);
    })
    .on('end', function () {
        console.log('Finished processing');
    }).run();

    I want to add video , how we can do in this code, Please help me