Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (6197)

  • vorbiscomment : Add DESCRIPTION to ff_vorbiscomment_metadata_conv

    18 juillet 2013, par James Almer
    vorbiscomment : Add DESCRIPTION to ff_vorbiscomment_metadata_conv
    

    It’s the official (or recommended) name for comment/description entries.
    See https://www.xiph.org/vorbis/doc/v-comment.html

    Signed-off-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/vorbiscomment.c
  • How can I fix 'Missing system type and architecture' error when downloading FFmpeg library in Maui.net ?

    2 juin 2023, par Alhusseen Alfalahy

    Missing system type and architecture when Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion in Maui.net

    &#xA;

    I was trying to run the FFmpeg library download code and I always get this error

    &#xA;

    Missing system type and architecture

    &#xA;

    Steps to replicate the problem

    &#xA;

    Create a new Maui project

    &#xA;

    Install NuGet Xabe.FFmpeg.Downloader

    &#xA;

    This is the homepage code

    &#xA;

    namespace MauiApp1;&#xA;&#xA;public partial class MainPage : ContentPage&#xA;{&#xA;    // A button to download FFmpeg&#xA;    private Button Button;&#xA;&#xA;    public MainPage()&#xA;    {&#xA;        Button = new() { Text = "Download FFmpeg" };&#xA;&#xA;        Button.Clicked &#x2B;= Button_Clicked;&#xA;&#xA;        Content = new StackLayout()&#xA;        {&#xA;            Children =&#xA;            {&#xA;                Button&#xA;            }&#xA;        };&#xA;    }&#xA;&#xA;    private async void Button_Clicked(object sender, EventArgs e)&#xA;    {&#xA;        try&#xA;        {&#xA;            var status = await Permissions.CheckStatusAsync();&#xA;            if (status != PermissionStatus.Granted)&#xA;            {&#xA;                status = await Permissions.RequestAsync();&#xA;            }&#xA;&#xA;            status = await Permissions.CheckStatusAsync();&#xA;            if (status != PermissionStatus.Granted)&#xA;            {&#xA;                status = await Permissions.RequestAsync();&#xA;            }&#xA;&#xA;            if (status == PermissionStatus.Granted)&#xA;            {&#xA;&#xA;                await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Official);&#xA;                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Android);&#xA;                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Official, Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));&#xA;                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Android, Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));&#xA;&#xA;&#xA;                await DisplayAlert("Install", "Install completed successfully", "OK");&#xA;            }&#xA;        }&#xA;        catch (Exception ex)&#xA;        {&#xA;            // Show an alert message with exception message &#xA;            await DisplayAlert("Install Failed", $"An error occurred: {ex.Message}", "OK");&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    These are file access permissions on Android

    &#xA;

    &#xA;    &#xA;    &#xA;

    &#xA;

  • fate : Add a test for AAC ELD480.

    28 janvier 2015, par Alex Converse
    fate : Add a test for AAC ELD480.
    

    The source is er_eld_2100np_48_ep0.mp4 from the official test set.

    • [DH] tests/fate/aac.mak