Recherche avancée

Médias (91)

Autres articles (46)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (4826)

  • Anomalie #4097 : bug HTTPS dans la fonction url_de_base() sur certains serveurs mal configurés

    16 février 2018, par Fil _

    ça a l’air plutôt logique

  • Http 400 error : requesting https site with ip instead of hostname Android

    8 novembre 2016, par David Barishev

    Im am developing an android application using xamarin.android.
    In my application i use ffmpeg as a static library, from here.

    In my app i try to access a https site, but i was getting a dns error until i read the documentation, it stated that :

    A limitation of statically linking glibc is the loss of DNS
    resolution. Installing
    nscd through your package manager will fix this or you can use
    "ffmpeg -i http://<ip address="address" here="here">/"</ip> instead of "ffmpeg -i http://example.com/"

    So i tried to lookup the ip address and just replace the hostname. Here is the code i have written :

    ...
    //part of main program
    if (inputUrl.StartsWith("http"))
    {
      var splits = inputUrl.Split('/');
      var hostName = splits[2];
      var ip = GetIpForHost(hostName);
      splits[2] = ip;
      inputUrl= string.Join("/",splits);
    }
    //calling ffmpeg with the new url
    ...

    private static string GetIpForHost(string hostname)
    {
       System.Net.IPHostEntry host = System.Net.Dns.GetHostEntry(hostname);
       return host.AddressList.First().ToString();
    }

    The code works fine, but now i’m getting different error, here is the ffmpeg log :

    [https @ 0xb2b08e0] HTTP error 400 Bad Request

    The original url i tried :

    https://r8---sn-ivuoxu-ua8l.googlevideo.com/videoplayback?pl=26&amp;itag=22&amp;mt=1478622247&amp;ms=au&amp;ei=Mv0hWLWEAs-VW7zch6AB&amp;mv=m&amp;upn=DLluZN9oSzo&amp;mn=sn-ivuoxu-ua8l&amp;expire=1478644114&amp;mm=31&amp;ratebypass=yes&amp;id=o-AC_NwrGbkh5OVe-ypJh2WaxzMBK5grMVsSYyG_wMQVZI&amp;ip=5.29.246.6&amp;pcm2cms=yes&amp;key=yt6&amp;lmt=1478408938763105&amp;dur=229.575&amp;initcwndbps=2682500&amp;ipbits=0&amp;gcr=il&amp;requiressl=yes&amp;sparams=dur,ei,gcr,id,initcwndbps,ip,ipbits,itag,lmt,mime,mm,mn,ms,mv,pcm2cms,pl,ratebypass,requiressl,source,upn,expire&amp;mime=video/mp4&amp;source=youtube&amp;signature=0E47DFC7FBBDBCD6F36B56FB9871ED3B0DF4D12A.103BAB44FFEE918B78C7D076243B45AF69C444EC
    //Modifed url
    https://213.57.23.19/videoplayback?ratebypass=yes&amp;ipbits=0&amp;pl=26&amp;requiressl=yes&amp;mime=video/mp4&amp;expire=1478643396&amp;pcm2cms=yes&amp;mt=1478621598&amp;upn=mUgYIoXd3Dc&amp;itag=22&amp;mm=31&amp;mn=sn-ivuoxu-ua8l&amp;key=yt6&amp;ip=5.29.246.6&amp;dur=229.575&amp;source=youtube&amp;lmt=1478408938763105&amp;ei=ZPohWKzbFoG9cpGGsIgH&amp;id=o-AFbYd2BFoMp37bNWC1c0mtfqEwcwbQaNXrF2WraCeK2W&amp;ms=au&amp;gcr=il&amp;mv=m&amp;sparams=dur,ei,gcr,id,initcwndbps,ip,ipbits,itag,lmt,mime,mm,mn,ms,mv,pcm2cms,pl,ratebypass,requiressl,source,upn,expire&amp;initcwndbps=2657500&amp;signature=BFB25E20CD92AA3B85D115DB878F0BC2E94A1BF4.C36FBD7733D2CAF1E277FF3B625BED432822C012: Server returned 400 Bad Request

    I have no problem accessing the original url through the browser, at the time i ran the program(There is a expired tag in the url,since i’m generating it at runtime).

    I speculate that it’s not possible to connect via https through ip ?
    Is there another way to connect to the url without the hostname, since android does have build in dns resolution, since i am able to view the url through the browser ?

  • Révision 23929 : Report de [23926] ; voir aussi https://core.spip.net/issues/3924

    28 février 2018, par booz@rezo.net