Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (48)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • 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

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

Sur d’autres sites (8970)

  • omx : Add support for broadcom OMX on raspberry pi

    24 juillet 2012, par Martin Storsjö
    omx : Add support for broadcom OMX on raspberry pi
    

    The raspberry pi uses the alternative API/ABI for OMX ; this makes
    such builds incompatible with all the normal OpenMAX implementations.
    Since this can’t easily be detected at configure time (one can
    build for raspberry pi’s OMX just fine using the generic, pristine
    Khronos OpenMAX IL headers, no need for their own extensions),
    require a separate configure switch for it instead.

    The broadcom host library can’t be unloaded once loaded and started ;
    the deinit function that it provides is a no-op, and after started,
    it has got background threads running, so dlclosing it makes it
    crash.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] Changelog
    • [DBH] configure
    • [DBH] libavcodec/omx.c
    • [DBH] libavcodec/version.h
  • Revision 96419 : La librairie en version 1.9.2 v1.9.12 Add support for Direct Stream ...

    3 avril 2016, par kent1@… — Log

    La librairie en version 1.9.2
    v1.9.12
    Add support for Direct Stream Digital (DSD) / DSD Storage Facility (DSF) file format
    Add detection (not parsing) of WebP image format
    bugfix #1910 : Quicktime embedded images
    v1.9.11
    #64 - update constructor syntax for PHP 7
    #62 - infinite loop in large PNG files
    #61 - ID3v2 remove BOM from frame descriptions
    #60 - missing "break" in module.audio-video.quicktime.php
    #59 - .gitignore comments
    #58 - inconsistency in relation to module.tag.id3v2.php
    #57 - comparing instead of assign
    #56 - unsupported MIME type "audio/x-wave"
    #55 - readme.md variable reference
    #54 - QuickTime ? false 1000fps
    #53 - Quicktime / ID3v2 multiple genres
    #52 - sys_get_temp_dir in GetDataImageSize ?
    demo.joinmp3.php enhancements
    m4b (audiobook) chapters not parsed correctly
    sqlite3 caching not working
    bugfix #1903 - Quicktime meta atom not parsed

  • Can't change video subtitles codec using ffmpeg

    31 mars 2016, par jpo38

    I’ve got a mkv file with somes streams embedded :

    Stream #0:0: Video: h264 (High), yuv420p(tv, smpte170m/smpte170m/bt709), 720x300, SAR 1:1 DAR 12:5, 25 fps, 25 tbr, 48003.07 tbn, 50 tbc (default)
    Stream #0:1(tr): Audio: ac3, 48000 Hz, stereo, fltp, 192 kb/s (default)
    Stream #0:2(fr): Subtitle: dvd_subtitle, 720x300

    When playing on my PC, I can see subtitles. When playing it from my old DVD/DIVX player, I cannot see the subtitles (other mkv/avi work fine).

    So I wanted to change the subtitle encoding, to see if another one could work with my DVD player.

    ffmpeg -encoders reports :

    S..... ssa                  ASS (Advanced SubStation Alpha) subtitle (codec ass)
    S..... ass                  ASS (Advanced SubStation Alpha) subtitle
    S..... dvbsub               DVB subtitles (codec dvb_subtitle)
    S..... dvdsub               DVD subtitles (codec dvd_subtitle)
    S..... mov_text             3GPP Timed Text subtitle
    S..... srt                  SubRip subtitle (codec subrip)
    S..... subrip               SubRip subtitle
    S..... text                 Raw text subtitle
    S..... webvtt               WebVTT subtitle
    S..... xsub                 DivX subtitles (XSUB)

    So I tried :

    ffmpeg -i input.mkv -acodec copy -vcodec copy -scodec "codec" converted.mkv

    with various versions of "codec". None of them will work (except the original dvdsub...) :

    xsub reports :

    [matroska @ 0x24558c0] Subtitle codec 94211 is not supported.
    av_interleaved_write_frame(): Function not implemented
    [matroska @ 0x24558c0] Subtitle codec 94211 is not supported.
    Error writing trailer of mustang_converted.mkv: Function not implementedframe=  244 fps=0.0 q=-1.0 Lsize=       1kB time=00:00:10.01 bitrate=   1.0kbits/s speed=1.23e+03x    
    video:321kB audio:235kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
    Conversion failed!

    ssa or ass reports :

    [ssa @ 0x262e000] Only SUBTITLE_ASS type supported.
    Subtitle encoding failed

    others reports :

    Error while opening encoder for output stream #0:2 - maybe incorrect parameters such as bit_rate, rate, width or height

    What am I doing wrong ? Are some subtitles codec incompatible with the current video or audio codec ? Should I change those instead of copying ?

    Alternatively, is there an option to merge subtitle within the video images stream for good (and then have only two output streams : audio and video but preserve subtitles display) ?

    Note : Answer using another tool than ffmpeg are acceptable, if working under Linux (mint).