Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (62)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Decoding H.264 UDP stream

    24 février 2019, par user2422659

    I have to work with ’FFMPEG’ in order to decode ’UDP’ streaming(Not ’RTP’ or ’RTSP’) of raw ’h264’ video.address.
    So far i have compiled and make ’ffplay’ decode successfully a local ’h264’ file.
    Now i have to add support of that ’UDP’ listener who will get chunks of data.
    As far as i understand ’AVFormatContext.fileName’ gets a file name or ’RTSP’
    Any help ?
    what is the proper way to do this ?

    Thanks in advanced.

  • sdp : Add an option for sending RTCP packets to the source of the last packets

    13 août 2013, par Martin Storsjö
    sdp : Add an option for sending RTCP packets to the source of the last packets
    

    An SDP description normally only contains the target IP address
    and port for the packets. This means that we don’t really have
    any clue where to send the RTCP RR packets - previously they’re
    sent to the destination IP written in the SDP (at the same port),
    which rarely is the actual peer. And if the source for the packets
    is on a different port than the destination, it’s never correct.

    With a new option, we can choose to send the packets to the
    address that the latest packet on each socket arrived from.
    — -
    Some may even argue that this should be the default - perhaps,
    but I’d rather keep it optional at first. Additionally, I’m not
    sure if sending RTCP RR directly back to the source is
    desireable for e.g. multicast.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtsp.c
    • [DH] libavformat/rtsp.h
  • Disk [videos] does not have a configured driver

    25 septembre 2024, par oshakab

    I am trying to create a thumbnail using laravel and ffmpeg. But am getting this error.

    &#xA;&#xA;

    Disk [videos] does not have a configured driver.

    &#xA;&#xA;

    My code

    &#xA;&#xA;

    public function index()&#xA;{&#xA;    FFMpeg::fromDisk(&#x27;videos&#x27;)&#xA;        ->open(&#x27;steve_howe.mp4&#x27;)&#xA;        ->getFrameFromSeconds(10)&#xA;        ->export()&#xA;        ->toDisk(&#x27;thumnails&#x27;)&#xA;        ->save(&#x27;FrameAt10sec.png&#x27;);&#xA;    // $videos =  Videos::where(&#x27;user_email&#x27;, Auth::user()->email)->get();&#xA;    //  return view(&#x27;instructor.videos&#x27;)->with(&#x27;videost&#x27;, $videos);&#xA;}&#xA;

    &#xA;&#xA;

    What could be the solution. Thanks

    &#xA;