Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (29)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

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

  • Merge commit ’6877537ff321136cf78ab03b8b91e6b6f218db5b’

    30 juillet 2015, par Michael Niedermayer
    Merge commit ’6877537ff321136cf78ab03b8b91e6b6f218db5b’
    

    * commit ’6877537ff321136cf78ab03b8b91e6b6f218db5b’ :
    hmac : add missing version bump and APIChanges entry

    Conflicts :
    libavutil/version.h

    version.h is not changed as the code has been added 2 years ago in FFmpeg

    See : 82ef67016ef731268ab7b8e91139bd5f16edc991
    Merged-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/APIchanges
  • Creating screenshot/image from Twitch stream

    22 juillet 2015, par danL

    I’ve messed around with FFmpeg some time ago and remember using it to fetch preview images for video files. My question is, is this the correct path to be going down for the purpose of getting images from a Twitch live stream ? What I need to do is get a screenshot of the end of a Twitch stream (the final scoreboard in a video game) and save that screen shot.

    I’m pretty sure I could get the code written, but I want to make sure there isn’t a better way of accomplishing this task because it seems like it would have gotten easier over the years. If there are any other libraries/APIs that would be more efficient than executing FFMpeg all the time.

    I hope there’s been some improvement in PHP video handling, but I’ve searched around and can’t find anything.

  • Capture video using FFmpeg in Android

    3 juillet 2015, par Robert Miller

    I’ve made a simple camera app just to learn how to capture video on an Android device. The clip is currently recorded with the help of the MediaRecorder library. A preview is shown in a VideoView before recording starts, and continues to show this during the actual recording.
    As I have understood, recording of videos can also be done by creating an Intent and calling an external Activity, which would result in the previous activity to be paused and destroyed (correct ?).

    Anyways, for this project I prefer the first approach, to not leave the activity. But unfortunately, I experience issues with the MediaRecorder library due to a known bug (which by the way seems to have been around for years). So now I have come across FFmpeg and this "TouchToRecord" (link below) demo project that uses FFmpeg Recorder from JavaCV to capture videos by touching the screen. Awesome ! Except that I do not want to start the camera as a new activity, as they do in this example. I want to remain in the same activity and see the preview and record in a VideoView directly. To touch the VideoView to record isn’t necessary.
    Do you think it’s possible to use the same library (JavaCvVideoRecorder), as the creator of this demo project have been using, to do this ? Or is there a better way which I have not yet discovered ?

    In the end, all I want to do is being able to record video directly into a VideoView, without using the MediaRecorder library.

    Link to demo project : https://github.com/sourab-sharma/TouchToRecord