Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (27)

  • 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

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6182)

  • How to make videos .mp4 for a Phillips Media Player GO GEAR VIBE models ? [closed]

    14 avril 2023, par Ivan Rojas Calvo

    Here is the answer by steps (4/13/23) :

    


      

    1. First download and install the software WinFF here

      


    2. 


    3. Check the specificacions of your media player, mine is the GoGearVibe SA2VBE08K/55 model

      


    4. 


    5. Look for the video specification : mine says that the video format needs to match this specifications :

      


      Format = MJPEG (.mp4)

      


      Resolution = 128 x 128 píxeles

      


      Frames per second = 30 cps (fps)

      


      Bitrate = 512 kpbs

      


    6. 


    7. Read this tutorial to create a preset in WinFF here

      


    8. 


    9. Create a preset that turns ANY mp4 video you have into an MJPEG video with the properties shown above with this info :

      


      name : GoGearVibe55

      


      preset label : MJPEG GOGEAR

      


      Preset command line :

      


      -f mov -vf scale=128:128 -c:v mjpeg -b:v 512k -r 25 -c:a adpcm_ima_wav -b:a 192k -ar 22050 -ac 2


      


      output file : mp4

      


    10. 


    11. Understand how to adapt the code to your necessities with this image
enter image description here

      


    12. 


    


    Do not change what is mark in red, that's the resolution of the screen and the encoder of the video. You can change the value mark in blue, which means the bitrate, more bitrate the video will have more definition without changing the resolution. Tha value in green refers to the fps and the ones marked in yellow is the audio settings, don't worry about that, are good audio settings.

    


    Done. I did'n know how to create an article so I let you try this solution, good luck !

    


  • Distribute app with Developer ID with Hardened Runtime and 3rd party CLI-executable - Code sign Error

    22 août 2023, par soundflix

    While I tried to distribute my app with Developer ID from Xcode Organizer, I got this error :

    


    


    Hardened Runtime is not enabled.

    


    "ffmpeg" must be rebuilt with support for the Hardened Runtime. Enable the Hardened Runtime capability in the project editor, test your app, rebuild your archive, and upload again.

    


    


    enter image description here

    


    Hardened Runtime is enabled in Project > Signing & Capabilites.

    


    My app has the FFmpeg CLI tool in its Resources folder.

    


    Since FFmpeg is a compiled binary, I have no option to enable Hardened Runtime.

    


    How can I solve this and have my app properly code signed ?

    


  • How to add a new filter to FFMPEG in c with third-party dependences

    8 avril 2024, par ucag

    I'm a newbie to FFMPEG development and want to add a customized filter to FFMPEG.

    


    I've followed the filter tutorial in the docs. However, it's just a very simplified example and not mentioned how to add other dependences to Makefile. Especially in libavfilter/Makefile, there is only a OBJS-(CONFIG_NAME_FILTER) += name.o for me to add my filter.

    


    I want to add a new video filter with third party dependencies, like third-party c code with some other dependences, third-party compiled .so on Linux, .dylib on Mac, .dll and .lib on Windows, etc.

    


    How can I add these third-party dependences to build process of FFMPEG ?