Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (77)

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7497)

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

  • 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 !

    


  • 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 ! :)