Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (78)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (12846)

  • Issues with ffmpeg2theora- Please port your application to avcodec_decode_audio4()

    8 août 2016, par sudheerpaturi

    I am using the latest versions of ffmpeg and ffmpeg2theora for windows. I try to convert an mp4 file(with audio) to an ogv file using this command on terminal

    ffmpeg2theora.exe -v 10 input_file_name.mp4

    Then its giving out this error.
    Image for the Output

    I am totally new to using this tool. From my investigation I found that this is because of the new versions. This problem doesn’t exist with the old versions.

    Is there any way to get rid of this issue ?

    Thanks in advance.

  • How to make ffmeg automatically overwrite a file with the same name in python ?

    27 janvier 2021, par tkinterpy

    I have a script that downloads audio and video from a Youtube link,
Then ffmpeg merges them together, but if I want to merge again, it will output
a file with the same name, and it will ask me in the terminal
enter image description here

    


    how can I make it so it automatically overwrites ?

    


  • Run avconv in python and direct stdout/stderr to a file

    19 février 2016, par tdk

    I wish to run Avconv commands and record the logs in a file. In the Ubuntu terminal this can be accomplished using &>> operator after the actual command enclosed in parenthesis i.e.

    (avconv -i SRCFILE -ss 00:15:00 -t 00:30:00 TARGETFILE -threads auto) &>> LOGFILE

    The above command works perfectly when run in the terminal.

    Now I have a number of such commands to run, and thought running them through Python would be good.

    1. I tried using the os.system(command_string) way
      , which when run does not pack the Avconv output to the LOGFILE, and the avconv command seems to execute after the Python script is done - evidenced by some string outputs I put in for debugging. I’m also getting some permission errors. Here is how the first portion of output looks like

      AVCONV COMMAND EXECUTED
      sh: 1: : Permission denied
      sh: 1: : Permission denied
      sh: 1:


      PROGRAM DONE
      : Permission denied
      $ avconv version 11.2-6:11.2-1, Copyright (c) 2000-2014 the Libav developers
       built on Jan 18 2015 05:12:33 with gcc 4.9.2 (Ubuntu 4.9.2-10ubuntu2)
      Trailing options were found on the commandline.
      Input #0, mov,mp4,m4a,3gp,3g2,mj2, from ...
    2. I also tried using the subprocess.call() method for which I get the following error (NOTE : all files exist)

      Traceback (most recent call last):
       File "/home/usr/cnv.py", line 61, in <module>
         main()
       File "/home/usr/cnv.py", line 46, in main
         subprocess.call(newcmd)
       File "/usr/lib/python2.7/subprocess.py", line 522, in call
         return Popen(*popenargs, **kwargs).wait()
       File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
         errread, errwrite)
       File "/usr/lib/python2.7/subprocess.py", line 1335, in _execute_child
         raise child_exception
      OSError: [Errno 2] No such file or directory
      </module>

    I wish to run multiple (think 50+) commands of Avconv similar to the version shown at the top, and have the logs saved in a file instead of in stdout. How do I do this - in Python or otherwise ?