Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (2874)

  • Secure UDP broadcast with username and password using FFmpeg

    28 septembre 2017, par BlackRoot

    Is there any way to have a secure UDP broadcast with FFmpeg by requesting username and password.

    I’ve used this command to broadcast

    ffmpeg -f dshow -video_size 1280x720 -rtbufsize 702000K -framerate 30 -i video="Video (00-0 Pro Capture Quad HDMI)" -r 30 -threads 4 -vcodec libx264 -crf 0 -preset ultrafast -f mpegts "udp://192.168.1.12:6666"

    and I received it by open VLC using this

    udp://@192.168.1.12:6666

    How to provide a username and password to open this broadcast ???

  • how to provide login username and password to ffmpeg ?

    11 septembre 2012, par Lynx

    how can i provide username and password to ffmpeg to enable it to write data to some folder in ftp server ?
    the folder is protected by password and if possible i dont want to remove that password. so, can i simply just pass the password to ffmpeg ? or is there any other solutions ?

    example of ffmpeg process to create thumbnail from video file

    string thumbpath, thumbname, videofile;
    videofile = "Video Source path";
    thumbpath = "thumbnail path";
    thumbname = thumbpath + "20120910160600.mjpeg";

    string thumbargs = "-i \"" + videofile + "\" -vframes 1 -s 60*30 -ss 00:00:00 -f image2 \"" + thumbname + "\"";

    Process process = new Process();

    process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
    process.StartInfo.Arguments = thumbargs;

    process.StartInfo.UseShellExecute = false;
    process.StartInfo.RedirectStandardOutput = true;
    process.StartInfo.RedirectStandardInput = false;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.CreateNoWindow = false;
    process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

    New Learner,
    Please guide me....

  • avformat/ftp: do not break protocol on username or password with newlines

    6 février 2020, par Marton Balint
    avformat/ftp: do not break protocol on username or password with newlines
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/ftp.c