Recherche avancée

Médias (91)

Autres articles (111)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • 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

Sur d’autres sites (9324)

  • 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