Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (45)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5709)

  • How to identify users in video file when streaming video ? [on hold]

    24 octobre 2017, par blackjak231

    I’m trying to find a solution to "secure" online video courses on a video streaming platform. The goals are the following :

    • Prevent easy download of video - OK
    • Be able to identify which connected user downloaded the video if it happens - NOK

    The server will be a Debian machine running PHP 7 and the "encryption" of the video will be done "on the stream" for each user.


    My question is for the second point. I’m unable to find a good solution for it. Here is what i thought of so far and the downsides :

    1. Add a watermark with the user’s name/email with "ffmpeg" on the whole video (in a corner)
      • Can be blurred and therefore useless
    2. Add an invisible digital watermark (inside the video file) with a tool (which i have not found yet)
      • Screen can be recorded and the invisible digital watermark lost.
    3. Add a watermark with the user’s name/email on 2 or 3 specific frames of the video while streaming using "ffmpeg"
      • Best solution from my point of view but no technical solution found so far.

    Do you have any recommendations on how to do this or a completely different approach to the problem ?

    I’m open to any third party video tool such as Vimeo or any other available.

    Thank you in advance for your help ! :)

  • FFmpeg command to add a single frame to the end of a video not working (resulting in zero-byte output file)

    21 juillet 2023, par Frost Dream

    I'm trying to add a single frame to the end of a video file without re-encoding using FFmpeg. After searching online, I came across a command that is supposed to achieve this using the concat demuxer. However, when I run the command, it only creates a zero-byte output file. I'm not sure what I'm doing wrong.

    


    Here's the command I'm using :

    


    ffmpeg -i input_video.mp4 -framerate 30 -loop 1 -i single_frame.png -filter_complex "[0:v][1:v]concat=n=2:v=1:a=0" -c:v libx264 -preset veryfast -crf 18 -c:a copy output_video.mp4


    


    The input_video.mp4 is the path to my original video file, and single_frame.png is the path to the image file containing the single frame I want to add. I expected the output video, output_video.mp4, to contain the original video followed by the single frame at the end, but it's just a zero-byte file.

    


    Am I missing something in the command ? Is there an issue with the concat demuxer approach for adding a single frame ? Any insights or alternative methods to achieve this would be greatly appreciated.

    


    Thank you !

    


  • FFMpeg - how to encode a F4M manifest file to mp4

    20 novembre 2015, par Roee

    I’m working on a project, where we want to encode flash videos to mp4 (for example, we want to encode a f4v file), and live-stream them (which means we can’t just download all the f4f files, then encode them to a single mp4 and just then stream it. The encoding and streaming has to be done while downloading the files).

    If the format of the flash video is flv for example, FFMpeg can do what I’ve described without any problem. I just give the address of the flv file to FFMpeg, and it encodes and streams it as mp4.

    But, if the format of the flash video is something more complicated as f4v (which gets downloaded as many f4f files), I don’t have a single url to give to FFMpeg as input - I have many addresses of f4f files. I don’t even know how many f4f files the video has before playing it - it looks like the flash player just fetches the next f4f file when needed.

    I read online that there is a manifest file (its extension is f4m), that "describes" to the flash player which f4f files it should download and play, and what’s their playing-order and everything.

    My question is - if I have the url of this f4m file, what should I do in order to encode all its f4f files to mp4 ?
    I’ve tried to give to FFMpeg just the f4m file as input, but it doesn’t know what to do with it...

    I’ll really appreciate any response that might help, as I’ve been working on this issue for few days now and I still haven’t found any answer...

    Thanks,
    Roee.