Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (65)

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

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

  • Automatically match output file with input file (Applescript x FFMPEG)

    2 mars 2018, par Wallie

    I use the following AppleScript as an Automator Service to right click a video file in the finder and burn in a matching subtitle file (.ass) with an ffmpeg terminal command. In this case ffmpeg encodes a new Prores 422(HQ) file.

    on run {input, parameters}
    tell application "Terminal"
       activate
       set filesString to ""
       repeat with file_ in input
           set filesString to filesString & " " & quoted form of (POSIX path of file_)
       end repeat
       do script "for f in" & filesString & "; do  
    base=$f  
    ffmpeg -y -i \"$base\" -c:v prores -profile:v 3 -pix_fmt yuv422p10le -vf \"ass=${base%.*}.ass\" -c:a copy \"${base%.*}_sub.mov\";
    done"
       end tell
       return input
    end run

    Would it be possible to automatically match the output file and it’s codec to the input file ?
    We use a lot of different input formats due to a mixed windows / mac environment (Prores (mov), dnxhr (mxf/mov)) and I would like to not have 8-12 encoding options in the finder service menu’s of the workstations :).

    Thanks in advance !!

  • ffmpeg : relocation error : /usr/local/lib/libavcore.so.0 [closed]

    27 février 2013, par Pardis

    I installed ffmpeg successfully on my server (Linux) but after install mplayer I get following error when ffmpeg runs :

    root@server3 [/usr/local/src/ffmpeg-0.6]# ffmpeg
    ffmpeg: relocation error: /usr/local/lib/libavcore.so.0: symbol av_default_item_name, version LIBAVUTIL_50 not defined in file libavutil.so.50 with link time reference
    root@server3 [/usr/local/src/ffmpeg-0.6]#

    Anybody can guide resolve this issue ?

  • Minor change to iframe attribute ordering (making sure the .cboxIframe element is in the DOM when the callback fires).

    7 octobre 2012, par jackmoore

    m colorbox/jquery.colorbox.js Minor change to iframe attribute ordering (making sure the .cboxIframe element is in the DOM when the callback fires).