Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (18)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (4430)

  • FFMPEG - Watermark video with same quality and filesize [duplicate]

    19 février 2018, par ddlshack

    This question already has an answer here :

    I have some videos, and I’d like to watermark them with a transparent PNG. Here’s what I’ve tried :

    ffmpeg -i 9.flv -vf "movie=logo.png [watermark];[in][watermark] overlay=10:10 [out]" 9_w.flv

    However, bitrate or quality is not preserved. Preferably I’d like ffmpeg to re-encode the file with exactly the same settings as the original file (same codecs, bitrate). If thats not easily possible, I’d like to encode with a specific codec, but preserving ’quality’, however that is measured.

  • Making a watched folder wait for a file to finish rendering

    10 février 2018, par JSchrey

    I’m trying to setup a watched folder (using fswatch)that starts to convert a received file into another format using ffmpeg(got that part sorted out).
    So far so good, what I’m having problems with is getting the script to wait until the original input (or master file) has finished rendering or has been copied completely into my watched folder.

    Here’s the script for the folder

    fswatch -o ~/Desktop/autom_shell| xargs -n1 ~/Desktop/scripts_autom_shell/move_QT.sh

    move_QT.sh filters and moves quicktime movies from my receiving folder to the folder where I encode.

    I’ve searched for a solution and found kqwait but I have absolutely no idea how to apply it in my case.

    MacOS 10.10

  • How to add text watermark to output video when using ffmpeg ? [duplicate]

    29 janvier 2018, par Jithin Shaji

    This question already has an answer here :

    Iam developing an android app for video editing using ffmpeg plugin. I need to add a watermark text(not image) to all the output videos after encoding. How can I achieve that ? For example Iam splitting a video into segments using the command

    ffmpeg -i inputfile -acodec copy -f segment -segment_time 30 -vcodec copy -reset_timestamps 1 -map 0 outfile

    How can I add watermarktext to the outfile ? I found one solution at ffmpeg text watermark bottom left.
    But I need to combine both commands (Split command and drawtext command)