Recherche avancée

Médias (0)

Mot : - Tags -/gis

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (88)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (17648)

  • Android:where to store large arrays of frames before encoding ?

    18 novembre 2013, par yarin

    I am facing a programming problem

    I am trying to encode video from camera frames that I have merged with other frames which were retrieved from other layer(like bitmap/GLsurface)

    When I use 320X240 .I can make the merge in real time with fine FPS( 10),but when I try to increase the pixels size I am getting less than 6 FPS.
    It is sensible as my merging function depend on the pixels size.

    So what I ask is, how to store that Arrays of frames for after processing (encode) ?

    I don't know how to store this large arrays.

    Just a quick calculation :
    If i need to store 10 frame per second
    and each frame is 960X720 pixel
    so i need to store for 40 second video : 40X10X960X720X(3/2-android factor)= 276 MB

    it is to much for heap

    any idea ?

  • Android:where to store large arrays of frames before encoding ?

    22 septembre 2017, par yarin

    I am facing a programming problem

    I am trying to encode video from camera frames that I have merged with other frames which were retrieved from other layer(like bitmap/GLsurface)

    When I use 320X240 .I can make the merge in real time with fine FPS( 10),but when I try to increase the pixels size I am getting less than 6 FPS.
    It is sensible as my merging function depend on the pixels size.

    So what I ask is, how to store that Arrays of frames for after processing (encode) ?

    I don’t know how to store this large arrays.

    Just a quick calculation :
    If i need to store 10 frame per second
    and each frame is 960X720 pixel
    so i need to store for 40 second video : 40X10X960X720X(3/2-android factor)= 276 MB

    it is to much for heap

    any idea ?

  • Laravel FFMPEG, converting large video on smaller EC2 instances

    30 août 2019, par Jeremy Layson

    I’m using ffmpeg on a laravel project (uploaded on AWS Elastic Beanstalk using t3.micro for now). My problem is that my budget can only go for t3.small but sometimes, I’ll have to process large video files like 2GB or even 5GB.

    My current set-up can process smaller files like 30MB and convert them to M3U8 (HLS) so there’s no problem with the set-up. The problem arises when I’m trying to upload and convert a 2GB file as my EC2 instance only has 1GiB of memory.

    Is there a way for FFMPEG (pbmedia/laravel-ffmpeg) to "chunk" the conversion so that it uses less memory ? Doesn’t matter if it takes double the time to convert.