Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (22)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6247)

  • avcodec/mpeg12dec : Fix uninitialized data in fate-sub-cc-scte20

    28 juin 2020, par Limin Wang
    avcodec/mpeg12dec : Fix uninitialized data in fate-sub-cc-scte20
    

    The issue is introduced in a705bcd763e344fa, please tested with below command line :
    make V=1 fate-sub-cc-scte20 TARGET_EXEC="valgrind —error-exitcode=1"

    Reported-by : Martin Storsjö <martin@martin.st>
    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/mpeg12dec.c
  • Node Media Server not stream when i try to pass the argument "transpose=1" to ffmpeg

    28 mai 2020, par joao.jlf4

    I'm using node-media-server to stream to instagram, and i need to rotate the original vídeo, to be portrait. I know that there is a flag on ffmpeg called transpose (there is rotate too), but when i pass it on node_relay_session.js on 24 line at the argv array, it returns me a "[Relay end]" on console, and it does'nt stream. When I remove the transpose flag from argv array it backs to stream normaly. Here is my config to nms :

    &#xA;&#xA;

    import NodeMediaServer from &#x27;node-media-server&#x27;;&#xA;import removeBarOfRtmpUrl from &#x27;./utils/removeBarRtmpUrl&#x27;;&#xA;import path from &#x27;path&#x27;;&#xA;import { remote } from &#x27;electron&#x27;;&#xA;&#xA;export default function(data) {&#xA;&#xA;const streams = data.map(stream => ({&#xA;endpoint: removeBarOfRtmpUrl(stream.endpoint),&#xA;key: stream.key,&#xA;}))&#xA;&#xA;const config = {&#xA;rtmp: {&#xA;port: 1935,&#xA;chunk_size: 60000,&#xA;gop_cache: true,&#xA;ping: 30,&#xA;ping_timeout: 60&#xA;},&#xA;http: {&#xA;port: 8000,&#xA;allow_origin: &#x27;*&#x27;&#xA;},&#xA;relay: {&#xA;// C:\Users\Usuario\Desktop\multistream\node_modules.bin\ffmpeg.exe&#xA;ffmpeg: path.join(remote.app.getPath(&#x27;appData&#x27;), &#x27;..&#x27;, &#x27;Local&#x27;, &#x27;Programs&#x27;, &#x27;multistream&#x27;, &#x27;app&#x27;, &#x27;ffmpeg&#x27;, &#x27;bin&#x27;, &#x27;ffmpeg.exe&#x27;),&#xA;tasks: streams.map(stream => ({&#xA;app: &#x27;live&#x27;,&#xA;mode: &#x27;push&#x27;,&#xA;edge: ${stream.endpoint}/${stream.key},&#xA;&#xA;  }))&#xA;},&#xA;};&#xA;&#xA;const nms = new NodeMediaServer(config);&#xA;return nms;&#xA;}&#xA;&#xA;// {&#xA;// app: &#x27;live&#x27;,&#xA;// mode: &#x27;push&#x27;,&#xA;// edge: &#x27;rtmp://a.rtmp.youtube.com/live2/keyyoutube&#x27;,&#xA;// },```&#xA;

    &#xA;

  • ffmpeg "filtergraph join" to use copy of channels and preserve input channel configuration (format - s32_le)

    29 avril 2020, par vishwanath patil

    Command that I am using is below, with that command I am getting 8 channel output.wav.

    &#xA;&#xA;

    ffmpeg.exe    -i one.wav -i two.wav -i three.wav -i four.wav \&#xA;-i five.wav -i six.wav -i seven.wav -i eight.wav \&#xA;-filter_complex &#x27;[0:0][1:0][2:0][3:0][4:0][5:0][6:0] \&#xA;[7:0]join=8:channel_layout=octagonal&#x27;  output.wav&#xA;

    &#xA;&#xA;

    All input files one.wav, two.wav so on eight.wav are 32khz,s32le and one channel. but, output generated is output.wav which is s16le, 32khz.

    &#xA;&#xA;

    I can make output s32le with below command,

    &#xA;&#xA;

    ffmpeg.exe -i one.wav -i two.wav -i three.wav -i four.wav \&#xA;-i five.wav -i six.wav -i seven.wav -i eight.wav \&#xA;-filter_complex &#x27;[0:0][1:0][2:0][3:0][4:0][5:0][6:0] \&#xA;[7:0]join=8:channel_layout=octagonal&#x27;  -acodec pcm_s32le output.wav&#xA;

    &#xA;&#xA;

    But, above command seems todo conversion from s16_le to s32_le (i.e one.wav doesn't match with output.wav first channel completely). However what I want is to directly copy data from input channels since audio format of all input files is same as expected audio format of output file channels (output.wav)

    &#xA;&#xA;

    is there way to instruct filter_graph todo processing at pcm_s32le ?

    &#xA;&#xA;

    Here is link to log with loglevel set to debug,&#xA;https://pastebin.com/ms4x1fLz

    &#xA;&#xA;

    MediaInfo.exe one.wav&#xA;General&#xA;Complete name                            : one.wav&#xA;Format                                   : Wave&#xA;File size                                : 6.50 MiB&#xA;Duration                                 : 53 s 280 ms&#xA;Overall bit rate mode                    : Constant&#xA;Overall bit rate                         : 1 024 kb/s&#xA;&#xA;Audio&#xA;Format                                   : PCM&#xA;Format settings                          : Little / Signed&#xA;Codec ID                                 : 1&#xA;Duration                                 : 53 s 280 ms&#xA;Bit rate mode                            : Constant&#xA;Bit rate                                 : 1 024 kb/s&#xA;Channel(s)                               : 1 channel&#xA;Sampling rate                            : 32.0 kHz&#xA;Bit depth                                : 32 bits&#xA;Stream size                              : 6.50 MiB (100%)&#xA;

    &#xA;