Recherche avancée

Médias (91)

Autres articles (51)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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 (4877)

  • How to add an additional (on top of the main) random audio track to a video using ffpmeg

    13 octobre 2022, par Axl Alert

    I need to add random audio tracks (1.mp3, 2.mp3, 3.mp3, 4.mp3) to video files (video1.mp4 -video10.mp4 ) using ffmpeg.

    


    enter image description here

    


    My code that doesn't work.

    


      

    1. I don’t understand how to add random to a variable in cmd so that it is used as a name

      


    2. 


    3. What filters need to be set in ffmpeg so that nothing breaks

      


    4. 


    


    set /a %%R=1+5*%random%/32768

FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO (

ffmpeg -i "%%G" -i "%%R".mp3 -map 0 -map 1 -c copy %%~nG.mp4

)


    


  • fftools/ffmpeg : stop accessing av_stream_get_parser() from the main thread

    18 août 2022, par Anton Khirnov
    fftools/ffmpeg : stop accessing av_stream_get_parser() from the main thread
    

    It races with the demuxing thread. Instead, send the information along
    with the demuxed packets.

    Ideally, the code should stop using the stream-internal parsing
    completely, but that requires considerably more effort.

    Fixes races, e.g. in :
    - fate-h264-brokensps-2580
    - fate-h264-extradata-reload
    - fate-iv8-demux
    - fate-m4v-cfr
    - fate-m4v

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_demux.c
  • avcodec/wavpack : Constify slice threads' ptr to main context

    23 juillet 2022, par Andreas Rheinhardt
    avcodec/wavpack : Constify slice threads' ptr to main context
    

    Modifying the main context from a slice thread is (usually) a data race,
    so it must not happen. So only use a pointer to const to access
    the main context.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/wavpack.c