Recherche avancée

Médias (91)

Autres articles (100)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

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

  • ffmpeg decode and encode for an extension typo

    15 novembre 2022, par William Wong

    I am trying to download some videos from an m3u8 file online. However, the .ts files were (maybe intentionally) changed to .png files. I have tried downloading the .png files and changing them to .ts manually and it plays well.

    


    However, the ffmpeg file seems cannot parse the .png files. I tried to force the output format with -f, but it does not work.

    


    May I know if that is possible to still use the ffmpeg for downloading and converting the stream to mp4 ? I am also open to other methods or simple fixes with bash/ python.

    


  • Curator of the Samples Archive

    13 mai 2011, par Multimedia Mike — General

    Remember how I mirrored the world-famous MPlayerHQ samples archive a few months ago ? Due to a series of events, the original archive is no longer online. However, me and the people who control the mplayerhq.hu domain figured out how to make samples.mplayerhq.hu point to samples.multimedia.cx.

    That means... I’m the current owner and curator of our central multimedia samples repository. Such power ! This should probably be the fulfillment of a decade-long dream for me, having managed swaths of the archive, most notably the game formats section.

    How This Came To Be

    If you pay any attention to the open source multimedia scene, you might have noticed that there has been a smidge of turmoil. Heated words were exchanged, authority was questioned, some people probably said some things they didn’t mean, and the upshot is that, where once there was one project (FFmpeg), there are now 2 projects (also Libav). And to everyone who has wanted me to mention it on my blog— there, I finally broke my silence and formally acknowledged the schism.

    For my part, I was just determined to ensure that the samples archive remained online, preferably at the original samples.mplayerhq.hu address. There are 10 years worth of web links out there pointing into the original repository.

    Better Solution

    I concede that it’s not entirely optimal to host the repository here at multimedia.cx. While I can offer a crazy amount of monthly bandwidth, I can’t offer rsync (invaluable for keeping mirrors in sync), nor can the server provide anonymous FTP or allow me to offer accounts to other admins who can manage the repository.

    The samples archive is also mirrored at samples.libav.org/samples. I understand that service is provided by VideoLAN. Right now, both repositories are known to be static. I’m open to brainstorms about how to improve the situation.

  • How to calulate PTS and DTS ? C++

    27 janvier 2024, par kodoma

    I have a mkv file where I want to extract the video stream. While extracting, I got the "... non monotonically increasing dts to muxer ..." Warning/Error. I have tried multiple solutions that I found online, but I could never get the timing to be right.

    


    This is the beginning of the video stream :

    


    DTS: 0    PTS: 0    Duration: 41 
DTS: 375  PTS: 375  Duration: 41 
DTS: 209  PTS: 209  Duration: 41 
DTS: 42   PTS: 42   Duration: 41 
DTS: 83   PTS: 83   Duration: 41 
DTS: 125  PTS: 125  Duration: 41 


    


    I also extracted the stream via the FFmpeg executable, and the extracted video file has the same DTS and PTS as the source.

    


    So how do I calculate the DTS and PTS correctly ? If I don't change the timings, the video is the same length, but it is total garbage.