Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (53)

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

  • 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

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

  • The frame count getted from FFmpeg is different from its splitting action result ?

    21 février 2020, par vividlipi

    I had executed these two commands, and I got confused by its unconsistent result.

    1. I got frame count through the command following :

      ffprobe -v error -count_frames -select_streams v:0 -show_entries stream=nb_read_frames -of default=nokey=1:noprint_wrappers=1 FPS30-536-CFR.mp4

      The result is 536.

    2. I fetched every frame and saved it to a directory :

      ffmpeg -i FPS30-536-CFR.mp4 ./frames/out%04d.jpg

      I got 537 pictures in the ./frames directory which numbers form 0001.jpg to 0537.jpg

    I had tried another video, the two results are maintained the same.

    Please give me some hints, thank you very much.

    Here is the video.

  • Anomalie #2743 : Un objet ayant un champ id_parent ne peut l’enregistrer via action/editer_objet.php

    7 décembre 2015, par realet RealET

    A priori, ça concerne aussi les boutons de création rapide pour créer un objet de même type ayant le même parent que l’objet en cours.

    Voir #3612

  • Is possible to call external action between file segmentation on FFMPEG

    10 janvier 2020, par Marcelo Ludovico

    When I use ffmpeg with -f segment format

    ffmpeg -f decklink -channels 16 -i "DeckLink Quad (channel_number)" -c:v h264 -s 1280x720 -b:v 1.5M -c:a mp3 -b:a 48K -f segment -segment_time 10 -segment_atclocktime 1 -strftime 1 "/output/path/%Y%m%d%H%M%S.mp4"

    it creates a sequence of h264 encoded mp4 files. Then I need to transcode this files to HEVC for storage/bandwidth saving reasons.

    At this point if I want to automate this process, I don’t always know when the segments are ready to be transcoded, which I do by :

    ffmpeg -y -i path + filename -map 0 -c:v hevc -b:v 500K -s 1280x720 -c:a aac -b:a 48K path + "converted/" + filename

    My question is :
    Is there a way to call anything external everytime ffmpeg opens a new file for writing ?

    Info : I can’t directly encode HEVC from input because I don’t have a capable GPU to do so, hence the CPU encoding is slower than the input stream, causing "buffer overrun" at the decklink input.