Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (49)

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

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5445)

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

  • V-Ray .exr to mp4 ffmpeg Stuttering

    8 octobre 2024, par OlivierArgentieri

    I have an issue using ffmpeg with V-Ray exr.

    


    I'm trying to export .mp4 from .exr, so ihave used this command

    


    


    ffmpeg.exe -y -start_number 1 -framerate 25 -i D :\temp\WAC_TEST\what_about_cooking_sq01_p040_rendering_main_publish_v000.%4d.exr -pix_fmt gbrapf32le D :/out_vray_exr.mp4

    


    


    I checked parameters using

    


    


    ffmpeg.exe -y -start_number 1 -i D :\temp\WAC_TEST\what_about_cooking_sq01_p040_rendering_main_publish_v000.%4d.exr

    


    


    Result :

    


    


    Input #0, image2, from Input #0, image2, from 'D :\temp\WAC_TEST\what_about_cooking_sq01_p040_rendering_main_publish_v000.%4d.exr' :
Duration : 00:00:02.00, start : 0.000000, bitrate : N/A
Stream #0:0 : Video : exr, gbrapf32le, 2840x1210 [SAR 1:1 DAR 284:121], 25 fps, 25 tbr, 25 tbn

    


    


    Finally, Exported video are unreadable by windows player and KMplayer
enter image description here

    


    I can play the video using VLC. but i got stuttering frame like this :
https://www.youtube.com/watch?v=C8MawpkKGfc

    


    To understand this behaviour i have export .exr sequence to .png and i got this
enter image description here

    


    I also tried this command with a simple cube animation using mantra on Houdini, it's just work perfectly, but if i export this cube animation using vray, i got stuterring frame and this strange behaviour.

    


    Thank you.

    


  • Ignore Connection Error on Multiple Rtsp Stream in FFmpeg

    17 décembre 2022, par Onur Külekci

    Sorry for my bad English. My problem is ;
ffmpeg command closes completely when one of the streams cannot be reached while multicasting. when it can't reach a single rtsp address, how can it ignore it and continue broadcasting from the others ?

    


    Example ;

    


    ffmpeg -i rtsp://5.63.151.4:443/atv/atv2 -map 0 c:\atv.flv -i rtsp://live.sabah.com.tr:443/ahaber/ahaber3 -map 1 c:\ahaber.flv


    


    if it can't reach the 2nd link, keep playing the first one

    


    Thank you !