Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (6)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (4388)

  • 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
  • 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

    


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

    


    Missing system type and architecture

    


    Steps to replicate the problem

    


    Create a new Maui project

    


    Install NuGet Xabe.FFmpeg.Downloader

    


    This is the homepage code

    


    namespace MauiApp1;

public partial class MainPage : ContentPage
{
    // A button to download FFmpeg
    private Button Button;

    public MainPage()
    {
        Button = new() { Text = "Download FFmpeg" };

        Button.Clicked += Button_Clicked;

        Content = new StackLayout()
        {
            Children =
            {
                Button
            }
        };
    }

    private async void Button_Clicked(object sender, EventArgs e)
    {
        try
        {
            var status = await Permissions.CheckStatusAsync();
            if (status != PermissionStatus.Granted)
            {
                status = await Permissions.RequestAsync();
            }

            status = await Permissions.CheckStatusAsync();
            if (status != PermissionStatus.Granted)
            {
                status = await Permissions.RequestAsync();
            }

            if (status == PermissionStatus.Granted)
            {

                await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Official);
                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Android);
                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Official, Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));
                //await Xabe.FFmpeg.Downloader.FFmpegDownloader.GetLatestVersion(Xabe.FFmpeg.Downloader.FFmpegVersion.Android, Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "FFmpeg"));


                await DisplayAlert("Install", "Install completed successfully", "OK");
            }
        }
        catch (Exception ex)
        {
            // Show an alert message with exception message 
            await DisplayAlert("Install Failed", $"An error occurred: {ex.Message}", "OK");
        }
    }
}


    


    These are file access permissions on Android

    


    
    
    


    


  • 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