Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (23)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (3118)

  • Retune FLAC compression levels

    20 octobre 2014, par Martijn van Beurden
    Retune FLAC compression levels
    

    This patch changes a the settings associated with compression
    levels 6, 7 and 8. With this patch, -e is no longer used, but
    instead apodization functions are added. This should improve
    compression with at least 95% of all material while not changing
    the speed much. Decoding ways, 6 and 8 stay the same, and 7 is
    slowed a bit, which makes it as fast as 8.

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/libFLAC/stream_encoder.c
  • Fix bug when using -p switch during compression

    28 juillet 2014, par Martijn van Beurden
    Fix bug when using -p switch during compression
    

    When using the -p switch during encoding, the encoder should try
    different qlp predictor precision steps. However, some faulty code
    was too severely restricting the possible steps. This patch lifts
    the restriction to match a restriction coded a little further in
    the process. This doesn’t make using -p worth your while, but at
    least it doesn’t create larger files now

    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/libFLAC/stream_encoder.c
  • How do i use libavfilter to deinterlace frames in my video player software

    19 juin 2014, par justanothercoder

    I’m using libavformat/libavcodec/libswscale/libavutil/libavfilter (ffmpeg related libraries) to make a video player.

    I’v gotten into issues with interlaced videos, it just pairs them incorrectly... It always draws the previous bottom frame with the current top frame. Which results in things I don’t want. And i’v tried messing about with the variables around this, it just won’t work. (I haven’t found a player which would play the videos I have correctly, no you can’t have them, i’m sorry)

    I managed to find a way around this, by re-encoding the video with the following command :

    ffmpeg -i video.mp4 -filter:v yadif -vcodec mpeg4 out.avi

    Now what i’d need is directions on how to do this with c++ code, inside my video player.

    I haven’t found any tutorials on the matter and the ffmpeg.c source code is just too alien to me.

    A link to a tutorial would be fine, i just haven’t found it..

    Edit :

    Also this example was worth checking out :

    https://github.com/krieger-od/imgs2video/blob/master/imgs2video.c

    It’s by a gentleman named Andrey Utkin