Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (110)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (15046)

  • Is there a way to stop ffmpeg from combining mp4s at max mp4 size ?

    3 janvier 2023, par Dray

    I am merging 64 gigs of mp4s together, though ffmpeg will go past the file size limit and corrupt it. Is there a way to stop ffmpeg at a 100 hour mark and create another file, resume, then repeat until finished ?

    


    This is my python code, with the ffmpeg code I used to generate the mp4. It works fine with less files/

    


    
from moviepy.editor import *
import os
from natsort import natsorted

L = []
total = 0
for root, dirs, files in os.walk("F:\door"):
    #files.sort()
    files = natsorted(files)
    with open("list.txt", "a") as filer:
            for file in files:
                if os.path.splitext(file)[1] == '.mp4':
                    filePath = os.path.join(root, file)
                    head, tail = os.path.split(filePath)
                    filePath = "file '" + str(tail)+"'\n"
                    print(filePath)
                    filer.write(filePath)
                    
                    #run in cmd: ffmpeg -f concat -i list.txt -c copy output.mp4



    


  • Combining an image sequence with audio and make a video

    10 avril 2017, par user2650277

    I am trying to take a video extract the frames and the audio.Then i do some compression on the frames and then i want to combine the image frames with the audio to create the video.

    1.Create frames from video based on fps (lossless)

    ffmpeg  -i  big_buck_bunny_480p_surround-fix.avi -q:v 1 ./vidtest/out%d.jpg

    The problem here is that the quality of the image is 94 based on graphicsmagick , how can i extract the frames at original quality.

    2.Getting the audio

    ffmpeg -i big_buck_bunny_480p_surround-fix.avi  -vn -acodec copy  big_buck_bunny_480p_surround-fix.ac3

    3.How do i combine the audio with the image sequences

  • fftools/cmdutils : add support for level flag in loglevel option parser

    3 avril 2018, par Tobias Rapp
    fftools/cmdutils : add support for level flag in loglevel option parser
    

    Allows to manage the AV_LOG_PRINT_LEVEL flag as a prefix to the loglevel
    option value, similar to the existing AV_LOG_SKIP_REPEATE flag. Adds
    support for setting flags relative to the existing value by using a
    prefix.

    Previous version reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Tobias Rapp <t.rapp@noa-archive.com>

    • [DH] fftools/cmdutils.c