Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (75)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (12773)

  • concatdec : change data type to suppress warning about limited range of data type...

    17 décembre 2012, par Michael Niedermayer

    concatdec : change data type to suppress warning about limited range of data type...

  • avfilter/hermite : fix "libavfilter/hermite.h:19:15 : error : no previous prototype...

    22 septembre 2015, par Michael Niedermayer
    avfilter/hermite : fix "libavfilter/hermite.h:19:15 : error : no previous prototype for hermite_interpolation"
    

    Fix build

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/hermite.h
  • Getting this error in ffmpeg pipeline : Non-monotonous DTS in output stream 0:0 ; previous : 4951970, current : 4951659 ; changing to 4951971

    6 décembre 2022, par RoshaanAli

    Error : Non-monotonous DTS in output stream 0:0 ; previous : 4951970, current : 4951659 ; changing to 4951971. This may result in incorrect timestamps in the output file.

    &#xA;

    I am using AWS Chime streaming then passing there data stream to FFMPEG and then going live with that data stream using AWS IVS(Interactive video service).&#xA;I am using ffmpeg for changing aspects of video on live streaming and brightness and contrast.&#xA;But when we turn off camera and after some time reopen it we facing the above mention error.&#xA;I have read about concat but we don't have input file actually we are passing data stream is ffmpeg that's why its not working.

    &#xA;

    Here is my ffmpeg command

    &#xA;

    ffmpeg=ffmpeg.spawn(&#x27;ffmpeg&#x27;, [&#xA;            &#x27;-i&#x27;, &#x27;-&#x27; ,&#xA;            // &#x27;-f&#x27;, &#x27;concat&#x27;,&#xA;            // &#x27;-segment_time_metadata&#x27;,&#x27;1&#x27;,&#xA;            // &#x27;-use_wallclock_as_timestamps&#x27;, &#x27;1&#x27;,&#xA;            &#x27;-c:v&#x27;, &#x27;libx264&#x27;,&#xA;            &#x27;-b:v&#x27;, &#x27;2567k&#x27;,&#xA;            &#x27;-maxrate&#x27;, &#x27;6000K&#x27;,&#xA;            &#x27;-preset&#x27;, &#x27;ultrafast&#x27;,&#xA;            &#x27;-profile:v&#x27;, &#x27;baseline&#x27;,&#xA;            &#x27;-level&#x27;, &#x27;3.0&#x27;,&#xA;            // &#x27;-aspect&#x27;, &#x27;9:16&#x27;,&#xA;            &#x27;-force_key_frames&#x27;, &#x27;expr:gte(t,n_forced*2)&#x27;,&#xA;            &#x27;-movflags&#x27;, &#x27;faststart&#x27;,&#xA;            &#x27;-fflags&#x27;, &#x27;nobuffer&#x27;,&#xA;            &#x27;-tune&#x27;, &#x27;zerolatency&#x27;,&#xA;            &#x27;-acodec&#x27;, &#x27;aac&#x27;,&#xA;            &#x27;-ab&#x27;, &#x27;160k&#x27;,&#xA;            &#x27;-ar&#x27;, &#x27;44100&#x27;,&#xA;            &#x27;-f&#x27;, &#x27;flv&#x27;,&#xA;            &#x27;rtmps-url/secret-key-replaced&#x27;&#xA;        ])&#xA;

    &#xA;

    I have tried this command -use_wallclock_as_timestamps&#x27;, &#x27;1&#x27; but it does nothing to error.

    &#xA;