Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (72)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12160)

  • fate : Add basic license header check

    27 septembre 2015, par Michael Niedermayer
    fate : Add basic license header check
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/Makefile
    • [DH] tests/fate-run.sh
    • [DH] tests/fate/source-check.sh
    • [DH] tests/fate/source.mak
    • [DH] tests/ref/fate/source
  • filesize is not growing as expected

    29 juillet 2019, par Oracy Martos

    I am trying to record a stream here on my machine to study ffmpeg library,
    but with(out) success.

    I have a file watcher to clean up bugged streams, that cleanup each 3 minutes files that have been not changed less then 3 minutes.

    The real problem is, if I use the command below :

    /usr/bin/ffmpeg -i http://sysrad.net:10090/ -y test.mp3

    this command doesn’t have any kind of codec or audio transformation, so my target file (test.mp3) become 256k quickly, but, if I use this command below :

    /usr/bin/ffmpeg -i http://sysrad.net:10090/ -y -b:a 8k -ac 1 -ar 11025 test.mp3

    My target file (test.mp3) keep 0k until the record has 256k, I am not sure if this is an Unix problem or ffmpeg problem.

    Other information, if I run in loop :

    while true; do wc -l teste.mp3; sleep 0.5; done;

    test.mp3 file keeps 0 rows, until has 256k size...

    I have no idea how to workaround that, to get the real time file size for each 1k that ffmpeg get from stream with those codecs, does you guys have any idea how can I handle that ?

    Thanks !!!!

  • Invalid buffer size, packet size 1447 expected frame_size 460800

    24 février 2017, par Thiruvarangan Vedantham

    I am trying to display raw video being captured from a capturing device using ffplay. The following command works fine :

    ’ffplay -fs -i /dev/video1’

    However, I need to rename the capture device to ’webcam’ and have added necessary UDEV rules and then trying to play using the following command :

    ’ffplay -s cif -pix_fmt yuv420p -f rawvideo /dev/webcam’

    This command gives me the following error :

    Invalid buffer size, packet size 1447 < expected frame_size 460800.
    Also tried :

    ’ffplay -fs -i /dev/web-cam’

    which gives me the following error :

    Invalid data found when processing input. Please help.

    Thanks in advance.