Recherche avancée

Médias (91)

Autres articles (58)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6974)

  • Quickly check the integrity of video files inside a directory with ffmpeg

    4 février 2017, par DMT

    I’m desperately searching for a convenient method to check the integrity of .mp4 files inside a specific directory with folders in it. Both the names of the .mp4 files and the folders contain spaces, special characters and numbers.

    I’ve already found a proper ffmpeg command to quickly identify a damaged .mp4 file, taken from here :
    ffmpeg -v error -i filename.mp4 -map 0:1 -f null - 2>error.log

    If the created error.log contains some entries, then the file is obviously corrupted. The opposite would be an empty error.log.

    The next step would be to apply this command to every .mp4 file within the folder and its subfolders. Some guides, like here and here, do describe how to apply a ffmpeg command recursively, but my coding skills are limited, so therefore I can’t find a way to combine these commands to get the following :

    A way to test all .mp4 files inside a folder (recursively) with the aforementioned ffmpeg command, that should create .log files, only if a video file does contain errors (read has some content) and it should inherit the name of the broken file, to know which file is corrupted.

    Using Ubuntu Gnome 15.10.

  • Difference in number of channels returned by mediainfo and ffprobe

    16 mars 2021, par Hai Tran

    I was examining an audio file and noticed that the numbers of channels returned by mediainfo and ffprobe were different.

    


    The mediainfo command :

    


    mediainfo audio.mp4


    


    The ffprobe command (see the channels value) :

    


    ffprobe -i audio.mp4 -show_streams


    


    Does anyone know what's happening ?
Here is the audio file for your own test.

    


  • arm : add ff_int32_to_float_fmul_array8_neon

    3 décembre 2015, par Janne Grunau
    arm : add ff_int32_to_float_fmul_array8_neon
    

    Quite a bit faster than int32_to_float_fmul_array8_c calling
    ff_int32_to_float_fmul_scalar_neon through FmtConvertContext.
    Number of cycles per int32_to_float_fmul_array8 call while decoding
    padded.dts on exynos5422 :

    before after change
    cortex-a7 : 1270 951 -25%
    cortex-a15 : 434 285 -34%

    checkasm —bench cycle counts : cortex-a15 cortex-a7
    int32_to_float_fmul_array8_c : 1730.4 4384.5
    int32_to_float_fmul_array8_neon_c : 571.5 1694.3
    int32_to_float_fmul_array8_neon : 374.0 1448.8

    Interesting are the differences between
    int32_to_float_fmul_array8_neon_c and int32_to_float_fmul_array8_neon.
    The former is current behaviour of calling
    ff_int32_to_float_fmul_scalar_neon repeatedly from the c function,
    The raw numbers differ since checkasm uses different lengths than the
    dca decoder.

    • [DBH] libavcodec/arm/fmtconvert_init_arm.c
    • [DBH] libavcodec/arm/fmtconvert_neon.S