Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

Sur d’autres sites (5908)

  • Install FFMPEG Linux 5.2 without root [on hold]

    30 janvier 2017, par Julio Mac

    I want install FFMPEG to Linux 5.2 without access root, is possible ?
    I use a server to host a website.
    I have access only access to the directory public_html to host the website.
    Is possible install the FFMPEG.

    Thanks very much.

  • Extract just the audio link from a youtube video without converting

    19 janvier 2017, par kamron shaw

    I know there are hundreds of sites to convert youtube video to mp3. Most of them do it by first downloading the video and then converting it to mp3(or any other audio format) on their server using youtube-dl, ffmpeg or similar programs.

    What I want to know is, is there any way I can just extract the audio link for any youtube video ? I don’t know if it’s possible but I saw a couple of websites doing it .

    First Website : Openaisearch.com
    This website simply gives a download link for the audio(getting it from youtube videos). I searched for a song and saw the download url, it looked something like this :

    https://redirector.googlevideo.com/videoplayback?source=youtube&requiressl=yes&clen=3814013&upn=dzwY9aUVYME&lmt=1469875393441562&expire=1484854959&mime=audio%2Fmp4&nh=IgpwcjAxLnNlYTA5Kg01Mi45NS4yMTYuMTAy&itag=140...........

    I believe that this is not done by first downloading and converting the video to audio format(Correct me if I am wrong).
    Although the file which gets downloaded after using this link is without any extension, but adding ".m4a" at the end of downloaded file does the work.

    Second Website : http://keepvid.com/ ?url=https ://www.youtube.com/watch?v=PT2_F-1esPk

    Again similar website with similar audio link. You can check by visiting the URL and see link of audio files.

    Any idea how these websites get that "googlevideo.com" link ? Do they scrap the youtube video links or something ?

    Thanks.

  • Ffmpeg MP4 to HLS and Hosting

    22 février 2017, par Dave

    I am new to the world of FFmpeg. I’m currently transcoding my example.mp4 file to Hls with the following command.

    ffmpeg -i example_video.mp4 -hls_time 10 -hls_list_size 0 -strict -2 output_video.m3u8

    Once I execute this command the transcoding process starts and I get the a list of the following output :

    output_video.m3u8
    output_video0.ts
    output_video1.ts
    output_video2.ts
    output_video3.ts
    output_video4.ts

    I want to host this on my website so users can see the video.

    My question is, is the process of converting the mp4 to hls finished at this point ? Also how should I host this on my website, Should I bundle all these files in one directory and stream the video from the output_video.m3u8 file ?