Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (62)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (7063)

  • using ffmpeg to convert a mkv or mp4 suitable for a DVD player that supports MPEG-4 / DivX [closed]

    17 juillet 2022, par Neil Telford

    I got a DVD Player with USB support. It is a recent player (DVD-225), but the documentation is sparse, but it does claim MPEG-4 and DivX support.

    


    Now, I have got certain AVI files to play via USB, but everything else fails. I looked at the metadata of an AVI file that worked via ffprobe, and got the following :

    


    Metadata:
    encoder         : Lavf58.17.101   Duration: 00:58:30.94, start: 0.000000, bitrate: 1336 kb/s
    Stream #0:0: Video: mpeg4 (Simple Profile) (xvid / 0x64697678), yuv420p, 640x290 [SAR 1:1 DAR 64:29], 1196 kb/s, 23.98 fps, 23.98 tbr,
23.98 tbn, 23.98 tbc
    Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 128 kb/s


    


    Now, I figured that if I can replicate the above, I can convert most things to play via USB, even if it isn't the most up to date codecs.

    


    I've tried various combinations, but they all fail. The closest I got was by using the following shell script :

    


    for i in *.avi; do ffmpeg -i "$i" -c:v mpeg4 -vtag divx -qscale:v 3 -c:a libmp3lame -qscale:a 4 "_${i%.*}.avi"; done


    


    This has a strange result that it will play the audio track, but not the video track. The metadata I got from this was :

    


    Metadata:
    encoder         : Lavf58.45.100
  Duration: 00:58:07.99, start: 0.000000, bitrate: 3026 kb/s
    Stream #0:0: Video: mpeg4 (Simple Profile) (divx / 0x78766964), yuv420p, 1280x720 [SAR 3:4 DAR 4:3], 2901 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 24k tbc
    Metadata:
      title           : ******************
    Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 109 kb/s
    Metadata:
      title           : ******************


    


    Does anyone know where I am going wrong with this ? I've converted AVI, MKV and MP4 files, and while they work on my computer, the DVD player seems to be very picky.

    


    Any suggestions ?

    


    Thanks
Neil

    


  • ffmpeg on ubuntu convert 3gp to iphone 5 format [closed]

    21 mars 2013, par Jistanidiot

    I'm desperately trying to convert a 3GP video into something the iphone 5 will import and play. Verizon says they cannot help me that it is not possible to convert a Droid video to iphone.

    After much trouble I came to the conclusion to try the conversion on my Ubuntu box using ffmpeg. Again after a long struggle, I removed the package and followed the directions at https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide

    Now with the new complied ffmpeg, I try the following command :

    ffmpeg -i foo.3gp -s 320x240 -r 30000/1001 -b:v 200k -bt 240k -vcodec libx264 -coder 0 -bf 0 -flags2 -wpred-dct8x8 -level 13 -maxrate 768k -bufsize 3M-acodec libfaac -ac 2 -ar 48000 -ab 192k output.mp4

    However I keep getting the error :

    [NULL @ 0xa9874a0] Unable to find a suitable output format for 'libfaac' libfaac: Invalid argument

    I found a random blog post saying you needed to add

    `-target type’

    and then specify target file type (“vcd”, “svcd”, “dvd”, “dv”, “dv50”, “pal-vcd”, “ntsc-svcd”, … ). However after trying all 8 of them listed I still got the same errors.

    I'm at a complete loss. How can I convert the 3gp video into the iphone 5 format ?

    Thanks in advance.

  • IOS streaming video from iPhone to server - ffmpeg

    30 mars 2013, par DaveInSydney

    I have successfully written code that captures 6 second long mp4 video segments on an iPhone 4S and uploads them to a server without losing any frames between segments. This works well however I am now trying to change the mp4 container to mpeg2 ts and then upload the ts file. I am trying to figure out how ffmpeg works but I am lost. Has anyone got a bit of sample code that takes an mp4 file as input and spits out an mpeg2 ts file.

    Any help would be most appreciated.