Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (107)

  • 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 (10159)

  • Android FFmpegMediaPlayer - MediaPlayer error(0, 0)

    14 décembre 2016, par Dionis Beqiraj

    I’m using this piece of code to play an acc that is on the cloud with FFmpegMediaPlayer taken from here :

    https://github.com/wseemann/FFmpegMediaPlayer

    Code :

    FFmpegMediaPlayer player = new FFmpegMediaPlayer();
    try {
     player.setAudioStreamType(AudioManager.STREAM_MUSIC);
     player.setDataSource(url);
     player.prepareAsync();
    } catch ( IOException | ExecutionException | InterruptedException e ){
         e.printStackTrace();
    }

    When the URL format is like "http://something.com/audio.aac" that code works fine.

    But, when the URL is like "https://something.com/audio.aac?something_else_here" that code doesn’t work and it fires en Error(0,0).

    Before FFmpegMediaPlayer I used the MediaPlayer with exact the same methods. Sometimes it had the same problems sometimes not, so I thought to switch to FFmpegMediaPlayer even because it is faster, but I’m not handling this error.

    Does anyone now how to deal with this ?

  • How to identify users in video file when streaming video ? [on hold]

    24 octobre 2017, par blackjak231

    I’m trying to find a solution to "secure" online video courses on a video streaming platform. The goals are the following :

    • Prevent easy download of video - OK
    • Be able to identify which connected user downloaded the video if it happens - NOK

    The server will be a Debian machine running PHP 7 and the "encryption" of the video will be done "on the stream" for each user.


    My question is for the second point. I’m unable to find a good solution for it. Here is what i thought of so far and the downsides :

    1. Add a watermark with the user’s name/email with "ffmpeg" on the whole video (in a corner)
      • Can be blurred and therefore useless
    2. Add an invisible digital watermark (inside the video file) with a tool (which i have not found yet)
      • Screen can be recorded and the invisible digital watermark lost.
    3. Add a watermark with the user’s name/email on 2 or 3 specific frames of the video while streaming using "ffmpeg"
      • Best solution from my point of view but no technical solution found so far.

    Do you have any recommendations on how to do this or a completely different approach to the problem ?

    I’m open to any third party video tool such as Vimeo or any other available.

    Thank you in advance for your help ! :)

  • Hls.js record file

    28 février 2023, par Huhngut

    Hello and thanks for reading,

    


    I have a Hls stream with an m3u8 playlist.
The Video is playing just fine on an Html page with a Video element and https://github.com/video-dev/hls.js

    


    But if I download the segments to join them they are only white pixels. VLC and FFmpeg can't handle them. VLC shows a white pixel for 10seconds and FFmpeg says that there's no stream in the file.

    


    So now I want to know what this hls.js is doing to make it running. To me a non-js developer it all looks a bit confusing. I was able to understand stuff like which function is called when a new segment is loaded. Unfortunately, I was unable to understand stuff about the data. The one character variables are confusing to me.

    


    For now, I capture the stream of the video element and download it later but I don't like this solution at all.

    


    How to help me

    


    


    It would be very nice if anyone can tell me how to hook into the
script and tell it to download directly to the disk so I'm independent
of framerate drops.

    


    If anyone can tell how the script is able to convert the data so that
the element can use it and I would be able to implement or do
it with FFmpeg would be really helpful.

    


    I also thought it might be possible to have a listener when the blob
changes to store its contents.

    


    


    Thanks for everyone helping. I'm trying to find a solution for too many hours now.