Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (47)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (8226)

  • lavf : Add an MPEG-DASH ISOFF segmenting muxer

    6 octobre 2014, par Martin Storsjö
    lavf : Add an MPEG-DASH ISOFF segmenting muxer
    

    This is mostly to serve as a reference example on how to segment
    the output from the mp4 muxer, capable of writing the segment
    list in four different ways :
    - SegmentTemplate with SegmentTimeline
    - SegmentTemplate with implicit segments
    - SegmentList with individual files
    - SegmentList with one single file per track, and byte ranges

    The muxer is able to serve live content (with optional windowing)
    or create a static segmented MPD.

    In advanced cases, users will probably want to do the segmenting
    in their own application code.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] Changelog
    • [DH] configure
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/dashenc.c
    • [DH] libavformat/version.h
  • Convert ismv to mpeg-dash with node js

    20 février 2017, par MBajor13

    I’m trying stream live video from ip camera to HTML 5 video teg.
    I encoding stream with ffmpeg. The comand is.

    $ ffmpeg -rtsp_transport tcp -an -i "rtsp://192.168.1.10:554/user=admin&amp;password=&amp;channel=1&amp;stream=0.sdp" -f mp4 -reset_timestamps 1 -movflags isml+empty_moov+default_base_moof -g 30 -probesize 200000 "http://localhost:1313/mediasourse.isml/stream1"

    Then I resive the date in node.js server and send them to users whith WebSocket.
    The issue is that the search bar in video teg remain on the same plase.

    I notice that mp4box except "moof" and "mdat" atoms adds "styp" and "sidx" atoms in each segment. "moov" atom is also different. But I don’t know what exactly I nead to edite.

    Thanks.

  • How to convert a continuously growing MXF file into DASH format

    10 octobre 2020, par Damian

    I am trying to find a way to convert MXF files in chunks rather than use the whole file. The purpose of this is because I have a continuously growing MXF. I am using ffmpeg for conversion and I already have the working commands for the whole file. Say I have the following : Scenario :

    &#xA;

    > 1. Header Partition&#xA;> 2. Body Partition-1&#xA;> 3. Body Partition-2&#xA;> 4. Body Partition-3&#xA;> 5. Footer Partition&#xA;> 6. RIP&#xA;

    &#xA;

    Can I split this into 2 or 3 other files and convert them separately or is this impossible to achieve ? Or maybe find another way around of converting MXF inside a stream ?

    &#xA;