Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (56)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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 ;

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

Sur d’autres sites (3912)

  • Revision 4064 : "page d’accueil" plutot que "Home" On commence à utiliser polyhiérarchie

    27 septembre 2010, par kent1 — Log

    "page d’accueil" plutot que "Home" On commence à utiliser polyhiérarchie

  • Video created from JPEG images in Spring Boot using FFmpegBuilder is extremely resource demanding

    1er avril 2020, par Igor Avramovic

    I have created small JAVA app which transforms a set of input JPEG images into video

    



    For that purpose i use 
net.bramp.ffmpeg.builder.FFmpegBuilder

    



        FFmpegBuilder builder = new FFmpegBuilder()
                .addInput(imagesSourceFolder)

                .addOutput(videoOutputPath)             
                .setFormat("mp4")
                .setVideoCodec("libx264")
                .setVideoResolution(1280, 720)
                .disableSubtitle() 
                .disableAudio()
                .setVideoFrameRate(FFmpeg.FPS_24)

                .done();



    



    Everything works just fine

    



    But the problem is that video created like this is very resource demanding
For instance, when i play it in VLC it slows my whole system
When i try to stream that video and open it in Browser, 
everything becomes unresponsive,
except for video that keeps running

    



    Any idea why videos created in this way are so resource demanding ?

    


  • Fixing a TS file made by the HD Home Run

    2 mars 2015, par clive alton

    I am recording from a cable stream using the hdhomerun command line tool, hdhomerun_config, to a .ts file. The way it works is that you run the command, it produces periods every second or so to let you know that the stream is being successfully recorded. So when I record, it produces only periods, which is desired. And the way to end it is by doing a Ctrl-C. However, whenever I try to convert this to an avi or a mov using FFMpeg, it gives a bunch of errors, some of which being

    [mpeg2video @ 0x7fbb4401a000] Invalid frame dimensions 0x0
    [mpegts @ 0x7fbb44819600] PES packet size mismatch
    [ac3 @ 0x7fbb44015c00] incomplete frame

    It still creates the file, but it is bad quality and it doesn’t work with OpenCV and other services. Has anyone else encountered this problem ? Does anyone have any knowledge that may help with this situation ? I tried to trim the ts file but most things require conversion before editing. Thank you !