Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (58)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5056)

  • ios ffmpeg No such filter : 'delogo'

    20 juin 2020, par 王维传
    


    I wanted to use the FFmpeg delogo command but the program crashed(I use ffmpeg3.0)

    


    



        char delogo[1024];
    sprintf(delogo, "delogo=x=10:y=10:w=250:h=100:show=0");
    char* a[] = {
        "ffmpeg",
        "-i",
        movie,
        "-filter_complex",
        delogo,
        outPic
    };
    ffmpeg_main(sizeof(a)/sizeof(*a), a);


    



    


    Crash logs

    


    



    [AVFilterGraph @ 0x7ff3ec507260] No such filter: 'delogo'
Error initializing complex filters.
Invalid argument
At least one output file must be specified
Stream mapping:
Press [q] to stop, [?] for help


    


  • Warning : [minor] The ExtractEmbedded option may find more tags in the movie data

    7 décembre 2019, par re96

    I typed the following command at a Windows 10 command prompt :

    C:\hoge>"exiftool(-k).exe" "-FileNamehoge/C0001.MP4
       1 directories scanned
       1 image files updated
    -- press RETURN --

    What does this warning mean ?
    How can I avoid warnings ?

  • FFmpeg film grain

    21 août 2019, par Some1Else

    I want to add a film grain effect using FFMPEG if possible.

    Taking a nice clean computer rendered scene and filter for a gritty black and white 16mm film look. As an example something like Clerks https://www.youtube.com/watch?v=Mlfn5n-E2WE

    According to Simulating TV noise Ishould be able to use the following filter

    -filter_complex "geq=random(1)*255:128:128;aevalsrc=-2+random(0)"

    but when I add it to my ffmpeg command

    ffmpeg.exe -framerate 30 -i XYZ%05d.PNG -vf format=yuv420p -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y OUTPUT.AVI

    so the command is now

    ffmpeg.exe -framerate 30 -i XYZ%05d.PNG -vf format=yuv420p -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y -filter_complex "geq=random(1)*255:128:128;aevalsrc=-2+random(0)" OUTPUT.AVI

    I get the message

    Filtergraph ’format=yuv420p’ was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a complex filtergraph.
    - vf/-af/-filter and -filter_complex cannot be used together for the same stream.

    How can I change my ffmpeg command line so the grain filter works ? Additionally, can I add a slight blur too ? The old 16mm looks more like blurred then grainy.

    Thanks for any tips.