Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

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 (5737)

  • 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 ?

  • How to Run FFPlay from lua ?

    25 avril 2016, par NSA

    I have put together a windows C++ based lua shell application to test my media server. As part of this I need to launch FFPlay and have it play rtsp uri’s. I have tried :

    os.execute('ffplay.exe rtsp://uri')

    And I have tried creating a C++ hook into my shell where I added a C++ function that then did :

    system("ffplay.exe rtsp://uri");

    Unfortunately in both cases FFPlay starts but doesn’t create a window with the video in it. I am able to confirm that FFPlay is running by checking the list of processes running. Can explain how I can run FFPlay from my process and get it to create its video window on windows ?

    Thank you

  • How to use my FFMPEG code in Automator (Mac)

    23 juin 2023, par 3EK

    I have an ffmpeg code that converts .mov files to .mp4 files. I would like to set up a 'watch folder' system on my mac, so that when I drop files into a specific folder, it will automatically convert the file using my FFMPEG code.

    


    I have tried to add my FFMPEG code into the Automator app (mac) as a shell script, but it did not work and gave me the error *"The action “Run Shell Script” encountered an error : “zsh:3 : no matches found : .mov”"

    


    The FFMPEG code that I am using is...

    


    for i in *.mov; do ffmpeg -ss 4 -i "$i" -c:v libx264 -preset ultrafast -b:v 20M -vf format=yuv420p -c:a aac "mp4/${i%.*}.mp4"; done;


    


    Is anyone able to help me work out why this is not working please ?

    


    Greatly appreciated !

    


    Best,
John