Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (99)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • À propos des documents

    21 juin 2013, par

    Que faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
    Document bloqué en file d’attente ?
    Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)

Sur d’autres sites (8096)

  • doc : switch github urls to https

    12 mars 2014, par Michael Niedermayer
    doc : switch github urls to https
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/platform.texi
    • [DH] doc/protocols.texi
  • Revision 377b6682f9 : Disable vp9 _8_ loopfilters Investigating https://code.google.com/p/chromium/is

    20 décembre 2014, par Johann

    Changed Paths :
     Modify /test/lpf_8_test.cc


     Modify /vp9/common/arm/neon/vp9_loopfilter_neon.c


     Modify /vp9/common/vp9_rtcd_defs.pl


     Modify /vp9/vp9_common.mk



    Disable vp9 _8_ loopfilters

    Investigating https://code.google.com/p/chromium/issues/detail?id=443839

    Change-Id : Ibb7485d835c5aa5e1d40f31715596ba8d208eedb

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