Recherche avancée

Médias (91)

Autres articles (42)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • build : Group general components separate from de/encoders in arch Makefiles

    20 décembre 2013, par Diego Biurrun
    build : Group general components separate from de/encoders in arch Makefiles
    

    This is in line with how the top-level libavcodec Makefile is structured.

    • [DBH] libavcodec/aarch64/Makefile
    • [DBH] libavcodec/arm/Makefile
    • [DBH] libavcodec/ppc/Makefile
    • [DBH] libavcodec/x86/Makefile
  • Play mpeg-2 file with 608/708 embedded captions out Decklink SDI

    29 octobre 2022, par asperi

    I have built ffmpeg with decklink support, it plays my mpg file fine out the SDI but not seeing any captions on my works broadcast monitor (JVC DT-V17G1Z). This monitor shows captions on SDI from my Mojito card but trying to get it to work with a BlackMagic 4k extreme. The mpg file has embedded 608 and 708 captions. Using the to play-

    


    ffmpeg -i C:\video\RD2838_720p.mpg -f decklink -pix_fmt uyvy422 "DeckLink 4K Extreme"


    


    MediaInfo on captinos :

    


    Text #1


    


    ID : 4096 (0x1000)-CC1
Menu ID : 1 (0x1)
Format : EIA-608
Muxing mode : A/53 / DTVCC Transport
Muxing mode, more info : Muxed in Video #1
Duration : 28 min 30 s
Bit rate mode : Constant
Stream size : 0.00 Byte (0%)
Language : English
CaptionServiceName : CC1

    


    Text #2
ID : 4096 (0x1000)-1
Menu ID : 1 (0x1)
Format : EIA-708
Muxing mode : A/53 / DTVCC Transport
Muxing mode, more info : Muxed in Video #1
Duration : 28 min 30 s
Bit rate mode : Constant
Stream size : 0.00 Byte (0%)
Language : English

    


    How do I get the Decklink 4k to pass the captions ? Thanks !

    


  • ffmpeg how to disable dithering while converting to b/w

    28 août 2014, par RoamingBiorobot

    Trying to convert a video to monochrome images sequence
    using something like
    avconv -i test.mp4 -pix_fmt monob %05d.png
    Resulting images are dithered to the extreme extent.
    Is there any way to disable dithering during such conversion ?

    Thank you !