Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (111)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (5785)

  • Revision e5fe165840 : Properly handle the boundary blocks for integral projection search Use rectangu

    2 mars 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Properly handle the boundary blocks for integral projection search

    Use rectangular block size for integral projection motion estimation
    if the the 64x64 block has over half block outside the frame. This
    avoids the issue that the motion information of these blocks is
    dominated by the extended pixels, instead of the pixels of interest.

    Change-Id : I22f4d2bb7f6a20db9b3f5e2e5463a7f4b9d1b737

  • Reduce bitrate of video with ffmpeg

    4 janvier 2021, par Z.Chorlev

    I'm using ffmpeg to check the bitrate of given videos and my goal is to reduce it to half of the original bitrate.

    


    For test purpose I executed this command

    


    ffmpeg -i example.avi


    


    and I saw that the bitrate of the videos was around 1030 kb/s

    


    I want to know which is the unit that ffmpeg uses for bitrate.

    


    ffmpeg -i example.aviffmpeg -b 515 new_video.avi


    


    I used b:a and b:v for audio and video, but the result is not correct again
I tried with just 515 and 515k, but still not correct ...

    


    My goal is to have output video with 515 kb/s bitrate.

    


  • node-fluent-ffmpeg editing video start time when merging

    3 mars 2018, par DarkArtistry

    I am trying to understand if this is valid, to add in the setStartTime option half way through merging my audio :

    new FFmpeg({ source: '/path/to/part1.avi' })
       .setStartTime(120)
       .mergeAdd('/path/to/part2.avi')
       .mergeAdd('/path/to/part2.avi')
       .on('error', function(err) {
           console.log('An error occurred: ' + err.message);
       })
       .on('end', function() {
           console.log('Merging finished !');
       })
       .mergeToFile('/path/to/merged.avi', '/path/to/tempDir');