Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (111)

  • Le profil des utilisateurs

    12 avril 2011, par

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (12198)

  • How to publish RTSP to RTMP in red5 server

    6 février 2014, par Charlie Bunt

    My RED5 publisher doesn't recognise the network outdoor camera I connected as it is streaming RTSP not flash.

    How can it be published ? ffmpeg is for mobile device viewing so is this why it is used and if so how ?

  • Update Unity FFMpeg in iOS

    5 mars 2019, par MauricioM

    I have a problem trying to create a video editor. I am using the FFMpeg library from this plugin https://assetstore.unity.com/packages/tools/video/ffmpeg-unity-bind-93622 Everything works ok in Android and PC but when I compile a version for iOS the video can’t be created.

    The video I am trying to create is using the Drawtext filter but in iOS doesn’t work. I am thinking is because I need the freetype library configurated in the FFMpeg library. So, I am trying to update the FFMpeg library from here : https://github.com/tanersener/mobile-ffmpeg. I Just copy the static files from the new library and put it in the same folder from the FFMpeg plugin. But I get some errors.

    Anyone knows how to update that plugin ? Or how can I do a workaround to get the Drawtext filter working in iOS ?

    Thanks in advance !

  • How to properly convert RTL subtitles in ffmpeg ?

    25 octobre 2020, par HTMHell

    I'm using the following command to extract subtitles from a video file, and save it as vtt.

    



    ffmpeg -i video.mkv -map 0:s:0 subs.vtt 2>&1


    



    It's working and outputs the subtitles file. The problem is with RTL (right to left) languages (Hebrew, Arabic etc.)
The punctuation are being misplaced.

    



    I will show you an English example of what's happening, for your convenience :

    



    Input text :

    



    Is he alive?
-I don't know.


    



    Output text :

    



    ?Is he alive
.I don't know-


    



    If you want the original text in Hebrew, there it is :

    



    Input Text :

    



    הוא חי?
-אני לא יודע.


    



    Output text :

    



    ?הוא חי
.אני לא יודע-


    



    As you can see, the punctuation marks at the end are going to the start, and vice versa. How can I avoid this behavior ?