Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (80)

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

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7291)

  • use ffmpeg to set start_time equal in audio and video elementary streams

    13 août 2018, par sajad

    I am using ffmpeg tool for offline transcoding of some input files to MPEG-TS format. I use ffprobe to analyze the output. I need the output video to have equal values for start_time for both video and audio elementary streams. This is necessary for streaming by Perception streamer server. My desired output is like this :

    <streams>        
       <stream index="0"></stream>..../ codec_type="video" /.../ start_pts="YYY" start_time="XXX" /..../
           
           <stream index="1"></stream>..../ codec_type="audio" /.../ start_pts="YYY" start_time="XXX" /..../
           
       </streams>

    I use this profile for transcoding :

    -ss 0 -y -vcodec libx264 -vb 3404k -acodec libfdk_aac -profile:a aac_he -strict experimental -ar 48k -f adts -ab 96k -r 25 -g 50 -force_key_frames 'expr:gte(t,n_forced*2)' -x264-params keyint=50:min-keyint=50:scenecut=-1:force-cfr=1:nal-hrd=cbr -vsync 1 -async 1 -profile:v main -level 4.0 -s 1920x1080 -aspect 16:9 -avoid_negative_ts make_zero -strict experimental -muxdelay 0 -muxpreload 0 -output_ts_offset 0 -initial_offset 0 -start_at_zero -bufsize 3500K -minrate 3500K -maxrate 3500K -f mpegts

    How can I set start_time and start_pts like I explained ?

  • avformat/hlsenc.c : fix the output's duration smaller than input's in sub-range mode.

    30 octobre 2018, par Charles Liu
    avformat/hlsenc.c : fix the output's duration smaller than input's in sub-range mode.
    

    In fmp4 & sub-range mode, the output's duration always smaller than expected,
    because the size of the last #EXT-X-BYTERANGE is too small.

    Signed-off-by : Charles Liu <liuchh83@gmail.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • avformat/hlsenc.c : the size of init.mp4 is zero.

    30 octobre 2018, par Charles Liu
    avformat/hlsenc.c : the size of init.mp4 is zero.
    

    The size of init.mp4 is zero in fmp4 mode,
    when the input duraton smaller than the expected segment time.

    fix ticket : 7166

    Signed-off-by : Charles Liu <liuchh83@gmail.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c