Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (64)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (7943)

  • Allow muxing h264 into ts with startcode "001" instead of "0001".

    25 février 2015, par Carl Eugen Hoyos
    Allow muxing h264 into ts with startcode "001" instead of "0001".
    

    Fixes ticket #2220.
    Fixes ticket #4324.

    • [DH] libavformat/mpegtsenc.c
  • Getting "Unrecognized option '1'" when using "-map_metadata -1" to erase metadata with ffmpeg [closed]

    20 novembre 2024, par Nautilus Era

    Edit :
    
As said in the header, this question is not about programing and I will ask it on the appropriate Stack.
    
My confusion came from the fact that I am using Python to make my calls to the shell, however, it has nothing to do with the problem I am trying to solve.
    
Thank you for your time and sorry for the bother.

    



    


    I was trying to erase metadata from a file using ffmpeg using the
following command :

    


    ffmpeg –i $file_path –map_metadata -1 –c copy $stripped_video_output


    


    Where $file_path and $stripped_video_output are variables containing
their respective path.

    


    ffmpeg gave the answer :

    


    Unrecognized option '1'. 
Error splitting the argument list: Option not found


    


    I am using Debian 12.

    


    I tried with both the repository's version as well as a compiled version
of ffmpeg and I tried on two different computers.

    


    If anyone can help with that, I would appreciate it.

    


    Thank you in advance and have a good one.

    


  • ffmpeg : Allow "-to" on input files in addition to "-t"

    18 novembre 2017, par Vitaly _Vi Shukela
    ffmpeg : Allow "-to" on input files in addition to "-t"
    

    For some strange reason "-t" option was only implemented
    for input files while both "-t" and "-to" were available
    for use for output files. This made extracting a range from
    input file inconvenient.

    This patch enables -to option for input so one can do

    ffmpeg -ss 1:23:20 -to 1:27:22.3 -i myinput.mkv ...

    Signed-off-by : Vitaly _Vi Shukela <vi0oss@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/ffmpeg.texi
    • [DH] fftools/ffmpeg_opt.c