Recherche avancée

Médias (91)

Autres articles (53)

  • 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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (7093)

  • swr : disable 1 stage convert when dither is enabled.

    1er mai 2012, par Michael Niedermayer

    swr : disable 1 stage convert when dither is enabled.

  • How to Convert MP4 Video File to F4V Using FFMPEG

    28 septembre 2012, par Henry Wrinkler

    I am trying to convert an MP4 video file into an f4v video file so that I can stream the video with Flash Media Server. Ideally, I would like to convert the mp4 into various bitrates, so that I can accomplish multi-bitrate streaming of the video. I am pretty sure that ffmpeg is capable of this, but I keep getting different error messages. Here is the latest that I tried :

    ffmpeg.exe -i source.mp4 -ar 150 destination.f4v

    I am getting the following error message with this : "Unable to find a suitable output format for 'destination.mp4' destination.mp4 : Invalid argument

    Thanks in advance !

  • FFmpeg settings to convert MTS into MPG for YouTube

    17 juin 2013, par JJD

    I would like to discuss the optimal parameters for FFmpeg to convert an MTS video file with the following profile for the upload onto YouTube. YouTube published their suggested resolutions and bitrates settings.

    // Input video profile
    Stream #0:0[0x1011]: Video: h264 (High) (HDMV / 0x564D4448), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 50 fps, 50 tbr, 90k tbn, 50 tbc
    Stream #0:1[0x1100]: Audio: ac3 (AC-3 / 0x332D4341), 48000 Hz, stereo, s16, 256 kb/s

    Since YouTube has length restrictions to the videos I also want to cut the original file into pieces.

    Here is my current configuration to convert a video. I am running Ubuntu 10.10. with FFmpeg version git-2011-12-31-81980bf.

    ffmpeg -ss 00:15:00 -i input.mts -t 00:30:00 -vcodec libx264 -deinterlace -s hd720 -ab 128k -threads 0 output.mp4

    I also want to reencode the video since I do not want to upload the large files of the original recording.