Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (9172)

  • avformat/dashenc : Add documentation for http method option

    14 mai 2018, par Karthick Jeyapal
    avformat/dashenc : Add documentation for http method option
    
    • [DH] doc/muxers.texi
  • cannot open http://[wowza-ip-address]:8086/streammanager

    26 août 2017, par mahdi gh

    I’m following this guide for publishing mpegts to wowza server. but when I try to navigate to http://[wowza-ip-address]:8086/streammanager it redirects to http://[wowza-ip-address]:8086/enginemanager

    What should I do ?
    here is the link for guide page : How to publish and play a live stream (MPEG-TS based encoder)

  • mpeg-2 ts video audio skipping - HTTP Live Streaming

    15 août 2012, par Kami Shangool

    I have multiple mp4 streams that I take and convert into mpeg-2 ts format using ffmpeg

    ffmpeg -i 0.mp4 -vcodec libx264 -sameq -acodec libfaac -fflags +genpts -coder 0 -f mpegts 0.ts

    The mp4s range from 1 to n. After converting all of them, I create a manifest file similar to :

    #EXTM3U
    #EXT-X-TARGETDURATION:4
    #EXT-X-VERSION:4
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-PLAYLIST-TYPE:EVENT
    #EXTINF:4.000,
    http://localhost/Nick2/0.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/1.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/2.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/3.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:3.97,
    http://localhost/Nick2/4.ts
    #EXT-X-ENDLIST

    I've added the #EXT-X-DISCONTINUITY since the I'm trying to get back to back playback of the converted mp4's. The problem is that if I try to use HTTP live streaming, there is a noticeable pop in the audio between files. But that isn't apparent if playing the segments in QT.
    Any thoughts on how I can fix this ?