Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (69)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5846)

  • Terminal output text into pandas dataframe without creating external file

    23 février 2018, par helmo

    I am using ffmpeg’s extract_mvs file to generate some text information. I would use a command like this in the terminal :

    /extract_mvs input.mp4 > output.txt

    I would like to use this command with Popen or other subprocess in python such that instead of output.txt, the data is passed straight to a pandas data frame without actually generating the text file.

    The idea is to automate this multiple times, so, I am trying to avoid many .txt files from being generated and thus having to open() them one by one.

    I thought of something like this :

    import subprocess
    cmd = ['./extract_mvs', 'input.mp4']
    a = subprocess.Popen(cmd, stdout=subprocess.PIPE)
    df = pd.read_csv(a.communicate()[0], sep=',')

    But then I get an error : OSError: Expected file path name or file-like object, got <class> type</class>

    Can it be fixed and extended so as to read straight from subprocess to pandas ?

  • How to map pixel or point units to ffmpeg font / text size

    17 août 2020, par Rehan

    I have a web page form where I take text size in pixel or point units pass to ffmpeg and run ffmpeg command to set text size but they don't match. what is the ffmpeg text size standard unit or is there any way I can convert pixels or units into ffmpeg text size so they don't differ.

    &#xA;

  • Revision ba54a886c3 : Speeding up reading of intra block modes. Reimplementing sub8x8-reading of intr

    12 mars 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodemv.c



    Speeding up reading of intra block modes.

    Reimplementing sub8x8-reading of intra block modes in
    read_intra_frame_mode_info() and read_intra_block_mode_info(). Code looks
    more readable as well.

    Change-Id : Ia42fc7d0dad708bc0c7a8bff1f8b37809b843f40