Recherche avancée

Médias (91)

Autres articles (103)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (8610)

  • Some seconds of video getting skipped while using ffmpeg source code [on hold]

    30 juin 2017, par Swapnil Konde

    I am using transcoding.c file of ffmpeg Example for creating chunks of videos in .ts format,

    And we are observing some frames/seconds are skipped from Actual Video.
    Can Anyone point out where exactly we should focus on.
    We are using latest ffmpeg version 3.3.2.
    Sometimes we do get Generic error in an external library error as well in encode_write_frame function.

    Thanks.

  • How can you only extract 30 seconds of audio using ffmpeg

    14 juin 2017, par Jaggu

    I am using ffmpeg for audio conversion. I am using this command :

    ffmpeg -i file.mp3 file.wav

    This works fine. However I only want to my output file to contain maximum 1 minute of audio. How can I do that using ffmpeg ?

  • Merge video and audio while delaying audio by x seconds

    9 juin 2017, par user3552325

    This works for merging audio and video

    ffmpeg -i video.mp4 -i audio.ogg -filter_complex "[0:a][1:a]amerge=inputs=2[a]" -map 0:v -map "[a]" -c:v copy -c:a libvorbis -ac 2 -shortest out.mp4 -y -nostdin

    I can’t figure out how to delay the audio so it starts x seconds into the video. I have tried -itsoffset but it doesn’t work.