Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (74)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (7677)

  • avformat/mux : Fix assertion failure due to max_interleave_delta and poor input

    22 octobre 2014, par Michael Niedermayer
    avformat/mux : Fix assertion failure due to max_interleave_delta and poor input
    

    Fixes Ticket4051

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mux.c
  • Problems with slowing down when grid synthesis operation request via ffmpeg is received simultaneously

    7 novembre 2022, par bongcheol Kim
      &#xA;
    1. Crop/scaling/volume leveling encoding of videos uploaded by users in S3 with predetermined settings
    2. &#xA;

    3. Synthesize in grid form with other pre-prepared videos.
    4. &#xA;

    &#xA;

    Perform the above tasks through ffmpeg.&#xA;Encoding slows down when multiple requests occur simultaneously.&#xA;(Maybe it's because we shared the server's resources.)

    &#xA;

    To process task requests from 1 and 2 at the same time, but to process them&#xA;What can I do ?

    &#xA;

    Is there a service on AWS that can solve my problems ?

    &#xA;

    I thought about creating and processing ec2 individually for each request, but is this possible ?

    &#xA;

      &#xA;
    1. Invoke API
    2. &#xA;

    3. Create EC2
    4. &#xA;

    5. Proceed with one encoding operation on the corresponding EC2
    6. &#xA;

    7. Delete EC2 after uploading s3
    8. &#xA;

    &#xA;

  • Decoding h.264 in node.js without ffmpeg and send it to front or save it in fs

    5 mars 2019, par JT.v26

    I’m doing the final project of a bootcamp.

    The project consists of controlling a drone (Tello) with a mobile phone. So for this project I’m using react native. In which I insert a node.js inside the application (Node.js for Mobile Apps React Native) since the drone creates a wifi and I lose internet access to connect to a remote server.

    All right so far, the drone has three udp ports enabled on the sdk to receive instructions, send status and send video.
    The video gives it to me in raw.

    I did a test on the computer, downloading ffmpeg and converting that data and I could effectively have the video retransmission.

    My questions are :

    Is there any way I can use the same technique on the mobile without needing ffmpeg ?

    Is there any way to import ffmpeg into android and communicate with nodejs ?

    Is there any other solution where I can use another node that doesn’t have to be on the phone ?

    Or you may even find some other solution to address this problem.

    Thank you very much in advance