Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (18)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • avformat/tls : Fix windows build with openSSL enabled.

    20 janvier 2014, par Matt Oliver
    avformat/tls : Fix windows build with openSSL enabled.
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/tls.c
  • How to update/remove ffmpeg on Windows 10

    9 janvier 2018, par C. Wagner

    I found a python script that had to use ffmpeg via cmd.exe thus I "installed" ffmpeg following these instructions. I downloaded the latest version ffmpeg 3.4.1 but would like to replace it with ver 2.4.x. (I think syntax from the .py file is for ver 2.4.x). I replaced the entire folder with files from the older version zip but when I input ffmpeg -version it still shows version 3.4.

    I also tried removing path from environment variables,rebooting, and deleting entire ffmpeg folder to no avail. CMD.exe still displays ffmpeg as version 3.4 even when the entire folder is deleted. I was not able to find anything on ffmepg documentation or on google. I know its not exactly programming related but I thought I would get an answer here rather than in video production.

    Snippet of the code

    system("./ffmpeg -i xxx.ts -c copy -bsf:a aac_adtstoasc xxx.mp4")
  • av_read_frame of ffmpeg in windows always returning packet.stream_index as 0

    17 février 2015, par yanqing lu

    I’m using ffmpeg to demuxer, for some video like the windows’s sample Wildlife.wmv, the av_read_frame is always returning packet.stream_index=0. This leads the video queue very big and memory overflow. I get 15 frames of video, but only 1 frame of audio. Is there some options to control the av_read_frame, so I can read frames like : video-audio-video-audio, in this way it’s easy to sync AV and keep queue balance.

    Thanks in advance.