Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (60)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • tools/coverity : Add models for av_mallocz and av_free

    27 novembre 2016, par Philip Langdale
    tools/coverity : Add models for av_mallocz and av_free
    

    This should deal with some false positives, but might lead to
    more of them depending on whether it realises that av_freep()
    wraps av_free() or not.

    • [DH] tools/coverity.c
  • ffmpeg gets the wrong color_range [closed]

    16 avril, par Rems

    I have videos with incorrect color_range information.
Their mediainfo is like this :

    


    Color range : Limited
    
color_range_Original : Full

    


    The video is indeed limited, and one of our editing tools, for unknown reasons, adds this color_range_Original tag.
The problem is that when ffmpeg processes these videos, it sees the color range as Full. It retrieves the wrong information, which can lead to problems and color loss later on.
I know it's possible to specify to ffmpeg the input range with the scale filter, but in this workflow I don't re-encode the videos, so I can't use filters.

    


    Is there another way to specify the input range to ffmpeg ? Thanks

    


  • Doing parallel ffmpeg conversions on dozens of servers simultaneously. Is there a better way ? [on hold]

    22 mai 2019, par user15063

    Im currently working on a fairly large site, that requires several thousands of files to be encoded with ffmpeg into flash format (along with thumbnails creation, mobile file encoding). Average encode runs for about 5-15 minutes, as they are fairly large source files. After the job is complete, the outputs need to be shuttled to different servers (flash file to one box, thumbnails to another, mobile file to another, and original file to another).

    During this processes (which is 13 steps at this point) there is a LOT that can go wrong, at any given time (bad files, stuck encodes, network latency, dying servers, spiking lead), so error handling is a bitch.

    Are there any existing solutions for this type of work ? Or do I have to just keep tweaking my homebrew scripts ?