Recherche avancée

Médias (91)

Autres articles (60)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7785)

  • ffmpeg - splitting TS file into shorter file by time

    20 janvier 2017, par Rob Eves

    I am trying to convert a very long .ts video file - into a much shorter mp4 file.

    The command I am using is :

    ffmpeg.exe -i "C:\Users\Rob\Desktop\230316.ts" -ss 00:05:08 -t 00:00:50 -c copy "C:\Users\Rob\Desktop\VideoSplitter\16.18.mp4"

    However, when running this, ffmpeg gets "stuck" and repeats the same line over and over in the terminal :

    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/
    frame=    0 fps=0.0 q=-1.0 size=     469kB time=00:00:50.01 bitrate=  76.8kbits/

    When I press CTRL+C to exit, I notice the new file has been created... however, only with audio and no video at all.

    Any ideas how to fix this please ? I am using the latest ffmpeg.exe.

  • Manipulating strings (file extensions) in bash using find

    26 mai 2016, par Darren Parker

    I’m having trouble manipulating strings in bash. I wish to re-write extensions.

    I have the following 2 files in a Downloads directory

    • Example 001.mkv
    • Example 002.mkv

    Using the script below I always get the same filenames returned without .mkv rewritten into .mp4.

    find /Downloads -name \*.mkv -execdir echo $(file={}; echo ${file/mkv/mp4};) \;

    I understand this isn’t all you need to re-format a file but this script is part of a larger script that is passed to FFMPEG.

    Here is the full command with FFMPEG.

    find /Downloads -name \*.mkv -execdir ffmpeg -i {} -vcodec copy -acodec copy $(file={}; echo ${file/mkv/mp4};) \;
  • Combining audio (.mp4) file and video (.webm) file to a new (.mp4) file using python [closed]

    3 mai 2020, par D. Damyanov

    How can I merge .webm video file and a .mp4 audio file to a new .mp4 audio/video file using python ? I tried to use the ffmpeg package for PyCharm but I am having troubles with finding the right documentation. On the official site https://ffmpeg.org/ I`ve found only instructions for usage in the terminal or cmd.