Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (111)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (9131)

  • 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};) \;
  • Automator shell script (using ffmpeg) won't run on other machine

    24 mai 2014, par kava

    I have an Automator patch that runs a shell script that calls ffmpeg on a 10.9.3 mac.

    I just try to call it via

    ffmpeg

    for test reasons without any arguments.

    but it returns

    ffmpeg: command not found.

    But I can open ffmpeg regularly from terminal AND I can run the script on my other machine (10.9.2)

    What’s wrong ?

    EDIT : I also tried to add :

    /opt/local/bin

    in the shell script to the path variable, but it still won’t run.
    also

    /opt/local/bin/ffmpeg -arguments....

    won’t run