Recherche avancée

Médias (91)

Autres articles (30)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

  • ffmpeg/PHP - Problems converting any video format to ogg - Choppy Video / No Audio - win64

    9 août 2013, par IIIOXIII

    Let me first appologize if this is a re-post/similar-post as I did my best to search for a specific solution to my issue within the already created posts on here, and on google, but could not.

    I am using ffmpeg on localhost on win64 system to create/test video conversion scripts prior to uploading them to the server.

    I am able to successfully convert to/from mp4/flv/wmv/mov without issue, however, whenever I try to convert to .ogg from any other format, I run into issues.

    First I tried this :

    exec($ffmpegPath." -i ".$srcFile." ".$destFile);

    but ended up with a corrupt file without video/sound. Then I did some reading that and found some posts that said that you must explicitly enable libvorbis/libtheora when converting to .ogg, so I tried this :

    $aCodec = ' -acodec libvorbis';
    $vCodec = ' -vcodec libtheora';
    exec($ffmpegPath." -i ".$srcFile.$aCodec.$vCodec." ".$destFile);

    This time I got a valid .ogg file, with sound, however, the video output is VERY choppy. In hopes to try and find the issue, I started making edits to the exec line and ended up with this :

    $ffmpegObj = new ffmpeg_movie($srcFile);
    $srcVB = intval($ffmpegObj->getVideoBitRate());
    $vCodec = ' -vcodec libtheora';
    exec($ffmpegPath." -i ".$srcFile.$vCodec." -vb ".$srcVB." ".$destFile);

    which outputs the .ogg video in good quality but without sound.

    Any ideas as to what else may be this issue prior to needing to install further software (ffmpeg2theora), etc.?

    Also, if it helps, I echoed out the output from ffmpeg and when approach #2 above is used and many errors are displayed.

    100 buffers queued in output stream 0:1, something may be wrong.
    [ogg @ 00000000024bf780] st:0 PTS: 6743 DTS: 6743 < 7745 invalid, clipping
    [ogg @ 00000000024bf780] st:0 PTS: 6871 DTS: 6871 < 7746 invalid, clipping
    [ogg @ 00000000024bf780] st:0 PTS: 6999 DTS: 6999 < 7747 invalid, clipping
    [ogg @ 00000000024bf780] st:0 PTS: 7127 DTS: 7127 < 7748 invalid, clipping
    [ogg @ 00000000024bf780] st:0 PTS: 7255 DTS: 7255 < 7749 invalid, clipping
    [ogg @ 00000000024bf780] st:0 PTS: 7383 DTS: 7383 < 7750 invalid, clipping

    It seems that libvorbis and libtheora are not playing nice together ?

    Finally, I have changed ffmpeg.exe builds several times and still receive the same issue.

    Thanks in advance.

    EDIT : As a possible workaround, is there a way I can simply encode the video / audio separately and then slap them back together ? Would this cause possible audio/video sync issues ?

  • tools : Add adler32 checksum tool

    8 mai 2013, par Michael Niedermayer
    tools : Add adler32 checksum tool
    

    This is about 6 times faster than md5sum on linux

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/Makefile
    • [DH] tools/ffadler.c
  • capture image from IP camera through ffmpeg in command line or opencv getting a gray image

    4 décembre 2015, par rockycai

    Now I have a IP camera. I tried to get a image through ffmpeg (like this : ffmpeg -rtsp_transport tcp -i "my rtsp stream address" -y -f image2 test.jpg ).That’s OK ! Or I tried to do this through opencv,no problem too.But when I open the stream in vlc,At the same time,I tried to capture the image ,oh,I just got a gray image.
    why ? if I open the stream in vlc two times,that’s also OK ! If capturing the image and view the rtsp stream together,just got a gray image.Is the reason of IP camera ?normal imagegray image