Recherche avancée

Médias (91)

Autres articles (47)

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

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

  • How to add moov atom to mp4 in nodejs blob ?

    6 juin 2023, par Hypothesis

    I am sending buffer from client to server and then save them as a blob into an mp4 file like this :

    


    async function saveIntoMp4(format) {
    if (chunks.length) {
      const options = recOptions.mimeType ? { type: recOptions.mimeType } : { type: "video/mp4" }
      let blob = new Blob(chunks, options);
      if (blob.size > 9999) {
        console.log(`blob.size`, blob.size);
        const buffer = Buffer.from(await blob.arrayBuffer());
        try {
          fs.writeFileSync( // writeFile
          `${__dirname}/videos/1.mp4`,
          buffer,
          () => console.log("video saved!")
        );


    


    However I am not able to play the saved files remotely from the video tag since the moov atom is not in the begining of the file or is missing altogether. I am saving most of my files in h264 encoding and I wonder if there is a way without using a third party library such as FFMPEG to add MOOV to the begining of my files and make them virtually playable.

    


  • How to transcode short video using FFmpeg, libx264 codec, Swift, iOS app

    21 mars 2024, par Dmitriy iOS

    The goal is to transcode a short video into .mov format using FFmpeg and libx264 codec.
So far I have not been able to do this using third-party libraries.
Using the command line, the video is perfectly transcoded, but I need it inside the application.

    


    If anyone has a solution I would be very grateful.

    


    The resulting video needs to have the following parameters, something like this :

    


    Picture 1 Picture 2 Picture 3

    


    For example :

    


    let command = ["ffmpeg", "-i", videoOutputURL.path, "-c:v", "libx264", "-c:a", "copy", convertedVideoUrl.path]
let ffmpegCommand = ffmpeg(command)


    


  • How to transcode short video using FFmpeg, libx264 codec, Swift, iOS app

    21 mars 2024, par Dmitriy iOS

    The goal is to transcode a short video into .mov format using FFmpeg and libx264 codec.
So far I have not been able to do this using third-party libraries.
Using the command line, the video is perfectly transcoded, but I need it inside the application.

    


    If anyone has a solution I would be very grateful.

    


    The resulting video needs to have the following parameters, something like this :

    


    Picture 1 Picture 2 Picture 3

    


    For example :

    


    let command = ["ffmpeg", "-i", videoOutputURL.path, "-c:v", "libx264", "-c:a", "copy", convertedVideoUrl.path]
let ffmpegCommand = ffmpeg(command)