Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (8432)

  • FFmpeg c++ how to get the timestamp, in seconds since epoch that a frame was taken at

    29 août 2017, par Derek Halden

    I’ve been looking around for this, and Can’t seem to find it. I have an RTSP stream that I am pulling from using ffmpeg. Objects at my disposal include an AVPacket, AVFrame, AVCodecContext, and an AVFormatContext . I would like to get the absolute time that a frame was taken at. (ideally with granularity as small as milliseconds, though that’s not completely necessary).

    Is there an easy way to do this using the ffmpeg libraries ? I’ve looked at av_frame_get_best_effort_timestamp as well as codec_context->time_base, but that seems to give the answers in seconds since the beginning of the video, and I don’t necessarily know when the video started.

  • ffmpeg cutting the last 2 seconds of audio

    22 août 2017, par Banner

    When I record both audio and video using ffmpeg the audio recording cuts out for the last two seconds of the video.

    ffmpeg \
        -f v4l2 -i /dev/video0 \
        -f alsa -i hw:2 \
        samples/video.mp4

    I have tried using different audio and video codecs, as well as different video formats and I, have noticed that mpg format instead of mp4 the audio works better.

    I have also tried using different codecs with the mp4 and checked the compatibilities wikipedia but they don’t seem to matter much.

  • FFmpeg -c copy removes video for few seconds

    11 août 2017, par E.SK

    If I do something like this
    ffmpeg -i pumped.mp4 -ss 6.14  -t 0.47 -c copy  -y guiltycutshort.mp4

    then the mp4 file will be audio only. If i make the duration longer, then the first bit of the file is audio only then it goes into audio and video. I need to use -c copy because when seeking I am otherwise not getting precise accurate durations.