Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (82)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7191)

  • Output file #0 does not contain any stream How can i solve this problem

    17 mai 2021, par 전재현

    I want to conver yuv file to png file
so I put this
    
"fmpeg -s 1280x1344 -pix_fmt yuv420p -vframes 64 -f image2 image%d.png"
on mac terminal
but always return Outputfile #0 does not contain any stream
How can I solve this problem
Help me please

    


  • MobileVLC for Iphonesimulator

    4 octobre 2012, par lvreiny

    I'm trying to build mobilevlc for iphonesimulator. I follow the steps from vlc's wiki :

    $ git clone git://git.videolan.org/MobileVLC.git
    $ cd MobileVLC
    $ ./buildMobileVLC.sh

    It stucked at ffmpeg's configure, no response in terminal.
    Anyone has the same experience ? What could be the problem ?

    I'm using Mac OSX Lion 10.7.5, Xcode 4.5, and building MobileVLC for Iphonesimulator5.1

  • How to scape special characters for linux, nodejs exec function

    22 février 2023, par David Chavez

    I'm running this ffmpeg command on my linux server and while I paste it into the terminal, it works just fine but as soon as I use execPromise to run the EXACT same command, it returns an error.

    


    const { exec } = require('child_process');
const { promisify } = require('util');
const execPromise = promisify(exec);

const encode = async ffmpegCode => {
    try {
        console.log(ffmpegCode) //Here I can see that the code is the
                                //exact same one than the one that works
                                //when pasted into the terminal
        await execPromise(ffmpegCode);
        return 200
    } catch (err) {
        console.log(err)
    }
}


    


    I need \: to be interpreted as such. When I type it as is, \:, the error message shows me that it interpreted it as : which is expected.

    


    If I pass in \\:, I expect it to interpret it as I need it which would be \: but the error shows me that it interprets it as \\:.

    


    \\\: is interpreted as \\: and \\\\: is interpreted as \\\\:.

    


    Part of the command passed :

    


    ...drawtext=text='timestamp \\: %{pts \\: localtime \\: 1665679092.241...

    


    Expected command :

    


    ...drawtext=text='timestamp \: %{pts \: localtime \: 1665679092.241...

    


    Error message :

    


    ...drawtext=text='timestamp \\: %{pts \\: localtime \\: 1665679092.241...

    


    How do I get /: through to the exec function ?