Recherche avancée

Médias (91)

Autres articles (111)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (6245)

  • Revision 2ce4783982 : configure : arm : Check __ARM_PCS_VFP if the float ABI hasn't been defined The su

    1er mai 2013, par Martin Storsjo

    Changed Paths :
     Modify /build/make/configure.sh



    configure : arm : Check __ARM_PCS_VFP if the float ABI hasn't been defined

    The support for detecting hardfp toolchains in af9dd50e is a
    step in the right direction, but that particular switch case
    isn't executed at all if the toolchain variable is set.

    This fixes cross building from x86 ubuntu to armhf ubuntu,
    in configurations such as
    "CROSS=arm-linux-gnueabihf- ./configure —target=armv7-linux-gcc".

    Change-Id : I6f141361e40374fbab564f9196d90e598fe9a0f6

  • SharedArrayBuffer for ffmpeg not working with React-Native

    31 août 2022, par Peter Garcia

    I am currently working on a React Native App using ffmpeg.wasm

    


    but for some reason, SharedArrayBuffer is still not working. My React version is "react" : "17.0.2", and React-dom is "17.0.2",. My Chrome version is Version 104.0.5112.101 (Official Build) (arm64)

    


    I've been racking my brain about why this isn't working on my React Native app since I did a test app and it works there but on this app, it doesn't.

    


    I am getting this error whenever I run ffmpeg.wasm :

    


    Uncaught (in promise) ReferenceError: SharedArrayBuffer is not defined
at aa35944d-451a-411f-bf18-4e42f7bbceb0:22:175
at Object.load (createFFmpeg.js:64:1)


    


    I cannot use Cross-Origin Opener headers :

    


    Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp


    


    because our app calls from a lot of outside APIs and it breaks them.

    


    Any help would be greatly appreciated.

    


  • ffmpeg concatenate two video files with same aspect ratio and fps still gives missed up output

    10 janvier 2019, par A_Matar

    I need to concatenate two clips which had the following encoding

    Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 320x240 [SAR 4:3 DAR 16:9], 100 kb/s, 23.98 fps, 23.98 tbr, 19184 tbn, 47.96 tbc (default)

    Stream #0:0(und): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 320x240 [SAR 1:1 DAR 4:3], 261 kb/s, 23.98 fps, 23.98 tbr, 48k tbn, 47.95 tbc (default)

    using the normal concat method spoils the second clip video stream

    ffmpeg -y -f concat -safe 0 -i filesname.txt -vcodec copy -acodec copy 1.mp4

    What is the required encoding I need to apply to the first clip to make it easily join-able with the the first ?

    Note :
    The first clip was of the following specs and I encoded it using the following command to match the specs of the second clip.

    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 320x240 [SAR 4:3 DAR 16:9], 61 kb/s, 23.98 fps, 23.98 tbr, 19184 tbn, 47.96 tbc (default)

    ffmpeg -i 1_original.mp4 -c:v libx264 -preset slow -profile:v baseline -vf scale=320x240 -r 23.98 -c:a aac -ar 44100 1.mp4