Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (16609)

  • Combine images to video stream

    8 mars 2016, par idementia

    Can anyone please tell what is the easiest way to complete topic task in android studio ?
    I found some solutions but was unable to set to work any of them.

    1. One suggestion was to use FFmpeg recorder like it’s described here. Problem is recorder takes only IplImage type. I tried to create IplImage with javacv.cpp.opencv_core, but it refers to java.awt.* stuff, which is not supported by android, so i catch crash. Moreover, using IplImage is highly unlikely because it is old format and because transformations of Mat (that’s type that i have) to IplImage takes a lot of formating steps with byte[], BufferedImage and other types of one to another.

    2. Another way i tried from here. It looked acceptable - to process multiple .jpeg to video stream with codecs. But as far as i understand problem is that FFmpeg is not provided as complete stand-alone SDK lib for android. And almost all web-links to source FFmpeg-files which could contain methods (like execFFMPEG) are already dead.

    In general, topic task must not be hard : to combine simple video stream with given set of images, fixed fps and video coder (i don’t even need audio stream). In practice, i’m already overheaded with tones of infos and still not a step closer to solution.
    Thanks in advance.

  • Adding Dynamic Progress Bar to FFMpeg Video Output (Mac) [closed]

    12 mai 2024, par saurav tripathi

    I'm trying to add a dynamic progress bar to the bottom of a video using ffmpeg on my Mac. Here's the command I'm currently using :

    


    ffmpeg -i "/Volumes/hard-drive/Auto-pilot-video/upload-ready-video/one-two-ka-four.mp4" -filter_complex \
"[0:v]drawbox=y=ih-20:color=yellow@0.5:width=iw*(t/606.15):height=20:t=fill[v]" \
-map "[v]" -map 0:a -c:a copy -preset fast output.mp4


    


    Question :

    


    enter image description here

    


    As you can see in the image right now, it just a fixed yellow bar at the bottom of the screen. But instead of just fixed at bottom I want a dynamically moving bar at the bottom.

    


    Is it possible to create a dynamic progress bar using ffmpeg filters on macOS ? If so, could you please suggest the appropriate filter(s) and their configuration for achieving this effect ?

    


  • ffmpeg was not found on your system in Azure service fabric application

    17 novembre 2023, par dotnet developer

    I have a stateless service fabric application, which uses ffmpeg.exe to convert video files. ffmpeg.exe is added to the project and it's properties set to Content & Copy always. When I install the app on Azure VM (Service Fabric 5 node cluster), it has been deployed to D :\SvcFab_App\Sample_App1\Sample.Code.1.0.0. (D drive is temp storage on Azure VM). When ever I try to convert a video file, I am getting ffmpeg.exe was not found on your system exception. I am able to convert files in development environment and on on-prem server without any exception.

    


    I tried to access ffmpeg.exe using Path.Combine(Directory.GetCurrentDirectory(), “ffmpeg.exe”) and Path.Combine(FabricRuntime.GetActivationContext().GetCodePackageObject(“Code”).Path, “ffmpeg.exe”)