Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (18)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6388)

  • avformat/mpegts.c : ignore a section with next flag

    3 avril 2022, par TADANO Tokumei
    avformat/mpegts.c : ignore a section with next flag
    

    'current_next_indicator' of 0 (next) on each section header indicates
    the service information is for immediate future one.
    ffmpeg doesn't need to parse it but current (1) one.

    ref : section 5.1.1 of DVB BlueBook A038 (EN 300 468)

    Signed-off-by : TADANO Tokumei <aimingoff@pc.nifty.jp>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegts.c
  • How to manually reset the offset of an mp4 video created from m4s files ?

    12 août 2020, par natdev

    I'm building a service that combine .m4s files (from a dash stream) to a mp4 video.
    &#xA;I have some sample m4s files from a random point in time of a stream,
    &#xA;using ffmpeg on those file + the init file does the job.

    &#xA;

    cat init.mp4 032.m4s 033.m4s 034.m4s > output.mp4&#xA;

    &#xA;

    I have tried concating the m4s files to the mp4 init file and I manage to play the video,
    &#xA;but there is an offset from the encoded video segments.

    &#xA;

    I guess ffmpeg does reset that somehow, and I was wondering how can I reset that offset as well ?
    &#xA;Having a little bit of experience with dash, I know that there is a field name presentationTimeOffset that is responsible to set the offset.

    &#xA;

  • Forwarding rtsp feed from one local port to another

    11 août 2021, par Thabet Sabha

    so let's say I have an rtsp server running on port 554, and when a certain command is received, i want the rtsp server to start forwarding the feed (using rtsp+tcp) to a service running on the same machine but on port 553 (Linux OS), is that possible via a CL command, or do I have to use something like ffmpeg ?

    &#xA;

    currently this is what is being used, but I feel like this is redundant since all we're doing is just forwarding the feed to another port on the same machine.

    &#xA;

    const ffmpegOptions = [&#xA;"-rtsp_transport", "tcp",&#xA;"-i", "rtsp://127.0.0.1:554",&#xA;"-codec", "copy",&#xA;"-f", "rtsp",&#xA;"-rtsp_transport", "tcp",&#xA;"rtsp://127.0.0.1:553"&#xA;]&#xA;&#xA;const myProcess = spawn(&#x27;ffmpeg&#x27;, ffmpegOptions);&#xA;

    &#xA;

    Thanks.

    &#xA;