Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (47)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (4970)

  • ffmpeg syntax has changed

    8 mai 2014, par Budgierless

    Just like what was talked about in this post : FFmpeg cannot recognize a preset even though it does exsist Ubuntu 12.04

    I have help, with deblockalpha which has been depreciated from ffmpeg for along time,
    i am no good with all this coding business, but would like someone to tell me how i can fix this outdated syntax, as i am getting this error :

    Unrecognized option ’deblockalpha’
    Failed to set value ’0’ for option ’deblockalpha’

    please see code below and advise ?

    $ffmpeg -i $input -r 30 -vcodec libx264 -s 512x288 -aspect 16:9 -b 1550k -maxrate 1800k -bufsize 4M -bt 1600k -flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0 -refs 1 -coder 0 -me_method full -me_range 16 -subq 5 -partitions +parti4x4+parti8x8+partp8x8 -g 250 -keyint_min 25 -level 30 -trellis 2 -sc_threshold 40 -i_qfactor 0.71 -acodec libfaac -ab 128k -ar 44100 -ac 2 $addpre $output";

    thanks

  • ffmpeg syntax has changed

    8 mai 2014, par Budgierless

    Just like what was talked about in this post : FFmpeg cannot recognize a preset even though it does exsist Ubuntu 12.04

    I have help, with deblockalpha which has been depreciated from ffmpeg for along time,
    i am no good with all this coding business, but would like someone to tell me how i can fix this outdated syntax, as i am getting this error :

    Unrecognized option ’deblockalpha’
    Failed to set value ’0’ for option ’deblockalpha’

    please see code below and advise ?

    $ffmpeg -i $input -r 30 -vcodec libx264 -s 512x288 -aspect 16:9 -b 1550k -maxrate 1800k -bufsize 4M -bt 1600k -flags +loop -cmp +chroma -deblockalpha 0 -deblockbeta 0 -refs 1 -coder 0 -me_method full -me_range 16 -subq 5 -partitions +parti4x4+parti8x8+partp8x8 -g 250 -keyint_min 25 -level 30 -trellis 2 -sc_threshold 40 -i_qfactor 0.71 -acodec libfaac -ab 128k -ar 44100 -ac 2 $addpre $output";

    thanks

  • How to run this complex filter in Fluent FFMPEG ?

    11 septembre 2019, par Dan Weaver

    I’m trying to turn the following complex filter into a Fluent FFMPEG command but I can’t figure out how the mapping works.

    ffmpeg -i audio.mp3 -filter_complex "[0:a]showfreqs=s=200x100:colors=white|white,format=yuv420p[vid]" -map "[vid]" -map 0:a video.mp4

    This is what I have so far but I get an error about the ’vid’ stream.

    ffmpeg()
       .input("audio.mp3")
       .audioCodec("aac")
       .audioBitrate("320")
       .complexFilter(
         {
           filter: "showfreqs",
           options: { s: "200x100" },
           inputs: "0:a",
         },
         {
           filter: "format",
           options: { pix_fmts: "yuv420p" },
           outputs: ["vid"],
         }
       )
       .outputOptions(['-map "[vid]"', "-map 0:a"])
       .save(spectrumTmp)

    Error :

    ffmpeg exited with code 1: Stream map '"[vid]"' matches no streams.
    To ignore this, add a trailing '?' to the map.

    If I add a trailing ’ ?’ in outputOptions I get a file with no video stream.