Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6154)

  • Only trim video without encoding laravel ffmpeg

    1er mai 2021, par gyd128

    I would like to ask if the possibility of using ffmpeg laravel in such a way that when cutting a movie it does not convert it to mp4 a second time ? I'm sending the code as it looks at the moment. There is an option on github to use CopyFormat, use ProtoneMedia \ LaravelFFMpeg \ FFMpeg \ CopyFormat; unfortunately it doesn't work on my example. Maybe someone will be that good and guide me to the answer. Sorry for my English

    


      $ffmpeg = \FFMpeg\FFMpeg::create();
        $video = $ffmpeg->open('../../filmy/'.$path);
        $video->filters()->clip(\FFMpeg\Coordinate\TimeCode::fromSeconds($start), \FFMpeg\Coordinate\TimeCode::fromSeconds($end));
        $video->save(new \FFMpeg\Format\Video\X264('libmp3lame'), '../../filmy/conversion/s.mp4');


    


  • Revision 6e5e75fa21 : Revert "Removing redundant variables from variance_test.cc." This reverts commi

    8 mai 2014, par James Zern

    Changed Paths :
     Modify /test/variance_test.cc



    Revert "Removing redundant variables from variance_test.cc."

    This reverts commit 4725ab7e51a69bf890856e524c6d78aadd97d64e.

    The constants are necessary to avoid breakage in vs9 builds :
    warning C4180 : qualifier applied to function type has no meaning ; ignored
    error C2436 : ’f2_’ : member function or nested class in constructor initializer
    list
    while compiling class template member function
    ’std::tr1::tuple::tuple(const int &,const int
    &,unsigned int (__cdecl &))’
    ..\test\variance_test.cc : see reference to class template instantiation
    ’std::tr1::tuple’ being compiled

    Change-Id : Ia218b74fc473d40f02fee84cb7009adfbe82e5a7

  • Capturing frames from an h264 stream with gst/ffmpeg

    17 août 2016, par Yuval.Sightec

    I want to save (as jpegs) or reach the data of the frames streaming from my usb camera.
    Meaning that I want to use the h.264 hardware encoding (I running it on nvdia jetson) in order to get a sequence of compressed files (I prefer not save it on the disc and get an array, if possible).
    Can I do that ?

    So far I tried this :

    gst-launch-1.0 -v v4l2src device=/dev/video0 ! video/x-h264,framerate=30/1,stream-format=byte-stream ! decodebin ! videorate ! video/x-raw,framerate=30/1 ! videoconvert ! jpegenc ! multifilesink location=img_%04d.jpg

    but I get an internal data flow error from v4l2src0 element, and an error from gst_base_src_loop() after the pipeline was set to PLAYING.

    Can anybody please help me ?

    b.t.w- It doesnt have to be neccecerly h.264 encoding, it also can be mpeg encoding or something else : I want to use the fact that it is pictures of a video, frames, in order to get smaller size frames.

    Thank you so much !