Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (105)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • seeking in a file that ffmpeg is processing from a live stream

    8 mai 2024, par Ken Mandelberg

    I'm using ffmpeg to take input from a live stream and write an mkv file. The stream runs a few hours. I want to play the mkv file while this is in progress. I find that the players basically do "seeks" by playing through the file, which is ok for very short "seeks" but not for very long ones.

    


    When the ffmpeg ends it finalizes the mkv file, and seeks long or short work fine.

    


    What can I do to be able to have a more usable mkv while ffmpeg is in progress ? I suppose I could force ffmpeg to create a new mkv file every hour, with a name including an index. (Is there any automation for that ?), but I was hoping for some way to force periodic finalizations to the single file.

    


    This is on Linux.

    


  • Merge commit ’8ea15afbf2c1ec89b5d4bac1f0b8345e4b906a5d’

    30 mars 2017, par Mark Thompson
    Merge commit ’8ea15afbf2c1ec89b5d4bac1f0b8345e4b906a5d’
    

    * commit ’8ea15afbf2c1ec89b5d4bac1f0b8345e4b906a5d’ :
    hwcontext_qsv : transfer data through the child context when VPP fails

    Merged-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavutil/hwcontext_qsv.c
  • Cutting FLAC using ffmpeg does not change timestamps accordingly

    21 mars 2021, par George Tian

    I am using the following command to cut a FLAC file :

    &#xA;

    ffmpeg -i input.flac -ss 10s -t 10s -c copy output.flac

    &#xA;

    output.flac contains the correct duration of audio. However, all media players show its duration as the duration of input.flac.

    &#xA;

    The only other mention of this issue is an open ticket from 5 years ago.

    &#xA;

    How do I correct the timestamp of the output file ?

    &#xA;