Recherche avancée

Médias (91)

Autres articles (92)

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

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

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

  • ffmpeg on android on a video http

    31 juillet 2018, par Paul

    I have to create such a file, on android from a video that is on http:

    So I have the following questions :

    1. Is there any way to use ffmpeg on android ?
    2. How much does it cost me
      to create this file ? Consider that we do not use the wifi connection
      and use the data connection, how much would it cost me in megabite ?

    Assuming that the video is lasting 2 hours.

  • How can I concat one single mp3 file many times (crossfades included) using ffmpeg ?

    16 avril 2021, par martijn

    I try to make a bash file with (an) ffmpeg command(s) in which a single mp3 file (let's say of two minutes duration) will be extended to for example 8 hours duration. Since mp3 files always have these gaps of silence at the front and back in order to make it seamless loops I need to use crossfading. How can I do this without having an enormous large command like :

    


    ffmpeg -i same.mp3 -i same.mp3 -i same.mp3 ....(hundreds of times)
-filter_complex "[0][1]acrossfade=d=5:c1=exp:c2=exp[a01] ...
etc (hundreds of times)
output.mp3

    


  • Xamarin FFMpeg Add Progress Bar with Percentage

    22 mai 2020, par seopower

    I am doing some video conversion in Xamarin Android and using https://github.com/neurospeech/xamarin-android-ffmpeg

    



    I would like to show a ProgressDialog with percentage completed, below is the code I am using :

    



    Action onProgress;&#xA;Action<string> logger = null;&#xA;int total = 0;&#xA;int current = 0;&#xA;&#xA;var dialog = new ProgressDialog(this);&#xA;dialog.SetTitle("Please wait, creating video.");&#xA;dialog.Indeterminate = false;&#xA;dialog.SetProgressStyle(ProgressDialogStyle.Horizontal);&#xA;dialog.SetCancelable(false);&#xA;dialog.CancelEvent &#x2B;= (s, e) =>&#xA;{&#xA;&#xA;};&#xA;&#xA;dialog.SetCanceledOnTouchOutside(false); &#xA;dialog.Show();&#xA;&#xA;await FFMpegLibrary.Run(this, cmd, (s) =>&#xA;{&#xA;    logger?.Invoke(s);&#xA;    int n = Extract(s, "Duration:", ",");&#xA;    if (n != -1)&#xA;    {&#xA;        total = n;&#xA;        dialog.Max = n;&#xA;    }&#xA;&#xA;    n = Extract(s, "time=", " bitrate=");&#xA;    if (n != -1)&#xA;    {                        &#xA;        current = n;&#xA;        onProgress?.Invoke(current, total);                        &#xA;    }                    &#xA;});&#xA;&#xA;dialog.Hide();&#xA;</string>

    &#xA;&#xA;

    To extract time and duration below are the functions

    &#xA;&#xA;

    public int Extract(String text, String start, String end)&#xA;    {&#xA;        int i = text.IndexOf(start); &#xA;        if (i != -1)&#xA;        {&#xA;            text = text.Substring(i &#x2B; start.Length);&#xA;            i = text.IndexOf(end);&#xA;            if (i != -1)&#xA;            {&#xA;                text = text.Substring(0, i);&#xA;                return parseTime(text);&#xA;            }&#xA;        }&#xA;        return -1;&#xA;    }&#xA;&#xA;    public int parseTime(String time)&#xA;    {&#xA;        time = time.Trim();&#xA;        String[] tokens = time.Split(&#x27;:&#x27;);&#xA;        int hours = int.Parse(tokens[0]);&#xA;        int minutes = int.Parse(tokens[1]);&#xA;        float seconds = float.Parse(tokens[2]);&#xA;        int s = (int)seconds * 100;&#xA;        return hours * 360000 &#x2B; minutes * 60100 &#x2B; s;&#xA;    }&#xA;

    &#xA;&#xA;

    Any idea how to show progress in percentage on ProgressDialog ?

    &#xA;