
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (32)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 (7123)
-
fate : Add a test for AAC ELD480.
28 janvier 2015, par Alex Converse -
How can I fix 'Missing system type and architecture' error when downloading FFmpeg library in Maui.net ?
2 juin 2023, par Alhusseen AlfalahyMissing 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 Almervorbiscomment : 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.htmlSigned-off-by : James Almer <jamrial@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>