Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (53)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • 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

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

  • ffmpeg converting PCM data file to wav file getting distorted(noisy) data

    3 janvier 2015, par Mahendra

    I have raw pcm data in following form :

    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0100
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0100 0100 0000 0000 efbf bdef bfbd
    0000 efbf bdef bfbd efbf bdef bfbd efbf
    bdef bfbd efbf bdef bfbd efbf bdef bfbd
    efbf bdef bfbd efbf bdef bfbd 0000 efbf
    bdef bfbd 0000 efbf bdef bfbd efbf bdef
    bfbd 2900 efbf bdef bfbd 0000 efbf bdef
    bfbd efbf bdef bfbd efbf bdef bfbd 0000

    and I want to make this data in wav file when I am converting by ffmpeg getting noisy data by this command :

    sox -V -t raw -b 16 -e signed -r 16000 -c 1 14_32_7_187.pcm  new.wav

    and :

    ffmpeg -f s16le -ar 16000 -ac 1 -i 14_32_7_187.pcm -ar 16000 -ac 1 oout.wav

    using both getting noisy data.

  • Save the stream to mp4 files

    5 mai 2012, par Ruslan Sharipov

    How can I keep the flow (protocol rtsp, codec h264) in file (container mp4) ? That is, on input an endless stream (with CCTV camera), and the output files in mp4 format size of 5-10 minutes of recording time.

    OS : debian, ubuntu
    Software : vlc, ffmpeg (avconv)

    Currently this scheme is used :

    cvlc rtsp://admin:admin@10.1.1.1:554/ch1-s1 --sout=file/ts:stream.ts
    ffmpeg -i stream.ts -vcodec copy -f mp4 stream.mp4

    But it can not record video continuously (between restarts vlc is a loss of about 10 seconds of live video)

  • avformat/hlsenc : save the EXT-X-DISCONTINUITY from old list

    7 décembre 2016, par Steven Liu
    avformat/hlsenc : save the EXT-X-DISCONTINUITY from old list
    

    when use fix ticket 2nd problem.

    command line test step :
    rm -rf output* ;./ffmpeg -i /Movies/objectC/facebook.mp4 -an -c:v copy
    - f hls -hls_time 4 -hls_list_size 5 -hls_flags +delete_segments
    - hls_flags +append_list -hls_flags +omit_endlist -hls_flags
    +discont_start -t 50 output.m3u8
    ./ffmpeg -i /Movies/objectC/facebook.mp4 -an -c:v libx264 -g 4 -f hls
    - hls_time 4 -hls_list_size 5 -hls_flags +delete_segments -hls_flags
    +append_list -hls_flags +omit_endlist -hls_flags +discont_start -t 5
    output.m3u8
    ./ffmpeg -i /Movies/objectC/facebook.mp4 -an -c:v libx264 -g 4 -f hls
    - hls_time 4 -hls_list_size 5 -hls_flags +delete_segments -hls_flags
    +append_list -hls_flags +omit_endlist -hls_flags +discont_start -t 5
    output.m3u8

    result :
    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-TARGETDURATION:5
    #EXT-X-MEDIA-SEQUENCE:6
    #EXTINF:4.120000,
    output6.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:4.000000,
    output7.ts
    #EXTINF:0.960000,
    output8.ts
    #EXT-X-DISCONTINUITY
    #EXTINF:4.000000,
    output9.ts
    #EXTINF:0.960000,
    output10.ts

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c