Recherche avancée

Médias (91)

Autres articles (56)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8595)

  • aarch64 : vp9 : use alternative returns in the core loop filter function

    9 janvier 2017, par Janne Grunau
    aarch64 : vp9 : use alternative returns in the core loop filter function
    

    Since aarch64 has enough free general purpose registers use them to
    branch to the appropiate storage code. 1-2 cycles faster for the
    functions using loop_filter 8/16, ... on a cortex-a53. Mixed results
    (up to 2 cycles faster/slower) on a cortex-a57.

    This is cherrypicked from libav commit
    d7595de0b25e7064fd9e06dea5d0425536cef6dc.

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

    • [DH] libavcodec/aarch64/vp9lpf_neon.S
  • Find the streaming url source of an online streaming tv station to record with ffmepg

    20 mars 2016, par AHC

    I am trying to look into the javascript streaming source of the following site http://www.aztv.az/canli/aztv-canli.htm to capture the url and to record it using ffmpeg.

    My goal is to get something like this running :

    ffmpeg -i rtsp://XXX.XXX.XXX.XXX:XXX/live.sdp -acodec copy -vcodec copy c:/test_recording.mp4

    I don’t know what protocol this website uses, rtsp, rtmp, http, etc.
    Could you please help me to resolve this ?
    I tried to look into the .js file in the source of the page, but it is a bit complicated to figure it out. here is the js script.

  • Media Type Unrecognized with FFMPEG file generated

    2 août 2016, par pirmax

    I have an upload problem with the Twitter API.
    The problem is caused by codecs I think.

    I use FFMPEG to concatenate an audio file and an image, so to build a 30-second video to a file not exceeding in the 1MB.

    Here is the code that allows me to build this file and then upload the video via the Twitter API :

       var convert = function(image, audio, output) {
       var proc = ffmpeg(image)
       .loop(30)
       .addInput(audio)
       .format('mp4')
       .videoBitrate('1024k')
       .videoCodec('mpeg4')
       .size('640x640')
       .audioBitrate('128k')
       .audioChannels(2)
       .audioCodec('libfaac')
       .on('end', function() {
           console.log(output);
           fs.readFile(output, function(err, base64data) {
               client.post('media/upload', { media: base64data }, function (error, media, response) {
                   console.log(media);
               });
           });
       })
       .on('error', function(err) {
           console.log('an error happened: ' + err.message);
       })
       .save(output);
    };

    Each upload, I get the following message : unrecognized media type

    { request: '/1.1/media/upload.json',
     error: 'media type unrecognized.' }

    Could you help me please ? Thanks !