Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (101)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (17353)

  • Nginx allow only my domain to access a video url

    4 septembre 2019, par Bruno F

    i’m setting up a web server that contains live video streaming embed into the html5 video tag. My workflow is to grab the rtsp video from an ip camera, decode it to a HLS format using ffmpeg and send the video to my server.
    Nginx allows access to the video through a url, which I put in my video tag as a source.

    Everything works perfectly, the only problem is that anyone can access the URL of the video and put that URL on their website without my permission.

    Is there any way to only allow my domain to access, and block for example www.domain2.com to put it into their video tag or other framework thath they use ? i’m think Nginx can do the job maybe.

    Here are the codes of Nginx and my html in case is needed.

    HTML :

    <video class="video-js vjs-default-skin vjs-big-play-centered vjs-fluid" controls="controls" preload="none">
    <source src="//mydomain.com/live/stream.m3u8" type="application/x-mpegURL"></source>
    </video>

    Nginx :

    location /live {
               types {
                       application/vnd.apple.mpegurl m3u8;
               }
               limit_conn addr 5;
               alias /home/stream;
               add_header Cache-Control no-cache;
               add_header 'Access-Control-Allow-Origin' '*';
       }

    Many thanks guys !

  • how to parse Access Unit in h.264

    24 septembre 2014, par user2406774

    I am working in a project that needs to cut some Access units in H.264 raw elementary stream,for example remove 4 access units and play the remaining video .

    For this I took Access unit Delimiter (NAL Unit Type:9) as boundary for Access Unit and cut the video but the video ended with packet loss. But if I took Sequence parameter set (NAL Unit type :7) as boundary, resultant video playing without any packet loss.
    Some one please help me how to solve this issue : where shall I cut the video ?

  • Can you access a picked StorageFile from its Path ? - UWP

    17 août 2020, par HooptyDoopty

    I need to be able to access a file from it's path in a UWP application.

    &#xA;

    The file is first selected by the user using OpenFilePicker. I then need to pass this file on to an FFmpeg wrapper that sets its input from a file path. Currently, I get access denied errors for any file that is outside the apps local storage (as expected).

    &#xA;

    FileOpenPicker filePicker = new FileOpenPicker();&#xA;filePicker.ViewMode = PickerViewMode.Thumbnail;&#xA;filePicker.FileTypeFilter.Add("*");&#xA;&#xA;&#xA;var file = await filePicker.PickSingleFileAsync();&#xA;&#xA;&#xA;FFMpegArguments&#xA;   .FromInputFiles(file.Path.ToString())&#xA;

    &#xA;

    Is there a way to retain the apps permission to this file when it is accessed by a path string (file.Path.ToString()) rather then a storage file instance ? Have been looking into FutureAccessList but that seems to only provide another storage file instance later rather then allow for path access to the same file. I'd like to not enable broad file system access as I only need access to a single file that has already been picked by the user.

    &#xA;

    Thanks !

    &#xA;