Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (10385)

  • Faster Thumbnail/Image Extraction from Video using FFMPEG ?

    17 juillet 2019, par Arif Nadeem

    I am using this command to extract a series of images from a video to express them as a visual time-frame of the video.

    ffmpeg -i inputfile.mp4  -r  1  -t  12  image-%d.jpeg

    Most of my videos are in mp4 format. I am able to extract the images successfully but the time taken for extraction is too long.

    Is there any way I could reduce the time for image extraction ?

    EDIT : It is taking me 60 secs to get 8 thumbnails from a 15 sec long video encoded in MP4 format, I am doing this operation on my Galaxy Nexus(Android Phone) is there any way to improve the speed of operation, ideally I want it be less than  10secs.

  • Faster Thumbnail/Image Extraction from Video using FFMPEG ?

    27 août 2012, par mirroredAbstraction

    I am using this command to extract a series of images from a video to express them as a visual time-frame of the video.

    ffmpeg -i inputfile.mp4  -r  1  -t  12  image-%d.jpeg

    Most of my videos are in mp4 format. I am able to extract the images successfully but the time taken for extraction is too long.

    Is there any way I could reduce the time for image extraction ?

    EDIT : It is taking me 60 secs to get 8 thumbnails from a 15 sec long video encoded in MP4 format, I am doing this operation on my Galaxy Nexus(Android Phone) is there any way to improve the speed of operation, ideally I want it be less than  10secs.

  • Does MediaCodec truncate incoming packets for decoding ?

    15 octobre 2013, par mathieujofis

    I'm using MediaCodec to decode h264 packets that were encoded with ffmpeg. When I decode with ffmpeg, the frames display fine. However, when I decode with the MediaCodec hardware decoder I sometimes get black bars that show up in the middle of the frame. This only happens if the encoding bitrate is set high enough (say upwards of 4000000) so that any given AVPacket size becomes above 95000 or so. It seems like MediaCodec (or the underlying decoder) is truncating the frames. Unfortunately, I need the quality so the bitrate can't be turned down. I've verified that the frames aren't being truncated elsewhere, and I've tried setting MediaFormat.KEY_MAX_INPUT_SIZE to something higher.

    Has anyone ran into this issue or know of a way I can work around it ?

    I've attached an image of random pixels that I rendered in OpenGL and then decoded on my Galaxy S4.

    a busy cat