Recherche avancée

Médias (91)

Autres articles (108)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6893)

  • How to remove timestamp info from Mp4 file ?

    21 septembre 2022, par dinesh47

    I am looking to remove Timestamp info from mp4 file container.
Is it possible to remove such metadata from a mp4 file
if we can can we do it by FFmpeg lib ?

    


    Here is an example track dump :

    


    


    mp4file OutPut.mp4, track 1, samples 610, timescale 14848

    


    


    


    sampleId 1, size 112773 duration 512 time 0 00:00:00.000 S
sampleId 2, size 131890 duration 512 time 512 00:00:00.034
    
sampleId 3, size 114949 duration 512 time 1024 00:00:00.068
    
sampleId 4, size 111121 duration 512 time 1536 00:00:00.103
    
sampleId 5, size 110190 duration 512 time 2048 00:00:00.137
    
sampleId 6, size 110584 duration 512 time 2560 00:00:00.172
    
sampleId 7, size 111044 duration 512 time 3072 00:00:00.206
    
sampleId 8, size 110104 duration 512 time 3584 00:00:00.241
    
sampleId 9, size 107679 duration 512 time 4096 00:00:00.275
    
sampleId 10, size 107347 duration 512 time 4608 00:00:00.310
    
sampleId 11, size 106728 duration 512 time 5120 00:00:00.344
    
sampleId 12, size 107705 duration 512 time 5632 00:00:00.379
    
sampleId 13, size 176560 duration 512 time 6144 00:00:00.413 S
sampleId 14, size 110496 duration 512 time 6656 00:00:00.448
    
sampleId 15, size 109697 duration 512 time 7168 00:00:00.482

    


    


    Is it possible to hide the duration info in this track dump ?

    


  • Remove timstamp info from Mp4 file

    23 septembre 2021, par dinesh47

    looking to remove Timestamp info from mp4 file container.
The question is .Is it possible to remove such metadata from a mp4 file
if we can can we do it by FFmpeg lib

    


    if i take a track dump the following info is viewed

    


    


    mp4file OutPut.mp4, track 1, samples 610, timescale 14848

    


    


    


    sampleId 1, size 112773 duration 512 time 0 00:00:00.000 S
sampleId 2, size 131890 duration 512 time 512 00:00:00.034
    
sampleId 3, size 114949 duration 512 time 1024 00:00:00.068
    
sampleId 4, size 111121 duration 512 time 1536 00:00:00.103
    
sampleId 5, size 110190 duration 512 time 2048 00:00:00.137
    
sampleId 6, size 110584 duration 512 time 2560 00:00:00.172
    
sampleId 7, size 111044 duration 512 time 3072 00:00:00.206
    
sampleId 8, size 110104 duration 512 time 3584 00:00:00.241
    
sampleId 9, size 107679 duration 512 time 4096 00:00:00.275
    
sampleId 10, size 107347 duration 512 time 4608 00:00:00.310
    
sampleId 11, size 106728 duration 512 time 5120 00:00:00.344
    
sampleId 12, size 107705 duration 512 time 5632 00:00:00.379
    
sampleId 13, size 176560 duration 512 time 6144 00:00:00.413 S
sampleId 14, size 110496 duration 512 time 6656 00:00:00.448
    
sampleId 15, size 109697 duration 512 time 7168 00:00:00.482

    


    


    what i am trying to do is hide the duration info when taking dump.

    


  • ffmpeg hls muxer is missing codec info in master playlist when codecs are copied from input

    21 septembre 2021, par dogan

    ffmpeg hls muxer has the option to set master playlist but the created playlist is missing the important codec information.

    


    Example :

    


    ffmpeg -hide_banner -i <input /> -c copy -f hls -master_pl_name master.m3u8  stream.m3u8&#xA;

    &#xA;

    Expected :

    &#xA;

    #EXTM3U&#xA;#EXT-X-VERSION:3&#xA;#EXT-X-STREAM-INF:BANDWIDTH=77595,RESOLUTION=1280x720,CODECS="avc1.64001f,mp4a.40.2"&#xA;stream.m3u8&#xA;

    &#xA;

    Instead I get this

    &#xA;

    #EXTM3U&#xA;#EXT-X-VERSION:3&#xA;#EXT-X-STREAM-INF:BANDWIDTH=77595,RESOLUTION=1280x720&#xA;stream.m3u8&#xA;

    &#xA;

    Is there a way to make ffmpeg set the codec info in playlist from the input source ? It works as expected if I encode the input using libx264 but I do not want to do any expensive encoding but copy the codecs from the input.

    &#xA;