Recherche avancée

Médias (91)

Autres articles (67)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (5253)

  • How to view the stream generated from mkvserver via ffplay ?

    18 juin 2019, par Chaitanya Bhardwaj

    I want to live stream from one source(ffmpeg) to multiple clients for which I’m using mkvserver.
    I’m able to live stream a webcam from ffmpeg(client) to mkvserver(server) as follows :

    On Server :

    nc -l  | ./server

    On Client :

    ffmpeg -f avfoundation -framerate 30 -i 0 -b 900k -f matroska -r 20 tcp://:

    To view the genereted steam on server, I used the ffplay as :

    ffplay tcp://:<port>
    </port>

    but I got the Connection timed out error. Please suggest a way to view the generated stream on the server via ffplay. Thanks !

  • 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.

    &#xA;

    I generated it with this :

    &#xA;

    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  \&#xA;-filter_complex "\&#xA;[0:v]tpad=start_duration=29.429[v];\&#xA;[1:a]adelay=3654.0[a1];\&#xA;[2:a]adelay=53563.0[a2];\&#xA;[3:a]adelay=1148851.0[a3];\&#xA;[4:a]adelay=1313774.0[a4];\&#xA;[5:a]adelay=1373197.0[a5];\&#xA;[6:a]adelay=2061735.0[a6];\&#xA;[7:a]adelay=2736617.0[a7];\&#xA;[8:a]adelay=3387278.0[a8];\&#xA;[a1][a2][a3][a4][a5][a6][a7][a8]amix=inputs=8[a]"\&#xA; -map "[v]"  -map "[a]"  -c:v libx264 -crf 23 -c:a mp3 -s 500x500 -shortest ./output.flv&#xA;

    &#xA;

    [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).

    &#xA;

  • gstreamer vaapih264enc generated ts segment dont play on AVPlayer

    21 juin 2022, par Guru Govindan

    I have a pipeline that transcodes an rtsp stream into hls segments. The manifest is playable in browsers(with hlsjs) and ffplay and VLC. However when I play the stream or individual ts segments in Quicktime player or my IOS App that uses avplayer, it doesnt work.

    &#xA;

    This seems to be an issue only with vaapih264enc. When I try the same with software encode like x264enc it works fine.

    &#xA;

    The following is a simple pipeline where this is reproducible.

    &#xA;

    GST_DEBUG=3 gst-launch-1.0 rtspsrc location=&#x27;rtsp://user:pass@10.10.10.12:554/&#x27; name=rtpsrc0 \&#xA; rtpsrc0. ! rtph264depay ! queue ! decodebin ! vaapih264enc ! mpegtsmux name=mux ! filesink location=mymux.ts \&#xA; rtpsrc0. ! decodebin ! queue ! fdkaacenc ! mux.&#xA;

    &#xA;

    when I run the following command to copy the encoded stream as is from the generated ts segment it works

    &#xA;

    ffmpeg -i mymux.ts -c copy mymux_ffmpeg.ts&#xA;

    &#xA;

    Is the ffmpeg adding some additional header information that the quicktime player is happy with ?

    &#xA;

    I appreciate any help with this.

    &#xA;