Advanced search

Medias (91)

Other articles (92)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

On other websites (9885)

  • dashenc: Remove some stray double spaces

    29 December 2014, by Martin Storsjö
    dashenc: Remove some stray double spaces
    

    Signed-off-by: Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/dashenc.c
  • lavfi/tinterlace: Double aspect ratio for modes merge and pad.

    4 June 2015, by Carl Eugen Hoyos
    lavfi/tinterlace: Double aspect ratio for modes merge and pad.
    
    • [DH] libavfilter/vf_tinterlace.c
  • ffmediaplayer playing but screen keeps black

    27 August 2023, by 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.&#xA;Almost everything is ok (I hear sound, i can pause, forward ..), only the Video is not showing!!

    &#xA;

    I'm using an observable property

    &#xA;

    `    [ObservableProperty]&#xA;     private MediaElement _ffmeMediaElement;`&#xA;

    &#xA;

    instead of the original implementation with a complete different basemodel:

    &#xA;

    public MediaElement MediaElement&#xA;        {&#xA;            get&#xA;            {&#xA;                if (m_MediaElement == null)&#xA;                    m_MediaElement = (Application.Current.MainWindow as MainWindow)?.Media;&#xA;&#xA;                return m_MediaElement;&#xA;            }&#xA;        }&#xA;

    &#xA;

    —> 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&#xA;

    &#xA;

                        &#xA;&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

    I would appreciate any help. Thank you in advance

    &#xA;