Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (62)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9516)

  • The frame count getted from FFmpeg is different from its splitting action result ?

    21 février 2020, par vividlipi

    I had executed these two commands, and I got confused by its unconsistent result.

    1. I got frame count through the command following :

      ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 FPS30-536-CFR.mp4

      The result is 536.

    2. I fetched every frame and saved it to a directory :

      ffmpeg -i FPS30-536-CFR.mp4 ./frames/out%04d.jpg

      I got 537 pictures in the ./frames directory which numbers form 0001.jpg to 0537.jpg

    I had tried another video, the two results are maintained the same.

    Please give me some hints, thank you very much.

    Here is the video.

  • Anomalie #4422 (Nouveau) : PHP 7.2 : warning sur count() dans ecrire/public/aiguiller.php

    7 janvier 2020, par - Equipement

    Bonjour,
    Sous PHP 7.2, avec SPIP 3.2 (et également avec SPIP 3.3), il y a deux "Warning" dans ecrire/public/aiguiller.php.
    - Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 228
    - Warning : count() : Parameter must be an array or an object that implements Countable in /.../ecrire/public/aiguiller.php on line 242
    Cela concerne :

    1. <span class="CodeRay"><span class="keyword">if</span> (<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) <span class="keyword">and</span> ...
    2. <span class="keyword">if</span> ((<span class="predefined">count</span>(<span class="local-variable">$post</span>[<span class="string"><span class="delimiter">"</span><span class="content">erreurs_</span><span class="local-variable">$form</span><span class="delimiter">"</span></span>]) == <span class="integer">0</span>))
    3. </span>

    Télécharger

    Cordialement
    Equipement

  • Concatenating two audio files, keeping the channel count of the second file

    6 septembre 2019, par Jon H

    I am attempting to concatenate two MP3 files into a single MP3 file. So far this has worked fine with the following command :

    ffmpeg -y -i "first.mp3" -i "second.mp3" -c:a libmp3lame -qscale:a 1 -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[outa]" -map "[outa]" combined.mp3

    I wish to keep the channel count of the second input. For example, the first input is always mono, but if the second channel is stereo, I wish the output to be stereo. This command appears to always output the same channel count as the first input.

    I have tried reversing the order of the inputs, and reversing the mapping of the concat filter, but this had the same result.

    Any ideas ? Thanks.