Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (103)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (8127)

  • avformat/segafilmenc : Don't store packet info in linked list

    17 juillet 2020, par Andreas Rheinhardt
    avformat/segafilmenc : Don't store packet info in linked list
    

    Up until now, the Sega FILM muxer would store some information about
    each packet in a linked list. When writing the trailer, the information
    in said linked list would be used to write a table in the file header.
    Each entry in said table is 16 bytes long, but each entry of the linked
    list is 32 bytes long (assuming 64 bit pointer and no padding).
    Therefore it makes sense to remove the linked list and write the array
    entries directly into a dynamic buffer while writing the packet (this is
    possible because the table entries don't depend on any information not
    available when writing the packet (the offset is not relative to the
    beginning of the file, but to the end of the table). This also
    simplifies writing the array at the end (there is no need to traverse a
    linked list).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/segafilmenc.c
  • How to use ffmpeg and javascript for user to add input box inside of a video

    23 janvier 2016, par Donalda Donalda

    I work on my website and the problem i faces is that i cant find a working way to get the chance for a user to drag an input box and set it into video specifying duration for the item.

    so i have a video and a textbox and my problem is when i grag the box i want it to stck to the video and stay there.

    Code is here :

       
       
       
       <code class="echappe-js">&lt;script&gt;<br />
           function allowDrop(ev) {<br />
               ev.preventDefault();<br />
           }<br />
    <br />
           function drag(ev) {<br />
               ev.dataTransfer.setData(&quot;text&quot;, ev.target.id);<br />
           }<br />
    <br />
           function drop(ev) {<br />
               ev.preventDefault();<br />
               var data = ev.dataTransfer.getData(&quot;text&quot;);<br />
               ev.target.appendChild(document.getElementById(data));<br />
           }<br />
       &lt;/script&gt;


  • avformat/movenc, segafilmenc : Remove unnecessary avio_tell()

    16 janvier 2020, par Andreas Rheinhardt
    avformat/movenc, segafilmenc : Remove unnecessary avio_tell()
    

    When the faststart option for the mov/mp4 muxer is used, the current
    position (i.e. the size of the already written data pre-shifting) was
    evaluated twice : First in an initialization and then again later,
    overwriting the first value without having ever touched it. So remove
    the initialization.

    Also, the clone of this code in the Sega FILM muxer behaves the same and
    has been treated the same.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/segafilmenc.c