Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (35)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8259)

  • Running multiple commands on FFMPEG Android Studio

    2 juin 2016, par Ali Asheer

    I have compiled https://github.com/WritingMinds/ffmpeg-android-java on my Android Studio and it’s working fine, i have successfully executed these 3 commands :

    Adding text :

    new String[]={"-i",file1.toString(), "-i", water,"-filter_complex","drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=AAAA:x=(w-tw)/2:y=(50-th)/2", final_output}

    Adding Watermark :

    new String[]{"-i",inputVideoFilePath, "-i",overlayImagePath,"-preset", "ultrafast","-filter_complex", "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2", "-codec:a", "copy", outputVideoFilePath

    Add Padding :

    new String[]{"-i",file1.toString(), "-i", water,"-filter_complex","[0:v]pad=iw:ih+100:0:(oh-ih)/2:color=white", final_output2};

    Now i want to combine these three how do i accomplish that ? So far i have tried padding with text :

    new String[]{"-i",file1.toString(), "-i", water,"-filter_complex","[0:v]pad=iw:ih+100:0:(oh-ih)/2:color=white","drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=AAAA:x=(w-tw)/2:y=(50-th)/2", final_output2};

    But i get this error :

    Input #1, png_pipe, from '/storage/emulated/0/watermark.png':
    Duration: N/A, bitrate: N/A
    Stream #1:0: Video: png, rgb24(pc), 200x125, 25 tbr, 25 tbn, 25 tbc
    [NULL @ 0xb5c9fc00] Unable to find a suitable output format for
    'drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text AAAA:x=(w-tw)/2:y=(50-th)/2'
    drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=AAAA:x=(w-tw)/2:y=(50-th)/2: Invalid argument

    Any kind of help would be great !

  • avcodec : mbd has a range of 0..2

    27 février 2013, par Michael Niedermayer

    avcodec : mbd has a range of 0..2

  • FFmpeg Flags for generating fixed amount of images related to video length

    27 octobre 2015, par Sutekh

    I am using this command :

    ffmpeg -i file.mp4 -vf fps=1/60 -s 274x175  thumb%d.png

    to extract 1 frame from video for every minute of it.
    What i want to learn how to do is :
    Extract a total of 10 images from video regardless of its length that are relative to distance of video.

    Example :

    1.If video length is 15 minutes (900 seconds) it will extract one image from every 90 seconds of video.
    2.If video length is 22 minutes (1320 seconds) it will extract one image from every 132 seconds of video.

    And one more thing , is it possible to use ffmpeg to set output quality of those images or limit maximum size(as in file size , not dimensions) for each image that is going to get outputted ?