Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (31)

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

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6443)

  • FFMpeg - adding a video codec

    24 juillet 2012, par user648880

    I've read the tutorials found on this site
    Adding new CODEC to ffmpeg

    but I can't seem to apply them to my situation. I have a Mpeg-4 based proprietary codec used in a CCTV system. I'd like to decode it back into the base Mpeg-4 or other format. The codec is dll based - where the dll is found in my c :/Windows folder. I followed the steps in the Cook tutorial (http://wiki.multimedia.cx/index.php?title=FFmpeg_codec_howto)- but am lost on developing my own .c file similar to the libavcodec/cook.c - can I not point to the dll file for this ?

  • Concat multiple video and audio files with ffmpeg

    9 avril 2014, par Dan Ramos

    I have an array of audio and video clips, where each audio clip has a 1:1 correlation with it's video clip. The encoding of each video and each audio clip are the same. How can I concat all of the audio clips, and all the video clips, then merge them together to output a video. As of now I only figured out how to merge 1 audio clip with 1 video clip :

    $ ffmpeg -i video_1.webm -i audio_1.wav -acodec copy -vcodec copy output.mkv

    Update
    I just came across mkvmerge would this possibly be a better option ?

  • FFmpeg filter encodes take unreasonable cpu to decode and playback

    26 janvier 2020, par Ryan

    I’ve got a 22 minute video clip that I’m trying to convert from bt2020 to bt709 with ffmpeg. I have a fairly large set of filters to do this :

    ffmpeg -hwaccel cuda -i "input.mkv" -c:a copy -c:v libx265 -crf 12 -vf zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p10,eq=brightness=0.14,eq=contrast=1.325,eq=saturation=1.455,scale=in_range=limited:out_range=full,colorbalance=rm=0.04:bm=0.04:rh=0.015:bh=0.015:pl=1 -preset slower -tune animation "output.mkv"

    The source clip is also HEVC. After the encode though, if I try and play back the bt709 clip in VLC, it’s uses around 50% CPU, and it doesn’t play at all on my phone. The source clip is perfectly fine and takes 1-2% CPU max. Why would this filtered clip be taking so much CPU, and how would I go about fixing this ?