Recherche avancée

Médias (91)

Autres articles (36)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • 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 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

Sur d’autres sites (5924)

  • Best video format for video processing and converting to mp4

    29 août 2014, par Max Grigoriev

    I may have video in selected format and I should make some video changes - add logo to the whole video as example and then convert to mp4. Right now original file is in h.264/mp4 format too. As I understand to add logo original file should be decoded to frames then logo should be added and then frames should be encoded to H.264 and packed to mp4. Since I’m newbie in video processing maybe there’s a raw video format which removes decoding stage and it saves time and cpu ?

    Thanks

  • avconv audio and video out of sync

    28 juillet 2015, par bram_aerts

    I have a problem synchronizing audio and video using avconv.
    My goal is to process the video stream with opencv and later put the original audio back on the soundless video.
    The processed video stream will be at the same period of time as the original video, but will have a starting offset of a few minutes.

    I tried to simplify the problem with the following code :

    filename="inputvideo.mp4"
    avconv -i $filename -an -ss 30 test.mp4
    avconv -i test.mp4 -vn -ss 30 -i $filename -async 1 testmerged.mp4

    The second line removing the audio of the original video and shifting it 30 seconds (emulating what the opencv-code will do).
    The last line putting the video and original audio (shifted 30 seconds) back together.

    I assumed if I’d both shift them the same amount of seconds, they would be neatly synchronized, but curiously the video and audio in the resulting movie are out of sync. It is a static delay of about about 3 seconds (audio is behind).
    The same problem appears when making an interim mp3 file and using this as audio track for the resulting movie.

    When searching for a solution I found none that resolve this.
    I tried to overcome this issue by using the -vsync/-async options. But since there is no timestamp information in the video this doesn’t solve the problem.
    Even with the latest static build of ffmpeg the audio and video are still out of sync.

    Is there anything I overlooked or is it just impossible to sync audio and video in ffmpeg ?
    And if so, What would be a decent and simple replacement for the funcionality I’m looking for ?

  • wrong duration when copying audio from ts to mp2 audio

    20 décembre 2017, par Ahmed Fares

    When I copy audio from a .ts video file using ffmpeg with following command, the resulting audio file is shorter than the original file, because of the silent parts of the original file.

    ffmpeg -i InputFile.ts -vn -acodec copy OutputFile