Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (65)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (8373)

  • Gstreamer basic tutorial gives blank screen

    11 novembre 2013, par user763410

    I have the following gstreamer basic tutorial. When I compile and run the program, I am only getting a blank screen. The same happens when I use mplayer, but I supply -vo x11 option to it and it works well(for mplayer). So, I am guessing the issue gstreamer is also the same. So, my question is..."What should I do to tell the program that my output driver is x11 ?" How do I get rid of the blank screen ?

    Thanks

    #include <gst></gst>gst.h>

    int main(int argc, char *argv[]) {
     GstElement *pipeline;
     GstBus *bus;
     GstMessage *msg;

     /* Initialize GStreamer */
     gst_init (&amp;argc, &amp;argv);

     /* Build the pipeline */
     /*
       pipeline = gst_parse_launch ("playbin2 uri=http://docs.gstreamer.com/media/sintel_trailer-480p.webm", NULL);
     */
       pipeline = gst_parse_launch ("playbin2 uri=file:///home/mylogin/gstreamerstuff/sintel_trailer-480p.webm", NULL);

     /* Start playing */
     gst_element_set_state (pipeline, GST_STATE_PLAYING);

     /* Wait until error or EOS */
     bus = gst_element_get_bus (pipeline);
     msg = gst_bus_timed_pop_filtered (bus, GST_CLOCK_TIME_NONE, GST_MESSAGE_ERROR | GST_MESSAGE_EOS);

     /* Free resources */
     if (msg != NULL)
       gst_message_unref (msg);
     gst_object_unref (bus);
     gst_element_set_state (pipeline, GST_STATE_NULL);
     gst_object_unref (pipeline);
     return 0;
    }
  • Unable to add watermark to uploaded video using protonemedia / laravel-ffmpeg

    24 avril 2021, par Kashif Anwar

    thank you for the amazing package, i am using it first time and i am stuck in it, maybe i am doing something wrong. I am trying to add a watermark on a video so users couldn't download the original video. below is my code to upload a video first and then add watermark to that video :

    &#xA;

    public function watermarkpost(Request $request)&#xA;{&#xA;&#xA;    if ($file = $request->file(&#x27;watermark&#x27;)) &#xA;    {      &#xA;       $name = time().str_replace(&#x27; &#x27;, &#x27;&#x27;, $file->getClientOriginalName());&#xA;       $file->move(&#x27;assets/images/products&#x27;,$name);           &#xA;    }&#xA;        FFMpeg::open(asset(&#x27;assets/images/products/&#x27;.$name))->addWatermark(function(WatermarkFactory $watermark) {&#xA;            $watermark&#xA;            ->open(asset(&#x27;assets/images/1571567292logo.png&#x27;) )&#xA;            ->right(25)&#xA;            ->bottom(25);&#xA;        });&#xA;   &#xA;    // return asset(&#x27;assets/images/products/&#x27;.$name);&#xA;}&#xA;

    &#xA;

    but i am getting below error :

    &#xA;

    Alchemy\\BinaryDriver\\Exception\\ExecutableNotFoundException(code: 0): Executable not found, proposed : ffmpeg at F:\\xampp\\htdocs\\GeniusCart\\project\\vendor\\alchemy\\binary-driver\\src\\Alchemy\\BinaryDriver\\AbstractBinary.php:159)&#xA;

    &#xA;

    Any help would be really appreciated

    &#xA;

  • Errors when use mps in NVDEC ?

    4 avril 2019, par johnsondeng

    I use ffmpeg compiled with cuda, support nvdec to decode h264 in gpu devices. MPS(https://docs.nvidia.com/deploy/mps/index.html) can share context with different processes, and this can use less gpu storage when use multi-process to decode h264 stream. But when I use ffmpeg in this mode, error got like this.

    Input #0, mpeg, from '/data/yt_traffic/media/nianjianbiao.mp4':
    Duration: 00:16:57.97, start: 7833.134000, bitrate: 4219 kb/s
    Stream #0:0[0x1e0]: Video: h264 (High), yuv420p(progressive), 1920x1080, 25 fps, 25 tbr, 90k tbn, 50 tbc
    File '1.yuv' already exists. Overwrite ? [y/N] y
    [AVHWDeviceContext @ 0x4444840] Could not initialize the CUDA driver API
    Stream mapping:
    Stream #0:0 -> #0:0 (h264 (h264_cuvid) -> rawvideo (native))
    Error while opening decoder for input stream #0:0 : Unknown error occurred

    But when mps is shutdown, ffmpeg works fine. Anyone can help ?