0
votes
0answers
6 views

WordPress 3.5+ - URL to edit image with media uploader thickbox

I use WordPress 3.5. I try to figure out how I can edit an image by clicking on it to get to the media uploader thickbox. What I found out so far The URL below work fine but I need to EDIT a special ...
0
votes
0answers
95 views

(Solved) Media uploader not saving when options change in Wordpress

I'm having a problem with my custom options page in Wordpress. The issue concerns the media uploader I have put a while ago. It works properly, but when re-saving options the url in the field, where ...
1
vote
1answer
733 views

Understanding Retina device CSS Media queries

I am working on a WordPress theme and am trying to incorporate retina enabled CSS queries into my CSS file. I would just like to clarify that I have the media queries set up correctly before I change ...
0
votes
1answer
92 views

change media refresh image size with jquery

function getItemWidth(){ var slide_wi = 976; var window_width = $(window).width(); if(window_width < 350){ slide_wi = 300; }else if(window_width <= 568){ ...
0
votes
0answers
93 views

WordPress Responsive Images & Respecting individual image sizes

I have this css in my WordPress theme to get responsive images: img { width: auto; max-width: 100%; height: auto; } But what if I place an image in a page or post and define a width and height, say ...
0
votes
0answers
37 views

amazon kindle fire media by content provider

I have application for android which can show media files from device MediaStore. Now I am trying to start it on Kindle fire and see crash with log that says I have not key "_id" after my loader ...
2
votes
1answer
391 views

how to add to the media library in xcode?

I'm a beginning programmer, so sorry if this sounds stupid. I understand that I have to put the image into Xcode through the media library... but where is the media library? I threw the image file ...
4
votes
1answer
161 views

Wordpress media_sideload_image - Download http://placekitten.com/100/100?

media_sideload_image WordPress have a function called media_sideload_image. It is used to upload an image and attach it to the media library. I accepts image urls like this: ...
2
votes
1answer
277 views

Bootstrap's media-grid class with Django?

I am pretty new to Django and I encountered a problem with the media-grid class of Twitter Bootstrap: instead of displaying a gallery, I am only able to make normal lists of images. I am using ...
0
votes
0answers
136 views

Wordpress Multisite Media Upload Not showing Image

I am using Wordpress Multisite subfolder/subdirectory version, everything is working, but when i add an image through media/upload, it is not showing up, its empty image. thats the link url, in ...
0
votes
1answer
141 views

Adding image on dynamically created Button in Silverlight

I am creating the button in silver light dynamically as HistoryButtton = new Button(); HistoryButtton.Content = "History"; HistoryButtton.Height = ...
1
vote
1answer
196 views

Make large size be selected by default in media upload window - Wordpress

In the Add Media window on post edit page, when uploading an image, there are 4 sizes available: Thumbnail, Medium, Large and Full Size. The Full Size option is selected by default. How can I make ...
0
votes
0answers
109 views

Uploading wxr file into wordpress + media library

I'm trying to import an xml file into wordpress- which contains all the content from a different website(not a wordpress site). I've been able to import everything, apart from the images- which I have ...
0
votes
1answer
309 views

How to get the url of a existing media in wordpress

i added some image to my wordpress library. now i need to retrieve one of them by name and get it's URL. note that i didn't attach them in any post. thanks for your attention.
1
vote
0answers
82 views

How to convert png image to jpg via upload media parameter in joomla 2.5

How to convert png image to jpg via upload media parameter in joomla 2.5. Please suggest if any module available.
0
votes
2answers
337 views

Uploading media in Wordpress

I am trying to upload images or any other media type to my wordpress application, but I get this error: Unable to create directory /home/admin/video/wp-content/uploads/2012/07. Is its parent ...
0
votes
0answers
423 views

CakePHP - Image gallery via MediaView

Greetings, one and all. My problem is with CakePHP and its MediaViews. I am trying to build an image gallery that displays user-spesific images from a folder outside webroot via MediaView. Ideally, ...
9
votes
7answers
6k views

Android - .nomedia not working for images

I have images, which are read from sdcard only by particular application so I want to hide it from image gallery. I have put .nomedia file in it, but this file is ignored, images are still showing in ...
1
vote
3answers
3k views

ffmpeg images-to-video script anyone?

I'm wanting to take a bunch of images and make a video slideshow out of them. There'll be an app for that, right? Yup, quite a few it seems. The problem is I want the slides synced to a piece of ...
1
vote
1answer
466 views

Sitecore: Serving lower resolution images to low bandwidth clients

I'm looking for an easy way to serve lower resolution images to mobile browsers. I'd like to generate these lower quality images on the fly and store them in media cache for use by similar browsers. ...
1
vote
2answers
992 views

How to get an image picker only from DCIM directory

I have to include an image picker in my android app. I set it like this : Intent intentGallery = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); ...
0
votes
1answer
424 views

How to change Magento default media structure?

I am developing Magento and I need to change default media structure on it. I have two category and subcategory named Cat1 and subCat1 . I want to save images physically to this path : ...
1
vote
0answers
427 views

android - ContentProvider: problem setting filename for files delivered by using ContentProvider.openFile

I'm facing the following problem while implementing a ContentProvider to deliver images stored in the private data area of an application in an android-project: The files returned by the ...
0
votes
1answer
569 views

MediaStore query works on most phones, but not EVO

I have an app that queries the MediaStore and shows all the images in the gallery. Simple. It works well on my Nexus S, Droid X, and all flavors of the emulator. It gives wrong results on my Friends ...
1
vote
1answer
42 views

Looking for a tool to create a media server for my company

Looking for a tool, hopefully open-source or a free edition that will allow for: Image Upload Video Upload Accounts with permissions so certain accounts can view specific folders of images or videos ...
0
votes
1answer
572 views

Obtaining a list of all image formats that an Android device supports

The Android Supported Media Formats page mentions: Note that any given mobile device may provide support for additional formats or file types not listed in the table. Is there a way to obtain a ...
9
votes
3answers
1k views

Detecting Similar images [duplicate]

Possible Duplicate: Image comparison algorithm So basically i need to write a program that checks whether 2 images are the same or not. Consider the following 2 images: ...
23
votes
2answers
20k views

How to query Android MediaStore Content Provider, avoiding orphaned images?

I'm trying to provide an in-app Activity which displays thumbnails of photos in the device's media store, and allow the user to select one. After the user makes a selection, the application reads the ...
0
votes
1answer
537 views

in android when video duration or date_modified attribute available through content provider

I'm having some trouble accessing attributes like DURATION and DATE_MODIFIED of video and image. My app access these attributes for both type of data but if I take a picture or shoot a video the ...
2
votes
2answers
2k views

Upload photos with php without reload

What I want I want to upload a file without without reloading the page, also I want to add the source link for the image to the textarea. So when I push the upload_photo, the image uploads and a ...
3
votes
2answers
2k views

Wordpress 3 Multisite with same Medialibrary

i created a Worpress 3 Multisite with 5 Sub-Blogs. Is it possible to share the same Media-Library in this Blogs? i changed upload_path in wp_1_options and wp_2_options for example and also in my ...
1
vote
1answer
2k views

Dynamic window size in ExtJs

I am using ExtJS for my project. I need to create a window in ExtJS of variable size to display an image my user has uploaded. But, if a smaller image say 150x150 is uploaded, I want the window to ...
1
vote
1answer
3k views

accessing phone images through content provider in android

I need a sample code or tutorial for accessing phone images/media through content provider ? I know the following, what next ? ContentResolver cr = mContext.getContentResolver(); Cursor cursor = ...
2
votes
5answers
280 views

How to handle media kept on a separate server (PHP)

So, I have three server, and the idea was to keep all media (images, files, movies) on a media server. I never got around to do it but I think I probably should. So these are the three servers: WWW ...
6
votes
7answers
367 views

Protecting image media in an web application

we are maintaing a database of image media in a large scale webapplication. The high resolution jpgs are big (> 15MB) and must not be made available for download in any way. Now we need to provide ...
6
votes
5answers
3k views

Where do you get good icons/images for applications & web apps?

I'm interested in finding good icons/images that can be used in both 'free' and proprietary programs. Please include a description of any license restrictions associated with the source of the icons ...