Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (111)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (9768)

  • avcodec/libx264 : leave full range flag unchanged if unknown

    17 août 2021, par Jan Ekström
    avcodec/libx264 : leave full range flag unchanged if unknown
    

    By default the x264 full range flag is set to -1. By not setting
    it to something else, we can let libx264 handle the RGB case.
    Additionally, change the preference order to user-specified range
    first, and then any fall-back logic left for the YUVJ pix_fmts.

    Fixes the capture part of #9374

    • [DH] libavcodec/libx264.c
  • How connect OBS with VPS which has ffmpeg for live streaming ?

    6 mai 2017, par user7647539

    Helo I’ve a VPS on Centos 7 with Apache and ffmpeg.
    How can I do live streaming on this server using OBS on my local PC to encode and publish to this server and after embed this live video in my wordpress website to allow every device to watch the live video ?
    Thank you all

  • ffmediaplayer playing but screen keeps black

    27 août 2023, par Joergahmann

    I#m coding a video tool for sports with the Windows Template Studio and using the Community Toolkit.MVVM. I finished this with the vlcMediaPlayer and it worked almost fine. I need the Frameback (vlc does not provide) and I like autohiding the controls (which is hard with vlc). So I decided to use the ffmediaelemrnt instead.
Almost everything is ok (I hear sound, i can pause, forward ..), only the Video is not showing !!

    


    I'm using an observable property

    


    `    [ObservableProperty]
     private MediaElement _ffmeMediaElement;`


    


    instead of the original implementation with a complete different basemodel :

    


    public MediaElement MediaElement
        {
            get
            {
                if (m_MediaElement == null)
                    m_MediaElement = (Application.Current.MainWindow as MainWindow)?.Media;

                return m_MediaElement;
            }
        }


    


    —> Could this be the problem ? How do I get the (Application.Current.MainWindow as MainWindow) ? in my case with no mainwindow and a page instead


    


                        



    


    What I tried
When I use a contentcontrol instead : the Video is showing, but the controls are not autohiding anymore

    


    When I compile your WindowsSample, it works completly, but still shows the error Object reference not set to an instance of an object on

    


    I would appreciate any help. Thank you in advance