Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

Sur d’autres sites (14069)

  • Evolution #4565 (Nouveau) : Traduction des mois ave affdate

    2 octobre 2020, par Laurent Lefebvre

    Une petite idée d’évolution :

    Traduire le mois dans la langue du site lorsque l’on utilise un formatage de type php date (ex : pour le 2/10/2020, [(#DATE|affdated F Y)] donnerait "2 octobre 2020" sur un site francophone.

  • mp4 video rotation metadata removal

    6 mars 2019, par Horst Fiedler

    Using ffmpeg to remove rotate metadata works but output is little bit confusing as Metadata : rotate : 90 still appears in output section.

    ffmpeg version N-92663-g8affd75

    seems to keep rotate metadata :

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'vid_20190302_162804987.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isommp42
       creation_time   : 2019-03-02T15:28:43.000000Z
       com.android.version: 6.0.1
     Duration: 00:00:32.40, start: 0.000000, bitrate: 17230 kb/s
       Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080, 17003 kb/s, SAR 1:1 DAR 16:9, 28.98 fps, 29.33 tbr, 90k tbn, 180k tbc (default)
       Metadata:
         rotate          : 90
         creation_time   : 2019-03-02T15:28:43.000000Z
         handler_name    : VideoHandle
         encoder         : MOTO
       Side data:
         displaymatrix: rotation of -90.00 degrees
       Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
       Metadata:
         creation_time   : 2019-03-02T15:28:43.000000Z
         handler_name    : SoundHandle
    Output #0, mp4, to '1.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isommp42
       com.android.version: 6.0.1
       encoder         : Lavf58.24.100
       Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 17003 kb/s, 28.98 fps, 29.33 tbr, 90k tbn, 90k tbc (default)
       Metadata:
         rotate          : 90
         creation_time   : 2019-03-02T15:28:43.000000Z
         handler_name    : VideoHandle
         encoder         : MOTO
       Side data:
         displaymatrix: rotation of -0.00 degrees
       Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s (default)
       Metadata:
         creation_time   : 2019-03-02T15:28:43.000000Z
         handler_name    : SoundHandle

    but fortunatly the rotate is missing in succeeding ffmpeg (or ffprobe)

  • Generate mp4 from m3u8 with EXT-X-START (FFMPEG)

    26 février 2019, par KPS1994

    I’m trying to generate a MP4 from a m3u8 playlist file using FFMPEG. The format of the file is as follows :

    #EXTM3U
    #EXT-X-VERSION:7
    #EXT-X-TARGETDURATION:607.0
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-MAP:URI=/path_to_mp4/2019-02-25_09-55-07.mp4
    #EXT-X-START:TIME-OFFSET=100
    #EXTINF:600.0,
    /path_to_m4s/2019-02-25_11-35-18.m4s
    #EXTINF:597.64,
    /path_to_m4s/2019-02-25_11-45-18.m4s
    #EXTINF:600.0,
    /path_to_m4s/2019-02-25_11-55-18.m4s
    #EXT-X-ENDLIST

    In the example above, each m4s chunk is 10 minutes long, but FFMPEG completely ignores the #EXT-X-START:TIME-OFFSET flag. Hence generating a video that is 30 minutes long as opposed to 29 minutes and 20 seconds.

    Any help on how to directly convert the m3u8 file would be most appreciated. (if there is a better tool than FFMEPG, then I am willing to try.)