Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (37)

  • 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

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

Sur d’autres sites (6364)

  • Convert TIFF images sequence to lossless movie FFMPEG

    9 janvier 2016, par Rarez

    I would like use a h265 codec(FPS must be equal to 25) to save loseless wideo from sequence of TIFF images. I have a problem with save it. I supose that it is little mistake. I tried many combinactions of commands here is last one :

    ffmpeg -f image2 -r $FRAMERATE -i IMG_%03d.tif -vcodec libx265 -x265-params lossless movie.mp4

    And output :

    [libx265 @ 0x2bcaf40] 4:2:2 and 4:4:4 support is not fully defined for HEVC yet. Set -strict experimental to encode anyway.
    Output #0, mp4, to 'movie.mp4':
       Stream #0:0: Video: hevc, none, q=2-31, 128 kb/s, SAR 1:1 DAR 0:0, 25 fps
       Metadata:
         encoder         : Lavc57.20.100 libx265
    Stream mapping:
     Stream #0:0 -> #0:0 (tiff (native) -> hevc (libx265))
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    I will be very glad for any help. Thanks

  • FFMPEG convert .avi into playable iOS movie mp4

    8 janvier 2016, par Julien Klindt

    I’m trying to convert an avi file which is h264 encoded baseline4.0 to a new h264 mpeg file that is encoded with baseline3.

    The file original file is not playable on any iOS device, due to baseline4.0 (I think ?)

    I’m using this wrapper class here https://github.com/OpenWatch/FFmpegWrapper

    but actually I have no clue how to set baseline. I can convert to mpeg4, but it seems that defaults everytime to baseline4.0.

    I tried to set it on the AVCodecContext

    AVCodecContext *outputCodecContext = outputStream->codec;
    outputCodecContext->level = 31;
    outputCodecContext->profile = FF_PROFILE_H264_BASELINE;

    but this has no effect.

    Perhaps anybody has a clue, or has a better FFMPEGWrapper.

    Specs from original video :
    original video

  • rtmpproto : Include the full path as app when "slist=" is found

    11 novembre 2015, par Martin Storsjö
    rtmpproto : Include the full path as app when "slist=" is found
    

    This matches what librtmp does. This fixes automatic url parsing of
    crunchyroll urls.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtmpproto.c