Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (32)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (3312)

  • Are the av_free* functions in ffmpeg idempotent ?

    19 mars 2014, par Dan Hook

    Specifically I'm looking at avformat_free_context. In normal execution of my code, avformat_free_context is called appropriately. I would also like to call it in the destructor of a class, in case there was an exceptional case that caused the code using the AVFormatContext to return early. Do the ffmpeg free functions behave appropriately when called on already freed data structures ?

  • Can't able to combine mp4 videos using MP4Box

    30 décembre 2013, par rajeshkumar

    I am using MP4box to combine mp4(H264) videos, If two video will combine means, the videos are combine but the first video are repeating twice and its play. Before that i used FFmpeg to convert the mp4 videos as constant bitrate,dimensions etc. I thing that may problem occurs. I used the command as given below :

    ffmpeg -i inputfile.mp4 -r 25 -s 640x360 -ar 48000 -acodec copy -f mp4 -vcodec libx264 -vpre normal outputfile.mp4

    MP4Box -force-cat -cat outputfile1.mp4 -cat outputfile2.mp4 -new largeOutput.mp4

    Kindly suggest me any solution....

  • ffmpeg to create a slideshow results in very large file

    31 mars 2022, par GroovyDotCom

    I have a series of JPEG images named 0000.jpg 0001.jpg 0002.jpg...

    



    I used the following command to turn these into a slideshow video, each frame playing for 1 second.

    



    ffmpeg -framerate 1 -i %04d.jpg -c:v libx264 -vf fps=1 -pix_fmt yuv420p out.mp4


    



    This works fine except that the resulting video is 6x larger than what I get if I encode the exact same frames at normal framerate (e.g. 25 FPS)

    



    I'm looking for a way to effectively get the same efficient encoding as when encoding 25fps but with each frame showing for 1 second.