Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (99)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

Sur d’autres sites (2178)

  • vp9/x86 : clarify mixed splatb.

    19 avril 2014, par Clément Bœsch
    vp9/x86 : clarify mixed splatb.
    
    • [DH] libavcodec/x86/vp9lpf.asm
  • Is there a way to tell ffmpeg to speed up a video so its duration matches the duration of the audio ?

    7 février 2020, par Qix - MONICA WAS MISTREATED

    Just as the title describes ; is there a simple way to tell ffmpeg to take in video and audio tracks and to speed up (or slow down, I suppose) the video so that it matches the duration of the audio ? I can calculate PTS values but have no idea how to do it in an automated way.

  • Stream specifier ':v:0' in filtergraph description [1:v:0] [1:a:0] [2:v:0] [2:a:0] [3:v:0] [3:v:0] concat=n=4:v=1:a=1 [v] [a] matches no streams

    13 septembre 2022, par Timur Ridjanovic

    This is my command (url1, url2, url3, url4 are placeholders) :

    



    ffmpeg -i url1 -i url2 -i url3 -i url4 -filter_complex "[1:v:0] [1:a:0] [2:v:0] [2:a:0] [3:v:0] [3:v:0] concat=n=4:v=1:a=1 [v] [a]" -map [v] -map [a] /Users/myname/Downloads/f1-2017-07-12.mp4 -y

    



    I get this error

    



    Stream specifier ':v:0' in filtergraph description [1:v:0] [1:a:0] [2:v:0] [2:a:0] [3:v:0] [3:v:0] concat=n=4:v=1:a=1 [v] [a] matches no streams.

    



    Not sure what is going on. I tried all urls individually and they all work (video and audio). I'm just getting this error when I try to concatenate them.

    



    I also tried this using another syntax for filter_complex :

    



    ffmpeg -i url1 -i url2 -i url3 -i url4 -filter_complex [0:0] [0:1] [1:0] [1:1] [2:0] [2:1] [3:0] [3:1] concat=n=4:v=1:a=1 [v] [a] -map [v] [a] /Users/timurridjanovic/Downloads/f1-2017-07-12.mp4 -y

    



    And I get this error :

    



    [AVFilterGraph @ 0x7ffe91703a00] No such filter: ''
Error initializing complex filters.
Invalid argument

    



    Can someone help me ?