Recherche avancée

Médias (91)

Autres articles (85)

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

  • Live Streaming Using Red5 with H.265 Raw Imcoming Video

    27 décembre 2019, par minghua

    How do you stream a raw H.265 incoming video using Red5 ?

    I’ve seen this example to stream flv file, and this for the client side, and for H.264 with or without ffmpeg.

    Basically the question can be split into two :

    • How do you stream it from a .h265 file ? If from .265 file is not possible, how do you do it from a file that contains H.265 video ? Any example ?
    • How do you stream it from an incoming RTP session ? I can get the session UDP/RTP unpacked and decode into raw H.265 NAL packets. I’m assuming some conversion is needed, any libraries available for that purpose ? Examples ?

    If I can get an answer to the above first split question, I know I can redirect the incoming stream to a named pipe. That can be used as an indirect solution to the second split question. Streaming from the incoming UDP session directly is preferred, though.

  • How to muxing a HEVC Annex B raw video file into a TS containter without changing its start code with ffmpeg

    19 juillet 2018, par Adam Estel

    I researched for a while and had read Multiplex a HEVC-Video into a MPEG-Transportstream with FFMPEG and Convert H.264 Annex B to MPEG-TS
    but non of these answer my question.
    I tried ffmpeg -y -f hevc -i out.h265   -c copy -f mpegts output1.ts
    but it got 2 errors :

    [mpegts @ 00000230d3bad2c0] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly.

    [mpegts @ 00000230d3bad2c0] first pts value must be set
    av_interleaved_write_frame() : Invalid data found when processing input

    How can i wrap a HEVC Annex B into .ts file without changing its start code ?.

    Thank you.

  • FFmpeg Concat Corrupts Video

    15 mars 2017, par Etienne Charland

    I’m using FFmpeg to encode video in several segments. For example, the user can encode 500 frames, close it, then resume to encode another 1300 frames, close it, and resume to encode another 700 frames.

    At this point, I have 3 x265 streams in MKV files which I want to concatenate into a single file. I have no audio at this point.

    I use this command to concatenate the 3 files into 1. However, the video file then plays with errors, skipping frames, changing speed or displaying artifacts at the junction points.

    ffmpeg -y -f concat -fflags +genpts -async 1 -safe 0 -i "MergeList.txt" -c copy "Job5_Output.mp4"

    What’s the right way of concatenating my files ?

    The issue might be that I’m concatenating partial files (when the process was killed). I tried first muxing from MKV into MP4 to produce a valid file container, and then concatenating those MP4 files. The output has less corruption, but there are still visual glitches at the intersection points. The frame count is correct. The output file matches the frame count of all segments.

    I just tried again with h264 ; the result is the same as with h265.