Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (38)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4159)

  • AutoKill process on Centos 6.5 Using WHM

    30 janvier 2014, par Will R.

    I have 3gp files that are uploaded to my server via php.
    From there FFmpeg will convert the 3gp files to mp3 files.
    Sometimes the 3gp files are corrupt and FFmpeg will hang on that file and max out that core until the process is killed manually via WHm using the process manager.

    There have been times when several of these files bring the server to a grinding halt because ffmpeg has maxed out all cores.

    Is there a plugin or script or something I can install on the server that can auto kill any process that exceeds a certain amount of time and 90% cpu ?

    Centos 6.5 Using WHM I have root access.

  • Find files that have been only once modified in last 24 hours [duplicate]

    4 janvier 2020, par Vijay Chandra

    I’m using this command to get all modified files in the last 24 hours on Ubuntu.

    find -type f -name "*.mp4" -mtime -1 -printf "%f\n"

    How can I modify this to detect that a file has been modified more than a single time ? And if so, ignore it.

    I need this to create a watermarking script which will find the latest files within 24 hours and save the list to a text file and with the help of this text file, I use ffmpeg to watermark the videos and move them to the original location.

    If I do this, the find command considers the new updated video as a modified file and adds the watermark repeatedly.

    My code is attached below :

    #!/bin/bash
    find -type f -name "*.mp4" -mtime -1 -printf "%f\n" >> filename='/home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/file.txt'
    all_lines=`cat $filename`
    for item in $all_lines; do  
     cp $item /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp
     ffmpeg -i $item -i watermark.png -filter_complex "[1][0]scale2ref=w='iw*30/100':h='ow/mdar'[wm][vid];[vid][wm]overlay=(main_w-overlay_w):(main_h-overlay_h)"
    -y /home/domain.com/public_html/admin_panel/public_html/uploads/mp4/temp/$item
    done
  • building static ffmpeg library for Android under windows 7

    29 mai 2013, par Zhenya

    I know that this has been asked several times, but I've never found any clear step by step and conclusive answer.

    How can I compile ffmpeg for Android, under windows 7 ?
    What are the steps ? Is there a project or wiki on the internet where to find this ?

    All I've found are steps to run under Ubuntu, or purely linux, but nothing to generate a static library for android, to be build under windows 7.

    Thanks