Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (104)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6937)

  • 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