Recherche avancée

Médias (91)

Autres articles (19)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (4101)

  • lavc/decode : stop mangling last_pkt_props->opaque

    9 mars 2023, par Anton Khirnov
    lavc/decode : stop mangling last_pkt_props->opaque
    

    It is currently abused to store packet size, which breaks
    AV_CODEC_FLAG_COPY_OPAQUE.

    Use stream_index instead, which is unused in libavcodec and has the
    same type as size.

    Found-by : Martin Storsjö

    • [DH] libavcodec/decode.c
  • 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



    


  • fftools/ffmpeg : stop handling max_frames in do_video_out()

    25 octobre 2022, par Anton Khirnov
    fftools/ffmpeg : stop handling max_frames in do_video_out()
    

    Frame limiting is now handled using sync queues. This code prevents the
    sync queue from triggering EOF, resulting in unnecessarily many frames
    being decoded, filtered, and then discarded.

    Found-by : U. Artie Eoff <ullysses.a.eoff@intel.com>

    • [DH] fftools/ffmpeg.c