Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (64)

  • 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

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (10142)

  • Python to generate a video mpd file (even a node package) [on hold]

    14 mars 2017, par Junior

    I am in the midst of developing a video streaming app and I’m currently stuck at the Adaptive Bitrate Streaming part.

    Is there a python or node module that can (run server-side and) generate a mpd file of a video after it is uploaded, this way it is easy to link the file to Dash.js.

    So to clarify, I would just upload my video and have the server generate an mpd file for the video. The next time I use Dash.js, i just attach this file.

    Thanks.

  • Fluent-ffmpeg "not a suitable output format"

    5 septembre 2015, par J4G

    I’m using the fluent-ffmpeg module for Node.js to convert audio files. I have a .mp3 file that I’d like to convert to .wma

    Here’s what that looks like :

    var proc = new ffmpeg({
      source: 'file.mp3',
      nolog: false
    }).toFormat('wma')                                                
     .saveToFile('file.wma', function(stdout, stderr)
    {                                                
       console.log(stderr);
    });

    Unfortunately, I get the error :

    Requested output format 'wma' is not a suitable output format

    This is the entire error log :

    ffmpeg version 0.8.9-4:0.8.9-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers
     built on Nov  9 2013 19:25:10 with gcc 4.6.3
    *** THIS PROGRAM IS DEPRECATED ***
    This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.
    Input #0, mp3, from 'song_downloads/You Suffer.mp3':
     Metadata:
       title           : You Suffer
       artist          : Napalm Death
       album           : Scum
       genre           : Death Metal
       track           : 12
       date            : 1987
     Duration: 00:00:04.98, start: 0.000000, bitrate: 381 kb/s
       Stream #0.0: Audio: mp3, 44100 Hz, stereo, s16, 193 kb/s
    Requested output format 'wma' is not a suitable output format

    I know this isn’t an ffmpeg issue because

    ffmpeg -i file.mp3 file.wma

    Works fine. Any ideas ?

  • node js (or other) as streaming server

    20 décembre 2013, par Abdul Ali

    Apologies if a simple question but cannot find anything helpful . Am also new to the streaming concept.

    Goal is to set up a server which keeps on listening for data on a speific port. The user will be sending sequence of images from their iphone (# of images unknown).

    when the data is receieved, ffmpeg should start to get data from that port (as input) and send those images to ffserver to be streamed as a live video.

    did try Nginx-Rtmp module but the iphone developer have informed that in iphone, only ip and port can be given to open a stream (and no other part of the url can be given e.g. streamname and application name in case of nginx-rtmp)

    Any help and guide will be appreciatd that what can be used to set up a free and very simple sever that simply receives the images which ffmpeg can capture and send to ffserver .