Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (6252)

  • ffmpeg map and filter_complex subprocess in python

    4 décembre 2015, par jlarsch

    I want to crop and re encode videos via ffmpeg from within python using subprocesses.

    I managed starting a subprocess using a pure string command and shell=True but I want to build more complex commands and would prefer to use shell=False and passing a list of arguments.

    So what works is this form (this is a simplified example, there will be multiple streams in the final version) :

    import subprocess as sp

    sp.Popen('ffmpeg.exe -i Test.avi -filter_complex "[0:v]crop=1024:1024:0:0[out1]" -map [out1] out1.mp4', shell=True)

    This script produces the expected cropped output video.

    For a list of arguments, I tried :

    FFMPEG_PATH = 'ffmpeg.exe'
    aviP='Test.avi'
    sp.Popen([FFMPEG_PATH,
    '-i', aviP,
    '-filter_complex', '[0:v]crop=1024:1024:0:0[out1]',
    '-map', '[out1] out1.mp4'])

    When I execute this second version, simply nothing happens. (no error, no output)

    I suspect I am messing up something in the map command syntax ?

  • Ffmpeg map and filter_complex subprocess - Python

    4 décembre 2015, par jlarsch

    I want to crop and re encode videos via ffmpeg from within python using subprocesses.

    I managed starting a subprocess using a pure string command and shell=True but I want to build more complex commands and would prefer to use shell=False and passing a list of arguments.

    So what works is this form (this is a simplified example, there will be multiple streams in the final version) :

    import subprocess as sp

    sp.Popen('ffmpeg.exe -i Test.avi -filter_complex "[0:v]crop=1024:1024:0:0[out1]" -map [out1] out1.mp4', shell=True)

    This script produces the expected cropped output video.

    For a list of arguments, I tried :

    FFMPEG_PATH = 'ffmpeg.exe'
    aviP='Test.avi'
    sp.Popen([FFMPEG_PATH,
    '-i', aviP,
    '-filter_complex', '[0:v]crop=1024:1024:0:0[out1]',
    '-map', '[out1] out1.mp4'])

    When I execute this second version, simply nothing happens. (no error, no output)

    I suspect I am messing up something in the map command syntax ?

  • FFMPEG command not running in script

    5 novembre 2012, par viv

    I have created a shell script to convert video, the command is working properly inside the shell script if the file to be converted is in the current directory, whereas if the file is inside directory then i am getting error.
    When I echoed the command inside script and ran it manually then it's running properly.

    Below is the command :

    ffmpeg -i $1 -strict experimental -vcodec libx264 -vf "scale=-1:$video_height" -y $tmp_file 2>&1

    Any ideas ?