Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (64)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8131)

  • ffmpeg for x264 core 136 lib in iOS [on hold]

    23 août 2013, par 官承翰

    I want to develop a service (written in php) to provide mobile platforms(iOS/android/..etc) or desktop PCs to stream videos.

    I have tried a lot and found.

    My iPhone4 didn't support core 136 lib based on x264...it would crash or freeze when I tried playing it.

    Here is my question :

    Can ffmpeg decode video so that iOS can play ?
    Or is there another way to solve it ?
    I am new to these things...

    Thanks in advance

  • ffmpeg for x264 core 136 lib in iOS [closed]

    23 août 2013, par 官承翰

    I want to develop a service (written in php) to provide mobile platforms(iOS/android/..etc) or desktop PCs to stream videos.

    I have tried a lot and found.

    My iPhone4 didn't support core 136 lib based on x264...it would crash or freeze when I tried playing it.

    Here is my question :

    Can ffmpeg decode video so that iOS can play ?
    Or is there another way to solve it ?
    I am new to these things...

    Thanks in advance

  • Conversion to yuv422p pixel format is incorrect

    13 mars 2023, par SOSparachuter1

    The setup :

    


      

    1. A camera that live streams h.264 encoded video via RTSP

      


    2. 


    3. An Android app that uses FFMPEG to grab H.264 packet fragments, convert it to mjpeg frames with pixel format yuv422.

      


    4. 


    5. A separate app that receives said jpeg images over udp, expects them to be in yuv422 pixel format, and displays the stream.

      


    6. 


    


    The bridge between all these components work perfectly, #2 gets frames and sends it to #3, and #3 verifies it receives. However, #3 would not display, and so upon closer inspection of the packets it receives, I discovered in the jpeg image header for every packet that the horizontal-vertical subsampling factor was not what is expected for YUV422. It's 0x22, despite the fact that for YUV422 we should expect halved horizontal chroma resolution (so we should expect 0x21)

    


    This is the ffmpeg command I use :

    


    ffmpeg -i rtsp://****:*** -vcodec mjpeg -pix_fmt yuv422p -f mjpeg udp://*******

    


    What could be going on ? Does the default codec just not support this conversion ?