Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (111)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Is there a way to "crop" bitmap based subtitles with ffmpeg ?

    11 juillet 2021, par Michael Harmon

    Is there a way to "crop" bitmap based subtitles ? Specifically I have some hdmv/pgs subs that I'd like to crop along with the video they go with, and while I can use a complex filtergraph to crop them, they encode as video, I need them to encode as dvb_subs or something similar.

    


    Currently I can either not touch the pgs subs, and simply pass them through with -c:s copy, or convert them to dvd or dvb subs, but they are the wrong size since I've now changed the video resolution by cropping.

    


    My last resort would be to burn in the subs, then crop the video after that using a filtergraph, but I hate burned in subs unless they're absolutely necessary.
Is there a way to crop the subs in order to fit the video ?

    


  • lavc/packet : add API for an AVPacket-based AVContainerFifo

    11 décembre 2024, par Anton Khirnov
    lavc/packet : add API for an AVPacket-based AVContainerFifo
    
    • [DH] doc/APIchanges
    • [DH] libavcodec/packet.c
    • [DH] libavcodec/packet.h
    • [DH] libavcodec/version.h
  • http live streaming based on a m3u file

    23 mars 2018, par 3agelx45

    I have an account on a platform of streaming (legal !). This platform provide me with a m3u file, the content looks like follow :

    #EXTM3U
    #EXTINF:-1 tvg-id="" tvg-name="|| something ||" tvg-logo="" group-title="",|| CAT1 ||
    http://someurl.domain:1234/video1.ts
    #EXTINF:-1 tvg-id="" tvg-name="video2" tvg-logo="" group-title="CAT1 part 1",VIDEO1
    http://someurl.domain:1234/video2.ts
    #EXTINF:-1 tvg-id="" tvg-name="video2" tvg-logo="" group-title="CAT1 part 1",VIDEO2
    .
    .
    .
    etc

    This file works fine using vlc from home. but when I travel I use Hotels hotspots and some do block the connection to someurl.domain:1234.

    is it possible to stream the m3u file using a light http server (stream the file from server side and reroute result to http). The idea is run a small iptv server from home on my raspberry which will allow me to bypass the "censorship" faced with some hotspots.

    Thanks !