Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (34)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (7112)

  • The FFmpeg-generated video mute after seeking it forward [closed]

    16 septembre 2022, par PersianMan

    The video mutes after seeking it forward. It was created with FFmpeg. When I play it normally (without seeking it), the audio played. I am a Linux user and test it with VLC media player and mpv.

    


    I generated it with this :

    


    ffmpeg  -i video.flv -i audio1.flv -i audio2.flv -i audio3.flv -i audio4.flv -i audio5.flv  -i audio6.flv  -i audio7.flv  -i audio8.flv  \
-filter_complex "\
[0:v]tpad=start_duration=29.429[v];\
[1:a]adelay=3654.0[a1];\
[2:a]adelay=53563.0[a2];\
[3:a]adelay=1148851.0[a3];\
[4:a]adelay=1313774.0[a4];\
[5:a]adelay=1373197.0[a5];\
[6:a]adelay=2061735.0[a6];\
[7:a]adelay=2736617.0[a7];\
[8:a]adelay=3387278.0[a8];\
[a1][a2][a3][a4][a5][a6][a7][a8]amix=inputs=8[a]"\
 -map "[v]"  -map "[a]"  -c:v libx264 -crf 23 -c:a mp3 -s 500x500 -shortest ./output.flv


    


    [1:a] and [5:a] is a main audio (other audio have small duration). If I seek after 1373197.0 ms, the video has been muted (when [5:a] must be played).

    


  • A Digital Media Primer for Geeks

    24 septembre 2010, par noreply@blogger.com (John Luther)

    Our friend Monty Montgomery (creator of the Vorbis audio codec used in WebM) has started a video series about digital media. The first episode is an excellent overview of "the technical foundations of modern digital media."

    You can stream WebM versions of the video in your favorite WebM-enabled browser or download it to your desktop and watch it one of many WebM-enabled media players. Supported browsers and players are listed on our site.

    There’s also a companion Wiki.

  • FFMPEG Wrapping a raw video stream with OGG (or another wrapper)

    9 juillet 2014, par Cykon

    I’m building an application which takes in a rawvideo stream (piped in from an ffmpeg instance), manipulates and reads the raw video data, and pipes the output to another ffmpeg instance for encoding. Everything works great, however I’ve been trying to think of a solution which would allow audio to be sent into my program as well.

    The Ogg container seems to have a great C library, and it appears as if there has been some movement to add support for raw video https://wiki.xiph.org/OggRGB

    My plan was to pipe in a stream formatted for Ogg, use libogg to demux it, after parsing through the video data and manipulating it... use libogg again to encode and pipe out.

    Unfortunately, FFMPEG throws an "Unsupported codec id in stream 0" error when asked to output OGG with rawvideo.

    My test ffmpeg command is as follows :

    ffmpeg.exe -i fs0.mp4 -f ogg -c:v rawvideo -pix_fmt rgb24 -s 192x144 -

    Any solutions, or alternative solutions are welcome. As a side note, my program has the ability to take in multiple videos at once and outputs a combination of the inputs.