Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (71)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5575)

  • Keeping video file playable while recording to it

    14 février 2023, par omerfirmak

    I am trying to stream a file , starting from an arbitrary position , that i am recording to at the same time. But until i stop recording the file seems to be not playable.

    



    Recording

    



    gst-launch-1.0 -e videotestsrc ! x264enc ! mp4mux ! filesink location=test.mp4


    



    Streaming from udp, starting from minute 1.

    



    ffmpeg -i  test.mp4 -re -ss 00:01:00 -f mpegts udp://127.0.0.1:1453


    



    ffmpeg says moov atom not found and just quits.
After I stop the recording pipeline. Its works as expected.

    



    Thank you all in advance.

    


  • How can i add audio at specific time/Frame in FFmpeg ?

    22 décembre 2023, par Mickey S

    I have audio that i am adding (without Re-encode) in mute video file, in starting i have intro which has no sound and i want to add audio file after that time/frame , after searching so hard i only found this command useful,
ffmpeg -y -i file.mp4 -itsoffset 00:00:05 - i file.wav -map 0:0 -map 1:0 -c:v copy -preset ultrafast -async 1 out.mp4

    


    it does the job but the problem is , its not precise , it is kind of mismatch because audio is supposed to be starting at 4.840 seconds but its not possible with this command, please suggest me something to solve my problem :(

    


    Thanks

    


    I tried on Reddit, various command site etc.

    


  • FFMPEG extract every nth frame, and every n+1 frame from a video

    20 juillet 2022, par Upsurge

    I want to extract every nth frame from a video, and the consecutive frame following the nth frame extracted.

    


    Right now I have this to extract every nth frame, but I would like to modify it to extract the consecutive frame too.

    


    "select=not(mod(n\,13)"

    


    I have tried running FFMPEG a second time with a different starting frame index to achieve the same results, however this approach was inefficient and did not work as expected. FFMPEG still counted every frame in the video, instead of from the starting frame.