Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (37)

  • 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

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

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

Sur d’autres sites (4519)

  • fftools/ffmpeg : drop the -async option

    30 août 2022, par Anton Khirnov
    fftools/ffmpeg : drop the -async option
    

    It has been deprecated in favor of the aresample filter for almost 10
    years.

    Another thing this option can do is drop audio timestamps and have them
    generated by the encoding code or the muxer, but
    - for encoding, this can already be done with the setpts filter
    - for muxing this should almost never be done as timestamp generation by
    the muxer is deprecated, but people who really want to do this can use
    the setts bitstream filter

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_filter.c
    • [DH] fftools/ffmpeg_mux.c
    • [DH] fftools/ffmpeg_opt.c
  • MAINTAINERS : add myself as amfenc* maintainer

    4 novembre 2022, par Dmitrii Ovchinnikov
    MAINTAINERS : add myself as amfenc* maintainer
    

    Due to the lack of an active AMF maintainer at the moment, as well
    as plans to add the av1 encoder and other improvements of AMF,
    I added myself to the maintainers. Timely review and merging
    patches targeting AMF integration should improve support
    of AMD GPUs and APUs in FFmpeg.
    For the last couple of years I have been working on AMF related
    patches to ffmpeg and other open source projects.

    • [DH] MAINTAINERS
  • x264 lib fails to build on Android, other plugins not included

    24 novembre 2022, par SOSparachuter1

    On my x86 windows machine, I'm compiling an Android app that links gstreamer using CMake : https://github.com/henkeldi/gstreamer-android/blob/master/app/src/main/cpp/CMakeLists.txt

    


    I'm using the latest Android binaries provided by gstreamer, so far everything worked and I've successfully linked gstreamer's app plugin. Next I tried to link x264 :

    


    SET(GST_PLUGINS_CORE_LIBS gstx264 gstapp)

SET(GST_PLUGINS_BASE ... x264)


    


    However, doing so results in dozens of these text relocation errors :

    


    ld:error: relocation R_AARCH64_ADD_ABS_L012_NC cannot be used against symbol x264_cabac_range_lps; recompile with -fPIC


    


    Even after I add the flag -fPIC these do not go away. Doing a bit of digging I see that Android does not allow text relocation since Api23, but that was several years ago. Is there still no fix on Android ?

    


    I also noticed that the videoparsersbad and hls plugins are not in the latest Android gstreamer binaries (version 1.21.2). Are these also not supported on Android ?