Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (64)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9840)

  • reading lines from txt file into .csv

    7 janvier 2014, par Dynamite Media

    i have a .TXT file i created via batch file using ffmpeg. it returns the following info ( more but trying to make short)

    major_brand=isom
    minor_version=512
    compatible_brands=isomiso2avc1mp41
    creation_time=1970-01-01 00:00:00
    encoder=Lavf53.19.0
    genre=sport
    track=1
    title=IRWX_TV_Vol_01_1_Pt_4
    episode_id=0101

    the .TXT file comes back with 3 of these above. well i want to be able to only use some of the info above and then i want to create a .CSV file so that i can load into .XLS file

    I have used the following and it's close :

    REM now lets get info we need from result.txt
    pause

    REM checks how many times finds genre and loops that many times
    FOR /f "delims=" %%b IN ('findstr "genre" result.txt') DO (
    for %%f in (result.txt) do (
       set i=0

    for /F "delims= tokens=2,3*" %%l in (%%f) do (
       set /A i+=1
       set line!i!=%%l

    )
    echo  !line9!, !line6!, !line8!,  >> result.csv
    )
    )
    pause

    and this is coming back with the following :

    title=IRWX_TV_Vol_01_1_Pt_4 , genre=sport, episode_id=0101
    title=IRWX_TV_Vol_01_1_Pt_4 , genre=sport, episode_id=0101
    title=IRWX_TV_Vol_01_1_Pt_4 , genre=sport, episode_id=0101

    ONLY the 1st video title from .TXT file and not each of them

    AND i would prefer it to come back like this :

    IRWX_TV_Vol_01_1_Pt_4,sport,0101

    Minus the variables, the "=" and the space issues you see above.

    i have been going over and over this trying different things and it is just not working.

    Hopefully someone here can see the issue and help out, Thanks

  • Error while processing h.264 rtsp stream in opencv

    4 février 2016, par satinder

    My opencv code is perfectly open any video file and decently play it . But when I open the rtsp h.264 video stream then there have **following errors messages :

    Last message repeated 1 times
    [h264 @ 0x3a43420] decode_slice_header error
    [h264 @ 0x3a43420] no frame!
    [h264 @ 0x3a43420] non-existing PPS 0 referenced
       Last message repeated 1 times
    [h264 @ 0x3a43420] decode_slice_header error
    [h264 @ 0x3a43420] no frame!
    [h264 @ 0x3a43420] non-existing PPS 0 referenced**

    after 2-3 mins video is playing in opencv.

    But we know opencv use ffmpeg library for decode frame . So , I have an idea and I play that network rtsp stream with ffplay . Then ffplay decently play that stream after 2-3 message approx within 5 secs . So how I can solve opencv problem . Please anybody help for that.

  • aarch64 : Add asm for mbtree fixed point conversion

    24 avril 2016, par Janne Grunau
    aarch64 : Add asm for mbtree fixed point conversion
    

    pack is 7 times faster and unpack is 9 times faster on a cortex-a53
    compared to gcc-5.3.

    mbtree_fix8_pack_c : 41534
    mbtree_fix8_pack_neon : 5766
    mbtree_fix8_unpack_c : 44102
    mbtree_fix8_unpack_neon : 4868

    • [DH] common/aarch64/mc-a.S
    • [DH] common/aarch64/mc-c.c