Recherche avancée

Médias (91)

Autres articles (59)

  • 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 (5729)

  • capture accurate frame from video through ffmpeg command

    13 novembre 2013, par rohit

    I need to upload video and capture a random frame from that particular video.
    I am unable to capture perfect frame i.e I am receiving a blurred image.
    Here is my code :
    `

    if ($_FILES["file"]["error"] > 0)
       {
       echo "Return Code: " . $_FILES["file"]["error"] ;
       }
     else
       {

    if (file_exists("upload/" . $_FILES["file"]["name"]))
     {
     echo $_FILES["file"]["name"] . " already exists. ";
     }
    else
     {
     move_uploaded_file($_FILES["file"]["tmp_name"],"upload/" . $_FILES["file"]["name"]);
     $vidName = "upload/" . $_FILES["file"]["name"];

     shell_exec("ffmpeg -i ".$vidName." -ss 00:00:05:123 -f image2 -vframes 1 upload/screen1.png");

     echo "Stored in: " . $vidName;
     }
    }

     ?> `

  • Revision 9a1ce7be7d : Experimental rd bias based on source vs recon variance. This experiment biases

    6 mars 2015, par paulwilkins

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


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_rdopt.h



    Experimental rd bias based on source vs recon variance.

    This experiment biases the rd decision based on the impact
    a mode decision has on the relative spatial complexity of the
    reconstruction vs the source.

    The aim is to better retain a semblance of texture even if it
    is slightly misaligned / wrong, rather than use a simple rd
    measure that tends to favor use of a flat predictor if a perfect
    match can’t be found.

    This improves the appearance of texture and visual quality
    on specific test clips but is hidden under a flag and currently
    off by default pending visual quality testing on a wider Yt set.

    Change-Id : Idf6e754a8949bf39ed9d314c6f2daaa20c888aad

  • FFMpeg : audio resampling changes slightly the speed of the music [on hold]

    24 octobre 2018, par thenaoh

    In my Android app, I use the FFMpeg library to extract audio samples from an audio file on the fly, and also resample them (since my file is encoded in 44100 Hz, and my device expects 48000 Hz sound).

    The problem is : even if the sound quality is perfect, the speed is a little bit higher than the regular speed of the music.

    The difference is very small (small enough so you won’t hear it), but you can hear it when you play the same song at the same time on a regular player (like VLC for example).

    I think it comes from the resampling, but I don’t know how to fix it.

    Here is my code (I get my samples thanks to the getPcmFloat() function) : https://gist.github.com/mregnauld/2538d98308ad57eb75cfcd36aab5099a

    How can I correct the speed of the music ?

    Thanks for your help.