Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (13)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

Sur d’autres sites (3992)

  • xcb : Add all the libraries to the link line explicitly

    30 octobre 2016, par Luca Barbato
    xcb : Add all the libraries to the link line explicitly
    

    Avoid an underlink issue on recent distributions.

    CC : libav-stable@libav.org

    • [DBH] configure
  • subprocess call ffmpeg (command line)

    22 juillet 2021, par user3295674

    I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line input

    



    ffmpeg -r 10 -i frame%03d.png -r ntsc movie.mpg


    



    To work inside a subprocess.call()

    



    I tried the following with no success :

    



    subprocess.call('ffmpeg -r 10 -i %s frame%03.d.png - r ntsc movie.mpg')


    



    Any thoughts ? Do I separate out different commands, do I specify string, integer etc. with %s, %d ?

    


  • subprocess call ffmpeg (command line)

    23 mars 2017, par user3295674

    I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line input

    ffmpeg -r 10 -i frame%03d.png -r ntsc movie.mpg

    To work inside a subprocess.call()

    I tried the following with no success :

    subprocess.call('ffmpeg -r 10 -i %s frame%03.d.png - r ntsc movie.mpg')

    Any thoughts ? Do I separate out different commands, do I specify string, integer etc. with %s, %d ?