Recherche avancée

Médias (91)

Autres articles (83)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6111)

  • 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.