Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (99)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (7418)

  • Envelope pattern in SoX (Sound eXchange) or ffmpeg

    26 mai 2016, par pJay

    I’ve been using SoX to generate white noise. I’m after a way of modulating the volume across the entire track in a way that will create a pattern similar to this :

    White noise envelope effect

    I’ve experimented with fade, but that fades in to 100% volume and fades out to 0% volume, which is just a pain in this instance.

    The tremolo effect isn’t quite what I’m after either, as the frequency of the pattern will be changing over time.

    The only other alternative is to split the white noise file into separate files, apply fade and then apply trim to either end so it doesn’t fade all the way, but this seems like a lot of unnecessary processing.

    I’ve been checking out this example Using SoX to change the volume level of a range of time in an audio file, but I don’t think it’s quite what I’m after.

    I’m using the command-line in Ubuntu with SoX, but I’m open to suggestions with ffmpeg, or any other Linux based command-line solution.

  • FFMPEG C++, Best practise / pattern for encoding a live feed

    21 mars 2016, par MrSmith

    I have got working code that captures from /dev/videox and encodes a h264 file just fine, that is like this :

    1. grab frame from camera
    2. possibly do a rgb-yuv tango
    3. encode with ffmpeg lib
    4. repeat

    Single thread.
    Now here is my thinking, if the time taken for 2 and 3 sums up to be larger than 1/25th of a second I will miss a frame from the camera.
    Not unfeasable right ?
    A spike in load on the target system and frame(s) are dropped.
    So I am thinking I should thread this and put in a buffer between capture and encoding.
    Now the question(s) is.

    1. Is my line of thinking correct ?
    2. Is my solution a variable one ?
    3. How much of a problem is it really, would it fail anyway, am I about to create a solution for which there is no problem.

    Insights ? :)

    Thanks

  • Two character glob pattern

    18 octobre 2022, par eSlavko

    I have camera capturing image every 10 seconds and store in folder with image name as timestamp like
/2022-05-10_19:11:50.jpg
Each week is stored in separate folder.
Now I want to make video from that images using ffmpeg.
It works with images declared as -pattern_type glob -i "*.jpg" Now I want to make video from images captured only in daytime. For example from images /2022-05-10_XX:11:50.jpg where XX is in range from 05, 06, 07 .. 20, 21. I try with glob patterns but seems that it can work only over single digit.