Recherche avancée

Médias (91)

Autres articles (75)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

  • 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

Sur d’autres sites (6553)

  • Audio conversion of CAF file

    13 février 2017, par John

    I am recording audio on the iPhone to a CAF file with kAudioFormatiLBC, the recording works fine.

    I want to be able to take a sample and also get it to convert to other formats after I have uploaded it to by ruby on rails webservice.

    I am trying to use sox but get :

    sox in.caf out.mp3<br /><br />
    sox FAIL formats: can't open input file `in.caf': Supported file format but unsupported encoding.

    Similar with ffmpeg I get :

    Unable to find a suitable output format for 'in.caf'

    Any ideas ?

    Thanks

  • FFmpeg C API - seek through live stream

    29 mai 2014, par Erik Villegas

    I’ve opened a live RTMP stream using FFmpeg’s C library, and I need to programmatically seek to the very end of the stream. This is after the stream is paused for an indeterminate amount of time. The closest I could get is the following :

    av_seek_frame(pFormatCtx, -1, pFormatCtx->duration, 0);
    avcodec_flush_buffers(pCodecCtx);

    But the duration is 0 for live streams. Any ideas ?

  • How to split accurately a LONG GOP video (h264/XDCAM...) with FFMPEG ?

    29 août 2013, par Manuhoz

    My goal is to split a XDCAM or a H264 video, frame-accurately, with ffmpeg.
    I guess that the problem comes from its long GOP structure, but I'm looking for a way to split the video without re-encoding it.
    I apply an offset to encode only a specific section of the video (let say from the 10th second to the end of the media)
    Any ideas ?