Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (18)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (3708)

  • mpeg12dec : Extract CC user data into frame side data

    26 novembre 2013, par John Stebbins
    mpeg12dec : Extract CC user data into frame side data
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] doc/APIchanges
    • [DH] libavcodec/mpeg12dec.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.h
  • ffmpeg save difference between 2 videos to file

    10 août 2020, par 0x-1

    I'm currently trying to learn everything related to videos and encountered a problem that I need help with.

    &#xA;

    The Question is : How can I save the difference between 2 videos to a seperate file with ffmpeg ?
    &#xA;For example here is the ffplay command I'm trying with :&#xA;(Source : https://superuser.com/questions/854543/how-to-compare-the-difference-between-2-videos-color-in-ffmpeg)

    &#xA;

    ffplay -f lavfi "movie=left.mp4,setpts=PTS-STARTPTS,split=3[a0][a1][a2];&#xA;            movie=right.mp4,setpts=PTS-STARTPTS,split[b0][b1];&#xA;            [a0][b0]blend=c0_mode=difference[y];&#xA;            [a1]lutyuv=y=val:u=128:v=128[uv];&#xA;            [y][uv]mergeplanes=0x001112:yuv420p,pad=2*iw:ih:0:0[down];&#xA;            [a2][b1]hstack[up];[up][down]vstack"&#xA;

    &#xA;

    In this case I would want to have the bottom left video saved to a new file.
    &#xA;Can someone help me get together the right ffmpeg filter and explain the proccessing of ffmpeg ?

    &#xA;

  • PHP ffmpeg - save mp4 as H.264 in Baseline profile

    2 mai 2020, par Pikaboo

    I'm trying to play a mp4 file in android but it's not working.

    &#xA;&#xA;

    According to Android VideoView Cannot play video mp4

    &#xA;&#xA;

    the file needs to be H.264 in Baseline.

    &#xA;&#xA;

    I don't know what the hell this means.

    &#xA;&#xA;

    This is the PHP code I'm using to create mp4 :

    &#xA;&#xA;

    $videoname = str_replace(&#x27;.gif&#x27;, &#x27;.mp4&#x27;, $picname);&#xA;$ffmpeg = FFMpeg\FFMpeg::create(array(&#xA;    &#x27;ffmpeg.binaries&#x27;  => &#x27;ffmpeg/bin/ffmpeg.exe&#x27;,&#xA;    &#x27;ffprobe.binaries&#x27; => &#x27;ffmpeg/bin/ffprobe.exe&#x27;,&#xA;    &#x27;timeout&#x27;          => 6600, // The timeout for the underlying process&#xA;    &#x27;ffmpeg.threads&#x27;   => 12,   // The number of threads that FFMpeg should use&#xA;), $logger);&#xA;&#xA;$video = $ffmpeg->open(&#x27;memes/&#x27; . $folder . &#x27;/&#x27; . $picname);&#xA;$video&#xA;    ->save(new \FFMpeg\Format\Video\X264(), &#x27;memes/&#x27; . $folder . &#x27;/&#x27; . $videoname);&#xA;

    &#xA;&#xA;

    How can I set it to be H.264 in Baseline profile ?

    &#xA;