Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (60)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (10987)

  • 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