Recherche avancée

Médias (91)

Autres articles (4)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (1470)

  • How to create a JavaScript code to convert a YouTube video to mp3 on a website ?

    2 octobre 2019, par Uyen_77

    How does one take a YouTube link and convert it to mp3 ? I’ve seen this done on a few sites like : https://y2mate.com/ and https://ytmp3.cc/

    How is code like this written ? I want to do this in JavaScript but not sure how to implement. The way I am trying to make the site is by writing the code like :

    1. Load with curl : https://youtube.com/Watch
    2. Parse json & extract url
    3. Download video to server
    4. Use ffmpeg to convert
    5. Send url to user
    6. Allow them to download the extracted audio

    Can someone show what the code for this would look like.

    If anyone knows of a better way to do this for a website please explain.

    Thank you

  • Cannot download youtube by ffmpeg

    3 mai 2022, par itil memek cantik

    Err when a youtube video was tried in such

    


    $ ffmpeg  -i 'https://youtu.be/NFTZbSU7X9I' -c copy  t.mp4


    


    it echos :

    


    https://youtu.be/NFTZbSU7X9I: Invalid data found when processing input


    


    What actually the cause and how to solve ?
thanks in advance

    


  • FFMPEG RTSP stream to Youtube, am i doing everything right ?

    5 août 2018, par F O X

    My htop processes

    Hello, i’m currently streaming my camera ip to a youtube, almost everything is okey but i just wonder if i’m doing everything right, as you can see at the image with just one stream there are two huge processes running splitted into several smaller once, shouldn’t be just one process running or at least not so many of them ?

    Also is my ffmpeg command fine for what i’m doing or should i add/delete something ?

     !/bin/bash

    DATETIME=date +%Y%m%d%H%M
    DATE=date +%Y%m%d

    echo="WE BE RUNNING !"

    while :

    do

    echo ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://192.168.1.22:555/11 -tune zerolatency -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -strict experimental -b:v 1000k -maxrate:v 400k -minrate:v 300k -f flv rtmp://YOUTUBE-ID-STREAM

    done

    EOF

    I’m doing it on Ubuntu Mate (16.04) with Raspberry 3 B+

    Thanks.