Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (22)

  • 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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4141)

  • Extracting subclip from a .webm file with ffmpeg [migrated]

    19 juin 2013, par user815423426

    I am trying to extract a subclip from a webm file and write to an mp4 fil. I have the following command line :

    ffmpeg -ss 560 -i input.webm -ss 20 -t 46 -acodec copy -vcodec copy output.mp4

    but I get the following error :

    ffmpeg version 1.2 Copyright (c) 2000-2013 the FFmpeg developers
     built on Mar 22 2013 10:42:11 with gcc 4.7.2 (GCC)
     configuration: --prefix=/path/to/installations --enable-shared --enable-gpl --en
    able-nonfree --enable-version3 --enable-libx264                          
     libavutil      52. 18.100 / 52. 18.100
     libavcodec     54. 92.100 / 54. 92.100
     libavformat    54. 63.104 / 54. 63.104
     libavdevice    54.  3.103 / 54.  3.103
     libavfilter     3. 42.103 /  3. 42.103
     libswscale      2.  2.100 /  2.  2.100
     libswresample   0. 17.102 /  0. 17.102
     libpostproc    52.  2.100 / 52.  2.100
    Input #0, matroska,webm, from '/path/to/input.webm':                                          
     Duration: 01:13:20.32, start: 0.000000, bitrate: 2006 kb/s
       Stream #0:0(eng): Video: vp8, yuv420p, 640x480, SAR 1:1 DAR 4:3, 30 fp,
    30 tbr, 1k tbn, 1k tbc (default)                                        
       Stream #0:1(eng): Audio: vorbis, 44100 Hz, stereo, fltp (default)
    [mp4 @ 0x1493c340] track 0: could not find tag, codec not currently support
    ed in container                                                          
    Output #0, mp4, to '/path/to/output.mp4':                        
     Metadata:
       encoder         : Lavf54.63.104
       Stream #0:0(eng): Video: vp8, yuv420p, 640x480 [SAR 1:1 DAR 4:3], q=2-3
    1, 30 fps, 90k tbn, 1k tbc (default)                                      
       Stream #0:1(eng): Audio: vorbis ([221][0][0][0] / 0x00DD), 44100 Hz, st
    ereo (default)                                                            
    Stream mapping:
     Stream #0:0 -> #0:0 (copy)
     Stream #0:1 -> #0:1 (copy)
    Could not write header for output file #0 (incorrect codec parameters ?): O
    peration not permitted                                                    

    The strange thing is that the following works well for extracting files from mp4 to mp4

    ffmpeg -ss 560 -i input.mp4 -ss 20 -t 46 -acodec copy -vcodec copy output.mp4
  • m3u8 contains only the last indexes of generated files

    5 février 2018, par Blurry Script

    this is the generated m3u8 file :

    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:11
    #EXT-X-MEDIA-SEQUENCE:1372
    #EXTINF:10.427089,
    720p_1372.ts
    #EXTINF:10.427100,
    720p_1373.ts
    #EXTINF:10.427089,
    720p_1374.ts
    #EXTINF:10.427089,
    720p_1375.ts
    #EXTINF:9.009011,
    720p_1376.ts
    #EXT-X-ENDLIST

    this is the command I used

    ffmpeg -i film.avi -hls_time 4 -hls_segment_filename test/720p_%03d.ts test/720p.m3u8

    my question is why the m3u8 file contains only the last ts indexes, as there are 1376 of them, but only 1372-1376 were written in the file

  • How to replace all frames of video to one image ?

    8 février 2018, par YuriyPryyma

    I have some film
    I want to replace all frames from that video to my static image.
    So that video duration, resolution(width, height), sound and other properties stay the same.