Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (32)

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

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5233)

  • fftools/ffmpeg_filter : create Input/OutputFilters together with FilterGraph

    21 mai 2023, par Anton Khirnov
    fftools/ffmpeg_filter : create Input/OutputFilters together with FilterGraph
    

    This way the list of filtergraph inputs/outputs is always known after
    FilterGraph creation. This will allow treating simple and complex
    filtergraphs in a more uniform manner.

    • [DH] fftools/ffmpeg_filter.c
  • vc1 : Simplify a little setting the intra variables

    24 novembre 2014, par Luca Barbato
    vc1 : Simplify a little setting the intra variables
    

    The code currently set the information in at least 4 places, spare
    some pointless loops.

    Make the code in the loop a little uniform to make easier factorize
    it out later.

    • [DH] libavcodec/vc1_block.c
  • How do I ffmpeg to iterate through 10,000+ datetime stamped files

    18 décembre 2018, par Rich

    I have a large number of jpgs captured from a cctv camera which I mistakenly used a dashed date time stamp in my curl command. The file names are

    Underwater-Cam-2017-10-20_17-58-22.jpg

    If I do a wildcard I get

    bash: /Applications/ffmpeg: Argument list too long

    I understand from other posts that I don’t want avoid the pattern being expanded using a glob, but I’m not sure how to iterate through these files with multiple sequential numbers. I tried this consecutive integer counting sequence which is in retrospect obviously not going to work, but I lack enough knowledge to resolve this through searching.

    /Applications/ffmpeg -y -i '/path/to/src/2017-10-20/Underwater-Cam-2017-10-20_%02d-%02d-%02d.jpg' -r 24 -vf "scale=hd720" -metadata:s:v rotate=0 -vcodec libx265 -preset veryfast -crf 24 -an -movflags +faststart /path/to/dest/uwcam-2017-10-20.mp4

    I’m doing this on a mac using bash 4.