Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (37)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • How to calculate the start time of mp4 video ?

    27 mai 2022, par Neil Galiaskarov

    I am studying mp4 video structure. I have an issue with reading the start time value for the following mp4 video

    


    I have read this answer
mp4 video starts at different time on Quicktime/AVplayer vs Chrome/Firefox

    


    and it says that Edit atom can modify the start time.

    


    Using ffprobe I have the following output :

    


        "start_time": "0.033333",
    "duration_ts": 327,
    "duration": "10.900000",
    "bit_rate": "9420949",


    


    Using mp4dumper I have the following atoms structure which proves missing Edit atom file :

    


    ftyp (24 @ 0)
free (8 @ 24)
moov (7034 @ 32)
  mvhd (108 @ 40)
  trak (2883 @ 148)
      tkhd (92 @ 156)
      mdia (2783 @ 248)
          mdhd (32 @ 256)
          hdlr (52 @ 288)
          minf (2691 @ 340)
              smhd (16 @ 348)
              dinf (36 @ 364)
                  dref (28 @ 372)
                      url  (12 @ 388)
              stbl (2631 @ 400)
                  stsd (91 @ 408)
                      mp4a (75 @ 424)
                  stts (24 @ 499)
                  stsc (304 @ 523)
                  stsz (2056 @ 827)
                  stco (148 @ 2883)
  trak (4035 @ 3031)
      tkhd (92 @ 3039)
      mdia (3935 @ 3131)
          mdhd (32 @ 3139)
          hdlr (52 @ 3171)
          minf (3843 @ 3223)
              vmhd (20 @ 3231)
              dinf (36 @ 3251)
                  dref (28 @ 3259)
                      url  (12 @ 3275)
              stbl (3779 @ 3287)
                  stsd (163 @ 3295)
                      avc1 (147 @ 3311)
                  stts (24 @ 3458)
                  ctts (1960 @ 3482)
                  stsc (40 @ 5442)
                  stsz (1328 @ 5482)
                  stco (148 @ 6810)
                  stss (108 @ 6958)
mdat (13096745 @ 7066)


    


    How ffprobe calculates 0.033333 start time value ?

    


  • How to cut a video in specific start & end time in ffmpeg by Node JS ?

    16 août 2022, par Bilash

    I want to cut a video in specific start & end time & save it. I am able to copy a full video but cant understand to how to cut specific time of that video by Node JS.

    



    Video copy code :

    



      ffmpeg('public/'+req.body.video)
    .on('end', function(err) {   
        if(!err)
        {
          console.log('Done');

        }                 

    })
    .on('error', function(err){
        console.log('error: '+err);
        callback(err);
    }).run();


    


  • How to cut a video in specific start & end time in ffmpeg by Node JS ?

    26 juin 2015, par Nazmul Hossain Bilash

    I want to cut a video in specific start & end time & save it. I am able to copy a full video but cant understand to how to cut specific time of that video by Node JS.

    Video copy code :

     ffmpeg('public/'+req.body.video)
       .on('end', function(err) {  
           if(!err)
           {
             console.log('Done');

           }                

       })
       .on('error', function(err){
           console.log('error: '+err);
           callback(err);
       }).run();