Recherche avancée

Médias (91)

Autres articles (76)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • 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 ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (14938)

  • Unable to find a suitable output format for '|' ffmpeg and python subprocess

    20 octobre 2016, par nadermx

    I currently am trying to run this command (found on this answer)

    ffmpeg -i input.flv -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop 0 - output.gif

    in a python program using import subprocess library. The issue I’m running into is that when I run it in terminal it works fine, but when I run it in my python code I get this error

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'https://r7---sn-p0n5jxaa-hxms.googlevideo.com/videoplayback?ms=au&requiressl=yes&mt=1476932644&pl=24&itag=22&id=o-AAJEpGAb5MS-rP073pLWFKlJ-wUTAEEIFHdx7yPOZoBS&dur=4712.861&mime=video%2Fmp4&sparams=dur%2Cei%2Cgcr%2Cid%2Cinitcwndbps%2Cip%2Cipbits%2Citag%2Clmt%2Cmime%2Cmm%2Cmn%2Cms%2Cmv%2Cpl%2Cratebypass%2Crequiressl%2Csource%2Cupn%2Cexpire&mm=31&ip=187.190.166.119&mn=sn-p0n5jxaa-hxms&mv=m&lmt=1471437242705377&ipbits=0&ratebypass=yes&upn=G5WdwNKKKtM&gcr=mx&source=youtube&ei=MDUIWKegH4uhugK2mbH4DQ&key=yt6&initcwndbps=3328750&expire=1476954512&signature=783E4022EDB282BE372603EF7A78C2A71B957352.B691135B7EA6AC2D7B2B2E41F1FAD9683022EE38':
     Metadata:
       major_brand     : mp42
       minor_version   : 0
       compatible_brands: isommp42
       creation_time   : 2016-08-17T12:26:42.000000Z
     Duration: 01:18:32.81, start: 0.000000, bitrate: 319 kb/s
       Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1280x720 [SAR 1:1 DAR 16:9], 190 kb/s, 25 fps, 25 tbr, 90k tbn, 50 tbc (default)
       Metadata:
         creation_time   : 2016-08-17T12:26:42.000000Z
         handler_name    : ISO Media file produced by Google Inc.
       Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 125 kb/s (default)
       Metadata:
         creation_time   : 2016-08-17T12:26:42.000000Z
         handler_name    : ISO Media file produced by Google Inc.
    [NULL @ 0x32996e0] Unable to find a suitable output format for '|'
    |: Invalid argument

    The python code I did is this,

    subprocess.Popen(['ffmpeg', '-i', input.flv, '-vf', 'scale=320:-1', '-r', '10', '-f', 'image2pipe',
                        '-vcodec', 'ppm',  '-', '|', 'convert', '-loop', '0', '-', 'gif:-', '|',
                        'convert', '-', 'layers', 'Optimize', '-', 'output.gif'], shell=False)
  • ffmpeg –i /data/1.mp4 /data/2.mp4 Unable to find a suitable output format for '–i' [duplicate]

    17 octobre 2016, par D.jia

    This question already has an answer here :

    I have installed ffmpeg ,why doesn’t it work when I enter

    ffmpeg –i /data/1.mp4 /data/2.mp4 ??

    Could someone help me to solve it !

  • Tell pkg-config where to find packages on windows

    13 septembre 2016, par WirflBirfl

    I want to use the Haskell ffmpeg library under windows so I tried to install it via cabal.
    After downloading and extracting ffmpeg shared (64bit) version to C :\FFmpeg cabal complained that pkg-config was not installed.
    I downloaded it and moved it to the bin folder of MinGw. Now cabal complains that it can not find the pkg-config package libavutil.

    First part of the question :
    What is a pkg-config package ? Is it just the dll that comes with the shared version of ffmpeg ?

    Second part :
    I know pkg-config uses .pc files to describe where to look for packages and it uses the PKG_CONFIG_PATH variable to find .pc files. So how would a .pc file look when the libavutil dll is located in C :\FFmpeg\bin ?

    PS : The dll in FFmpeg\bin is named avutil-55.dll

    Thanks